:root {
  --navy: #07152f;
  --navy-soft: #102346;
  --blue: #3478ff;
  --sky: #8fc6ff;
  --ice: #eef5fb;
  --paper: #f7f9fb;
  --ink: #0b1830;
  --muted: #647088;
  --line: #dbe2ea;
  --font-geist-sans: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.ui-icon { display: block; width: 20px; height: 20px; flex: 0 0 auto; }

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity .82s cubic-bezier(.2,.7,.2,1), transform .82s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.motion-ready [data-reveal="left"] { transform: translate3d(-42px, 0, 0); }
.motion-ready [data-reveal="right"] { transform: translate3d(42px, 0, 0); }
.motion-ready [data-reveal="down"] { transform: translate3d(0, -24px, 0); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  height: 94px;
  padding: 0 clamp(24px, 4vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: rgba(7,21,47,0);
  transition: height .35s ease, background-color .35s ease, border-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled {
  height: 76px;
  background: rgba(7,21,47,.92);
  border-bottom-color: rgba(255,255,255,.1);
  box-shadow: 0 12px 38px rgba(3,11,28,.18);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}
.motion-ready .site-header[data-reveal] {
  transition-property: opacity, transform, height, background-color, border-color, box-shadow, backdrop-filter;
  transition-duration: .82s, .82s, .35s, .35s, .35s, .35s, .35s;
  transition-timing-function: cubic-bezier(.2,.7,.2,1), cubic-bezier(.2,.7,.2,1), ease, ease, ease, ease, ease;
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms, 0ms, 0ms, 0ms;
}
.admin-bar .site-header { top: 32px; }
.brand img { width: 148px; height: auto; }
.site-header nav { display: flex; gap: 38px; font-size: 14px; color: rgba(255,255,255,.78); }
.site-header nav a, .header-cta, .text-link, .contact-link { transition: opacity .2s ease; }
.site-header nav a:hover, .header-cta:hover, .text-link:hover, .contact-link:hover { opacity: .65; }
.header-cta { justify-self: end; display: flex; align-items: center; gap: 16px; font-size: 14px; }
.header-cta .ui-icon { width: 18px; height: 18px; color: var(--sky); }

.hero {
  min-height: 820px;
  height: 100svh;
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--navy);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.07); will-change: transform; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,16,38,.96) 0%, rgba(5,18,42,.82) 42%, rgba(5,18,42,.16) 80%),
    linear-gradient(0deg, rgba(5,15,34,.8) 0%, transparent 40%);
}
.hero-content { position: relative; z-index: 2; padding: clamp(180px, 22vh, 245px) clamp(24px, 8vw, 144px) 160px; width: min(960px, 76vw); }
.eyebrow { margin: 0 0 28px; display: flex; align-items: center; gap: 12px; color: var(--blue); text-transform: uppercase; letter-spacing: .16em; font: 600 12px/1 var(--font-geist-mono), monospace; }
.eyebrow > span { width: 30px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--sky); }
.hero h1, h2 { margin: 0; letter-spacing: -.045em; font-weight: 600; line-height: 1; }
.hero h1 { font-size: clamp(56px, 6.4vw, 100px); }
.hero h1 em, h2 em { font-family: inherit; font-style: normal; font-weight: 600; }
.hero h1 em { color: var(--sky); }
.hero-copy { max-width: 680px; margin: 38px 0 0; color: rgba(255,255,255,.73); font-size: clamp(17px, 1.35vw, 21px); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 46px; }
.button { min-height: 58px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: space-between; gap: 32px; font-size: 14px; font-weight: 600; transition: transform .2s ease, background .2s ease; }
.button .ui-icon { width: 19px; height: 19px; }
.button:hover { transform: translateY(-2px); }
.button-light { background: white; color: var(--navy); }
.text-link { display: inline-flex; gap: 20px; align-items: center; font-size: 14px; }
.text-link .ui-icon { width: 18px; height: 18px; color: var(--sky); }
.hero-proof { position: absolute; z-index: 2; right: clamp(24px, 4vw, 72px); bottom: 48px; display: flex; border-top: 1px solid rgba(255,255,255,.2); }
.hero-proof div { min-width: 140px; padding: 17px 22px 0 0; display: grid; gap: 6px; }
.hero-proof span { color: var(--sky); font: 500 10px var(--font-geist-mono), monospace; }
.hero-proof strong { font-size: 13px; font-weight: 500; }
.scroll-cue { position: absolute; z-index: 2; left: clamp(24px, 4vw, 72px); bottom: 42px; display: flex; align-items: center; gap: 14px; font: 500 10px var(--font-geist-mono), monospace; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.scroll-cue .ui-icon { width: 16px; height: 16px; color: var(--sky); }
.signal-field { position: absolute; inset: 0; pointer-events: none; }
.signal { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #b6d9ff; box-shadow: 0 0 0 7px rgba(117,184,255,.08), 0 0 32px 6px rgba(117,184,255,.8); animation: pulse 3.2s ease-in-out infinite; }
.signal-one { top: 34%; right: 31%; }
.signal-two { top: 52%; right: 48%; animation-delay: 1.1s; }
.signal-three { top: 28%; right: 18%; animation-delay: 2.1s; }
@keyframes pulse { 50% { transform: scale(1.45); opacity: .55; } }

.section { padding: 130px clamp(24px, 8vw, 144px); }
.section-label { padding-top: 5px; font: 500 11px var(--font-geist-mono), monospace; text-transform: uppercase; letter-spacing: .13em; color: var(--muted); }
.intro { min-height: 650px; display: grid; grid-template-columns: 1fr 3fr; border-bottom: 1px solid var(--line); }
.intro-copy h2 { max-width: 1020px; font-size: clamp(42px, 5.1vw, 78px); }
.intro-copy h2 em { color: var(--blue); }
.lead { max-width: 710px; margin: 38px 0 0; font-size: clamp(18px, 1.6vw, 23px); line-height: 1.6; color: var(--muted); }

.services { background: white; }
.section-heading { display: grid; grid-template-columns: 2fr 1fr; align-items: end; gap: 80px; margin-bottom: 72px; }
.section-heading h2, .process h2, .about h2, .contact h2 { font-size: clamp(46px, 5.8vw, 82px); }
.section-heading > p { margin: 0 0 6px; color: var(--muted); line-height: 1.7; font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 480px; padding: 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; transition: background .28s ease, color .28s ease, transform .28s ease; }
.service-card:hover { background: var(--navy); color: white; transform: translateY(-7px); }
.service-top { display: flex; justify-content: space-between; align-items: flex-start; }
.service-number { color: var(--blue); font: 500 12px var(--font-geist-mono), monospace; }
.card-icon { width: 56px; height: 56px; display: grid; place-items: center; border: 1px solid #cbd9e8; color: var(--blue); background: #f5f9ff; transition: background .28s ease, color .28s ease, border-color .28s ease, transform .28s ease; }
.card-icon .ui-icon { width: 27px; height: 27px; }
.service-card h3 { margin: 95px 0 22px; font-size: clamp(27px, 2.2vw, 36px); letter-spacing: -.035em; font-weight: 540; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 16px; }
.service-card:hover p { color: rgba(255,255,255,.7); }
.tag-row { display: flex; gap: 7px; flex-wrap: wrap; margin-top: auto; padding-top: 35px; }
.tag-row span { padding: 7px 10px; border: 1px solid var(--line); color: var(--muted); font: 500 10px var(--font-geist-mono), monospace; text-transform: uppercase; }
.service-card:hover .tag-row span { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.7); }
.service-card:hover .card-icon { border-color: var(--blue); background: var(--blue); color: white; transform: translateY(-3px); }

.process { background: var(--navy); color: white; position: relative; overflow: hidden; }
.process::after { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(120,180,255,.15); border-radius: 50%; left: -180px; bottom: -310px; transform: translate3d(0, var(--orb-shift, 0), 0); box-shadow: 0 0 0 80px rgba(120,180,255,.035), 0 0 0 160px rgba(120,180,255,.025); will-change: transform; }
.process-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; }
.process-intro { align-self: center; position: relative; z-index: 2; }
.process-intro h2 em { color: var(--sky); }
.process-intro > p:not(.eyebrow) { max-width: 480px; margin: 34px 0; color: rgba(255,255,255,.62); font-size: 18px; line-height: 1.65; }
.process-steps { border-top: 1px solid rgba(255,255,255,.18); }
.process-step { display: grid; grid-template-columns: 90px 1fr; padding: 35px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.process-step > span { color: var(--sky); font: 500 11px var(--font-geist-mono), monospace; }
.process-step h3 { margin: 0 0 8px; font-size: 25px; font-weight: 500; }
.process-step p { margin: 0; color: rgba(255,255,255,.58); line-height: 1.55; }

.about { display: grid; grid-template-columns: minmax(320px, .95fr) 1.05fr; gap: 8vw; background: var(--ice); align-items: center; }
.about-image-wrap { position: relative; min-height: 650px; }
.about-image-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.1); will-change: transform; }
.about-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,21,47,.42), transparent 50%); }
.location-card { position: absolute; z-index: 2; left: 0; bottom: 0; padding: 24px 28px; background: white; display: grid; gap: 5px; min-width: 220px; }
.location-card span { color: var(--blue); font: 500 10px var(--font-geist-mono), monospace; letter-spacing: .1em; }
.location-card strong { font-size: 15px; }
.about-copy h2 em { color: var(--blue); }
.values { margin-top: 54px; border-top: 1px solid #cbd5df; }
.values > div { display: grid; grid-template-columns: 45px 125px 1fr; gap: 12px; padding: 22px 0; border-bottom: 1px solid #cbd5df; align-items: start; }
.values span { color: var(--blue); font: 500 10px var(--font-geist-mono), monospace; padding-top: 6px; }
.values h3 { margin: 0; font-size: 17px; font-weight: 600; }
.values p { margin: 0; color: var(--muted); line-height: 1.5; font-size: 14px; }

.contact { color: white; background: linear-gradient(135deg, #0f2b58 0%, #07152f 70%); position: relative; overflow: hidden; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(55px, 8vw, 130px); align-items: start; }
.contact::before, .contact::after { content: ""; position: absolute; border: 1px solid rgba(143,198,255,.16); border-radius: 50%; width: 600px; height: 600px; }
.contact::before { top: -360px; left: -180px; }
.contact::after { bottom: -390px; right: -160px; box-shadow: 0 0 0 75px rgba(143,198,255,.025); }
.contact h2 { position: relative; z-index: 1; }
.contact h2 em { color: var(--sky); }
.contact-intro { position: sticky; top: 70px; z-index: 2; }
.contact-intro > p:not(.eyebrow) { max-width: 590px; margin: 34px 0 48px; color: rgba(255,255,255,.64); font-size: 18px; line-height: 1.65; }
.contact-direct { display: grid; gap: 9px; }
.contact-direct > span { color: var(--sky); font: 500 10px var(--font-geist-mono), monospace; text-transform: uppercase; letter-spacing: .12em; }
.contact-direct a { display: flex; align-items: center; gap: 20px; width: fit-content; font-size: 18px; }
.contact-direct .ui-icon { width: 19px; height: 19px; color: var(--sky); }

.contact-form { position: relative; z-index: 2; padding: clamp(28px, 4vw, 52px); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(18px); }
.contact-form label { display: grid; gap: 10px; margin-bottom: 26px; }
.contact-form label > span:first-child { color: rgba(255,255,255,.68); font: 500 10px var(--font-geist-mono), monospace; text-transform: uppercase; letter-spacing: .12em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.28); border-radius: 0; outline: 0; padding: 13px 0 14px; background: transparent; color: white; font: 400 16px var(--font-geist-sans); transition: border-color .2s ease; }
.contact-form textarea { resize: vertical; min-height: 145px; line-height: 1.55; }
.contact-form select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--sky) 50%), linear-gradient(135deg, var(--sky) 50%, transparent 50%); background-position: calc(100% - 6px) 22px, 100% 22px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.contact-form select option { color: var(--ink); background: white; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.34); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--sky); }
.consent { display: grid !important; grid-template-columns: 20px 1fr; gap: 12px !important; align-items: start; cursor: pointer; }
.consent input { appearance: none; width: 18px; height: 18px; margin: 1px 0 0; padding: 0; border: 1px solid rgba(255,255,255,.38); }
.consent input:checked { background: var(--sky); border-color: var(--sky); box-shadow: inset 0 0 0 4px var(--navy); }
.consent span { color: rgba(255,255,255,.54) !important; text-transform: none !important; letter-spacing: 0 !important; font: 400 12px/1.55 var(--font-geist-sans) !important; }
.honeypot { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-footer { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; }
.form-submit { min-height: 58px; min-width: 195px; padding: 0 20px; border: 0; background: white; color: var(--navy); display: flex; align-items: center; justify-content: space-between; gap: 28px; font: 600 14px var(--font-geist-sans); cursor: pointer; transition: transform .2s ease, opacity .2s ease; }
.form-submit .ui-icon { width: 19px; height: 19px; color: var(--blue); }
.form-submit:hover:not(:disabled) { transform: translateY(-2px); }
.form-submit:disabled { opacity: .62; cursor: wait; }
.form-status { margin: 0; min-height: 36px; color: rgba(255,255,255,.64); font-size: 13px; line-height: 1.45; }
.form-status.success { color: #a9edc4; }
.form-status.error { color: #ffb6b6; }

footer { background: #030b1c; color: white; padding: 80px clamp(24px, 6vw, 100px) 28px; }
.footer-main { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 70px; padding-bottom: 72px; }
.footer-brand img { width: 190px; }
.footer-brand p, .footer-main p { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.8; }
.footer-label { display: block; margin-bottom: 16px; color: var(--sky); font: 500 10px var(--font-geist-mono), monospace; text-transform: uppercase; letter-spacing: .12em; }
.footer-legal { display: flex; gap: 32px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.58); font-size: 13px; }
.footer-legal a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 26px; color: rgba(255,255,255,.35); font: 500 10px var(--font-geist-mono), monospace; text-transform: uppercase; letter-spacing: .1em; }

.cookie-notice { position: fixed; z-index: 100; right: 24px; bottom: 24px; width: min(560px, calc(100vw - 48px)); padding: 20px; display: grid; grid-template-columns: 1fr auto auto; gap: 22px; align-items: center; background: white; color: var(--ink); box-shadow: 0 20px 70px rgba(3,11,28,.24); border-left: 4px solid var(--blue); }
.cookie-notice strong { font-size: 14px; }
.cookie-notice p { margin: 5px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.cookie-notice a { color: var(--blue); font-size: 12px; white-space: nowrap; }
.cookie-notice button { border: 0; padding: 12px 16px; background: var(--navy); color: white; font: 600 12px var(--font-geist-sans); cursor: pointer; }

.legal-page { background: var(--paper); min-height: 100vh; }
.legal-header { height: 94px; padding: 0 clamp(24px, 4vw, 72px); display: flex; align-items: center; justify-content: space-between; background: #030b1c; color: white; border-bottom: 1px solid rgba(255,255,255,.14); }
.legal-header .brand img { width: 148px; }
.back-link { color: rgba(255,255,255,.7); font-size: 13px; }
.legal-hero { padding: 120px clamp(24px, 8vw, 144px) 110px; color: white; background: linear-gradient(135deg, #102f62 0%, var(--navy) 72%); }
.legal-hero h1 { margin: 0; font-size: clamp(58px, 7vw, 104px); font-weight: 600; line-height: 1; letter-spacing: -.045em; }
.legal-hero h1 em { color: var(--sky); font-family: inherit; font-style: normal; font-weight: 600; }
.legal-hero > p:last-child { max-width: 620px; margin: 34px 0 0; color: rgba(255,255,255,.65); font-size: 18px; line-height: 1.6; }
.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 820px); gap: clamp(65px, 9vw, 145px); align-items: start; }
.legal-nav { position: sticky; top: 32px; display: grid; border-top: 1px solid var(--line); }
.legal-nav > span { margin: 20px 0 26px; color: var(--blue); font: 500 10px var(--font-geist-mono), monospace; text-transform: uppercase; letter-spacing: .12em; }
.legal-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.legal-nav a:hover { color: var(--blue); }
.legal-draft-note { margin: 0 0 75px; padding: 22px 24px; color: #55491f !important; background: #fff7d6; border-left: 3px solid #e3b818; font-size: 13px !important; }
.legal-document > section { scroll-margin-top: 30px; padding-bottom: 90px; margin-bottom: 90px; border-bottom: 1px solid var(--line); }
.legal-document > section:last-child { margin-bottom: 0; }
.legal-number { display: block; margin-bottom: 14px; color: var(--blue); font: 500 11px var(--font-geist-mono), monospace; }
.legal-document h2 { margin: 0 0 55px; font-size: clamp(42px, 5vw, 66px); }
.legal-document h3 { margin: 42px 0 12px; font-size: 19px; font-weight: 600; letter-spacing: -.02em; }
.legal-document p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.legal-document a { color: var(--blue); }
.legal-footer { padding: 28px clamp(24px, 6vw, 100px); display: flex; justify-content: space-between; background: #030b1c; color: rgba(255,255,255,.5); font: 500 10px var(--font-geist-mono), monospace; text-transform: uppercase; letter-spacing: .1em; }

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero-content { width: 88vw; }
  .hero-proof { display: none; }
  .intro { grid-template-columns: 1fr; gap: 60px; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .section-heading > p { max-width: 650px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 390px; }
  .service-card h3 { margin-top: 60px; }
  .process-inner { grid-template-columns: 1fr; gap: 90px; }
  .about { grid-template-columns: 1fr; }
  .about-image-wrap { min-height: 540px; }
  .contact { grid-template-columns: 1fr; }
  .contact-intro { position: relative; top: auto; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .site-header { height: 78px; }
  .site-header.is-scrolled { height: 68px; }
  .brand img { width: 125px; }
  .header-cta { font-size: 13px; gap: 8px; }
  .hero { min-height: 760px; }
  .hero-content { width: 100%; padding-top: 160px; }
  .hero h1 { font-size: clamp(51px, 15vw, 70px); }
  .hero-copy { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 24px; width: fit-content; }
  .scroll-cue { display: none; }
  .section { padding-top: 90px; padding-bottom: 90px; }
  .intro { min-height: auto; }
  .service-card { padding: 28px; }
  .process-step { grid-template-columns: 55px 1fr; }
  .about-image-wrap { min-height: 390px; }
  .values > div { grid-template-columns: 35px 1fr; }
  .values p { grid-column: 2; }
  .contact-form { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-footer { grid-template-columns: 1fr; }
  .form-submit { width: 100%; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-legal { flex-direction: column; gap: 0; }
  .footer-legal a { padding: 8px 0; }
  .cookie-notice { left: 14px; right: 14px; bottom: 14px; width: auto; grid-template-columns: 1fr auto; }
  .cookie-notice div { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; gap: 55px; }
  .legal-nav { position: relative; top: auto; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
