:root {
  --navy: #081923;
  --navy-2: #102b38;
  --ink: #102630;
  --teal: #0c7180;
  --teal-light: #85c4c5;
  --copper: #c67945;
  --paper: #f2f0e9;
  --paper-2: #e9ece7;
  --white: #fff;
  --line: rgba(16, 38, 48, .16);
  --muted: #5d6b70;
  --max: 1240px;
  --shadow: 0 30px 80px rgba(8, 25, 35, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .brand { font-family: "Manrope", sans-serif; }
h1 { font-size: clamp(3.5rem, 7vw, 7rem); line-height: .93; letter-spacing: -.064em; max-width: 940px; margin-bottom: 32px; }
h2 { font-size: clamp(2.3rem, 4.5vw, 4.5rem); line-height: 1.02; letter-spacing: -.05em; }
h3 { font-size: 1.08rem; line-height: 1.35; letter-spacing: -.015em; }
::selection { background: var(--teal-light); color: var(--navy); }

.skip-link { position: absolute; left: -9999px; top: 0; background: #fff; padding: 10px; z-index: 30; }
.skip-link:focus { left: 10px; }
.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max))/2));
  background: rgba(242, 240, 233, .88);
  border-bottom: 1px solid rgba(16, 38, 48, .1);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 700; letter-spacing: .18em; font-size: .78rem; }
.brand-mark { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 2; }
.site-header nav { display: flex; align-items: center; gap: 32px; }
.site-header nav a { text-decoration: none; font-size: .82rem; font-weight: 650; }
.site-header nav a:not(.nav-cta) { position: relative; }
.site-header nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px; background: var(--teal); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-header nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { border: 1px solid var(--ink); padding: 11px 17px; transition: .25s ease; }
.nav-cta:hover { background: var(--navy); color: #fff; }
.menu-button { display: none; }

.hero {
  max-width: none;
  min-height: calc(100vh - 78px);
  padding: 110px max(24px, calc((100vw - var(--max))/2)) 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(330px, .68fr);
  gap: 82px;
  align-items: end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 74%, rgba(12,113,128,.045) 74%),
    linear-gradient(rgba(16,38,48,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,38,48,.045) 1px, transparent 1px);
  background-size: auto, 88px 88px, 88px 88px;
}
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(12,113,128,.16); border-radius: 50%; right: -230px; top: -220px; box-shadow: 0 0 0 72px rgba(12,113,128,.035), 0 0 0 144px rgba(12,113,128,.02); }
.hero-copy { position: relative; z-index: 1; }
.eyebrow { text-transform: uppercase; letter-spacing: .2em; font-weight: 700; font-size: .67rem; color: var(--teal); margin-bottom: 23px; }
.hero-intro { font-size: clamp(1.14rem, 2vw, 1.42rem); max-width: 680px; color: #40555e; }
.hero-actions { display: flex; gap: 28px; align-items: center; margin-top: 42px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 14px 22px; border: 0; text-decoration: none; font: 700 .82rem "DM Sans"; cursor: pointer; letter-spacing: .02em; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: #fff; box-shadow: 0 12px 30px rgba(8,25,35,.16); }
.button-primary:hover { background: var(--teal); }
.text-link { font-weight: 700; font-size: .86rem; text-decoration: none; padding-bottom: 4px; border-bottom: 1px solid currentColor; }
.hero-panel { background: var(--navy); color: #fff; padding: 34px; box-shadow: var(--shadow); position: relative; z-index: 1; }
.hero-panel::before { content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 72px; background: var(--copper); }
.panel-label { text-transform: uppercase; letter-spacing: .17em; font-size: .64rem; font-weight: 700; color: var(--teal-light); }
.hero-panel ol { list-style: none; padding: 0; margin: 34px 0 0; }
.hero-panel li { display: flex; gap: 18px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.15); }
.hero-panel li > span { color: var(--copper); font: 700 .72rem "Manrope"; }
.hero-panel strong, .hero-panel small { display: block; }
.hero-panel strong { font-size: .92rem; }
.hero-panel small { color: #aabac0; margin-top: 5px; line-height: 1.5; }
.hero-status { display: flex; align-items: center; gap: 9px; margin: 5px 0 0; color: #aabac0; font-size: .69rem; letter-spacing: .05em; }
.hero-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal-light); box-shadow: 0 0 0 4px rgba(133,196,197,.12); }

.trust-strip { background: var(--navy); color: #dce6e8; display: grid; grid-template-columns: repeat(4, 1fr); padding: 0 max(24px, calc((100vw - var(--max))/2)); }
.trust-strip span { padding: 20px 26px; border-right: 1px solid rgba(255,255,255,.13); text-transform: uppercase; text-align: center; font-size: .62rem; letter-spacing: .16em; font-weight: 700; }
.trust-strip span:first-child { border-left: 1px solid rgba(255,255,255,.13); }

.section { max-width: var(--max); margin: auto; padding: 132px 24px; }
.section-heading { max-width: 890px; margin-bottom: 72px; }
.section-heading > p:last-child { font-size: 1.1rem; color: var(--muted); max-width: 710px; }
.section-heading.compact { max-width: 790px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-grid article { padding: 36px; min-height: 270px; background: var(--paper); position: relative; transition: background .25s ease, transform .25s ease; }
.service-grid article:hover { background: #fff; transform: translateY(-4px); z-index: 2; box-shadow: 0 18px 35px rgba(8,25,35,.08); }
.service-number { color: var(--copper); font-weight: 700; font-size: .68rem; letter-spacing: .13em; }
.service-grid h3 { margin: 48px 0 14px; }
.service-grid p { color: var(--muted); font-size: .92rem; }

.process-section { max-width: none; background: var(--paper-2); padding-left: max(24px, calc((100vw - var(--max))/2)); padding-right: max(24px, calc((100vw - var(--max))/2)); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: stage; }
.timeline article { border-top: 1px solid rgba(16,38,48,.35); padding: 28px 30px 0 0; position: relative; }
.timeline article::before { content: ""; position: absolute; width: 9px; height: 9px; top: -5px; left: 0; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px var(--paper-2); }
.timeline article > span { display: block; color: var(--copper); font-weight: 700; font-size: .7rem; margin-bottom: 58px; }
.timeline p { color: var(--muted); font-size: .9rem; }

.pilot-section { padding-top: 92px; padding-bottom: 92px; }
.pilot-card { background: var(--navy); color: #fff; padding: clamp(44px, 7vw, 82px); display: grid; grid-template-columns: 1.18fr .82fr; gap: 85px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.pilot-card::after { content: "N"; position: absolute; right: -20px; bottom: -140px; color: rgba(255,255,255,.025); font: 700 440px/1 "Manrope"; }
.pilot-card > div { position: relative; z-index: 1; }
.pilot-card h2 { max-width: 660px; }
.pilot-card > div > p:not(.eyebrow) { color: #b8c6cb; max-width: 650px; }
.button-light { background: #fff; color: var(--navy); margin-top: 22px; }
.button-light:hover { background: var(--teal-light); }
.pilot-output { border-left: 1px solid rgba(255,255,255,.18); padding-left: 50px; }
.pilot-output ul, .boundary-grid ul { padding: 0; list-style: none; }
.pilot-output li, .boundary-grid li { padding: 11px 0 11px 25px; position: relative; border-bottom: 1px solid rgba(255,255,255,.11); }
.pilot-output li::before, .boundary-grid li::before { content: "—"; position: absolute; left: 0; color: var(--copper); }

.boundary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.boundary-grid > div { background: rgba(255,255,255,.66); padding: 42px; border-top: 3px solid var(--teal); }
.boundary-grid > div:last-child { border-top-color: var(--copper); }
.boundary-grid li { border-color: var(--line); font-size: .92rem; }
.disclaimer { margin-top: 30px; color: var(--muted); font-size: .82rem; max-width: 950px; }

.founder-section { padding-top: 32px; }
.founder-card { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 58px 0; display: grid; grid-template-columns: 160px 1fr; gap: 48px; align-items: center; }
.monogram { margin: 0; width: 136px; height: 136px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: #fff; font: 700 2rem "Manrope"; letter-spacing: .05em; position: relative; }
.monogram::after { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(255,255,255,.23); border-radius: 50%; }
.founder-card h2 { margin-bottom: 4px; }
.founder-note { max-width: 670px; color: var(--muted); margin-top: 18px; }

.contact-section { background: #fff; padding: 118px max(24px, calc((100vw - var(--max))/2)); display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.contact-section > div > p { max-width: 550px; color: var(--muted); }
.contact-details { display: flex; flex-direction: column; margin-top: 36px; font-weight: 700; }
.contact-details a { color: var(--teal); }
.contact-section form { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; padding: 34px; background: #f5f5f1; border: 1px solid var(--line); }
.contact-section label { font-size: .72rem; font-weight: 700; letter-spacing: .03em; }
.contact-section label:nth-child(4), .contact-section button, .form-note { grid-column: 1/-1; }
input, textarea { display: block; width: 100%; margin-top: 8px; border: 0; border-bottom: 1px solid #aab4b2; border-radius: 0; background: transparent; padding: 12px 3px; font: inherit; color: var(--ink); }
textarea { resize: vertical; }
input:focus, textarea:focus { outline: 0; border-bottom: 2px solid var(--teal); }
.form-note { color: var(--muted); font-size: .72rem; margin: 0; }

footer { background: var(--navy); color: #fff; padding: 52px max(24px, calc((100vw - var(--max))/2)); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 20px; }
.footer-brand { justify-self: start; }
footer p { margin: 0; text-align: center; color: #aabac0; font-size: .78rem; }
footer > div { justify-self: end; display: flex; gap: 22px; font-size: .75rem; color: #aabac0; }
.privacy-page { max-width: 820px; margin: auto; padding: 100px 24px; }
.privacy-page h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); }
.privacy-page h2 { font-size: 1.45rem; margin-top: 42px; }
.privacy-page p, .privacy-page li { color: var(--muted); }

@media (max-width: 900px) {
  .site-header { min-height: 70px; }
  .menu-button { display: block; border: 1px solid var(--ink); background: transparent; padding: 8px 11px; }
  .site-header nav { display: none; position: absolute; left: 0; right: 0; top: 70px; background: var(--paper); padding: 25px; flex-direction: column; align-items: flex-start; border-bottom: 1px solid var(--line); }
  .site-header nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; padding-top: 76px; gap: 55px; min-height: auto; }
  .hero-panel { max-width: 600px; }
  .trust-strip { overflow-x: auto; grid-template-columns: repeat(4, minmax(220px, 1fr)); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; row-gap: 55px; }
  .pilot-card, .contact-section { grid-template-columns: 1fr; }
  .pilot-card { gap: 48px; }
  .pilot-output { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); padding: 38px 0 0; }
  .contact-section { gap: 58px; }
  footer { grid-template-columns: 1fr; justify-items: center; }
  .footer-brand, footer > div { justify-self: center; }
}

@media (max-width: 580px) {
  h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-panel { padding: 28px 24px; }
  .service-grid, .timeline, .boundary-grid, .contact-section form { grid-template-columns: 1fr; }
  .service-grid article { min-height: auto; }
  .section { padding-top: 90px; padding-bottom: 90px; }
  .timeline article > span { margin-bottom: 22px; }
  .founder-card { grid-template-columns: 1fr; }
  .monogram { width: 104px; height: 104px; }
  .contact-section { padding-top: 84px; padding-bottom: 84px; }
  .contact-section form { padding: 25px 20px; }
}

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