:root {
  --ink: #11172b;
  --muted: #62697a;
  --paper: #fbf8f0;
  --panel: #ffffff;
  --line: #ded7c6;
  --navy: #071354;
  --navy-2: #101d69;
  --violet: #7e76ff;
  --violet-soft: #ece9ff;
  --ore: #c38a19;
  --ore-soft: #f2e2b5;
  --teal: #16716d;
  --shadow: 0 28px 90px rgba(7, 19, 84, 0.17);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(222, 215, 198, 0.92);
  background: rgba(251, 248, 240, 0.9);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--navy);
  font-weight: 840;
  text-decoration: none;
}
.brand > span:last-child > span { color: var(--ore); }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  color: #fff;
  background: var(--navy);
  box-shadow: inset 0 -4px 0 var(--ore);
  font-family: Georgia, serif;
  font-size: 1.25rem;
}
.site-nav { display: flex; justify-content: center; gap: clamp(16px, 2.8vw, 34px); }
.site-nav a,
.secondary-link {
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 680;
  text-decoration: none;
}
.site-nav a:hover,
.secondary-link:hover { color: var(--navy); }
.nav-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 760;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(7, 19, 84, 0.22);
}
.nav-cta:hover,
.primary-button:hover { background: var(--navy-2); }
.menu-button { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(52px, 7vw, 96px) clamp(18px, 4vw, 58px);
  background:
    radial-gradient(circle at 8% 12%, rgba(126, 118, 255, 0.17), transparent 29%),
    linear-gradient(112deg, rgba(195, 138, 25, 0.17), transparent 34%),
    linear-gradient(180deg, #fffaf0 0%, #f5efdf 100%);
}
.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--ore);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2.6rem, 4.5vw, 5.4rem);
  line-height: 0.97;
  letter-spacing: -0.045em;
}
h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2.1rem, 3.6vw, 4.25rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}
h3 { margin-bottom: 10px; color: var(--navy); font-size: 1.12rem; line-height: 1.25; }
.hero-text,
.intro-copy p,
.trust-copy > p:last-child,
.pilot p {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.67;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px 22px; align-items: center; margin: 28px 0; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 0; }
.hero-facts div { padding: 13px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,0.7); }
.hero-facts dt { color: var(--muted); font-size: 0.76rem; font-weight: 700; }
.hero-facts dd { margin: 5px 0 0; color: var(--navy); font-size: 0.94rem; font-weight: 820; }
.hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 19, 84, 0.15);
  border-radius: 10px;
  background: #131a26;
  box-shadow: var(--shadow);
}
.hero-media img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
.hero-media figcaption { padding: 11px 14px; color: #d5dae4; background: #131a26; font-size: 0.75rem; }

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 38px;
  justify-content: center;
  padding: 22px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.signal-strip span { color: var(--muted); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.signal-strip span::before { content: "•"; margin-right: 12px; color: var(--ore); }

.section { padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 58px); }
.section-heading { max-width: 920px; }
.section-heading > p:last-child { max-width: 780px; color: var(--muted); line-height: 1.65; }
.section-heading.centered { margin: 0 auto 42px; text-align: center; }
.section-heading.centered h2 { margin-right: auto; margin-left: auto; }
.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  background: #fff;
}
.intro-copy { display: grid; gap: 16px; }
.intro-copy p { margin-bottom: 0; }

.film-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 10% 12%, rgba(195, 138, 25, 0.2), transparent 30%),
    linear-gradient(135deg, #0e1424, #071354);
}
.film-copy h2 { color: #fff; }
.film-copy > p:not(.eyebrow):not(.film-note) { color: #c7ccdc; font-size: 1.05rem; line-height: 1.67; }
.film-note { margin: 28px 0 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.18); color: #fff; font-weight: 760; }
.film-media { margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,0.18); border-radius: 11px; background: #070b12; box-shadow: 0 28px 80px rgba(0,0,0,0.3); }
.film-media video { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; background: #070b12; }
.film-media figcaption { padding: 11px 14px; color: #abb3c5; background: #0e1424; font-size: 0.78rem; }

.workflow-section { background: #f3eee2; }
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(7,19,84,0.11);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 0 18px 58px rgba(7,19,84,0.1);
  list-style: none;
}
.workflow-grid li { min-height: 245px; padding: 26px 22px; border-right: 1px solid rgba(7,19,84,0.1); }
.workflow-grid li:last-child { border-right: 0; }
.workflow-grid li > span,
.trust-rail article > span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  margin-bottom: 46px;
  border: 1px solid rgba(195,138,25,0.3);
  border-radius: 50%;
  color: var(--navy);
  background: var(--ore-soft);
  font-size: 0.76rem;
  font-weight: 850;
}
.workflow-grid strong { display: block; margin-bottom: 9px; color: var(--navy); font-size: 1.06rem; }
.workflow-grid p,
.feature-grid p,
.trust-rail p,
.faq-grid p { margin: 0; color: var(--muted); line-height: 1.58; }

.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.feature-grid article { min-height: 270px; padding: 30px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.feature-grid article:nth-child(2) { background: var(--violet-soft); }
.feature-grid article:nth-child(3) { background: #e1f0ec; }
.feature-grid article:nth-child(4) { background: #f5e8c8; }
.feature-number { display: block; margin-bottom: 62px; color: var(--ore); font-size: 0.78rem; font-weight: 850; }

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 96px);
  color: #fff;
  background: var(--navy);
}
.trust h2, .trust h3 { color: #fff; }
.trust-copy > p:last-child { color: #c7ccdc; }
.trust-rail { border-top: 1px solid rgba(255,255,255,0.19); }
.trust-rail article { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,0.19); }
.trust-rail article > span { margin: 0; }
.trust-rail p { color: #bfc5d5; }

.pilot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
  background:
    radial-gradient(circle at 92% 20%, rgba(126,118,255,0.22), transparent 28%),
    linear-gradient(115deg, rgba(195,138,25,0.17), transparent 38%),
    #f3eee2;
}
.pilot-checklist { display: grid; gap: 10px; }
.pilot-checklist span { padding: 16px 18px; border: 1px solid var(--line); border-radius: 8px; color: var(--navy); background: rgba(255,255,255,0.78); font-weight: 730; }
.pilot-checklist span::before { content: "✓"; margin-right: 12px; color: var(--teal); font-weight: 900; }
.pilot-actions { display: flex; flex-wrap: wrap; gap: 16px 22px; align-items: center; margin-top: 26px; }

.faq { background: #fff; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 36px; border: 1px solid var(--line); background: var(--line); }
.faq-grid article { min-height: 190px; padding: 28px; background: #fff; }

.back-link {
  justify-self: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 680;
  text-decoration: none;
}
.back-link:hover { color: var(--navy); }
.interest-main {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.7fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(54px, 8vw, 110px) clamp(18px, 6vw, 96px);
  background:
    radial-gradient(circle at 10% 10%, rgba(126,118,255,0.2), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(195,138,25,0.2), transparent 30%),
    linear-gradient(135deg, #fffaf0, #f2ecde);
}
.interest-intro { max-width: 750px; }
.interest-intro > p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 1.12rem; line-height: 1.67; }
.interest-benefits { display: grid; gap: 12px; margin: 32px 0 0; padding: 0; list-style: none; }
.interest-benefits li { color: var(--navy); font-weight: 720; }
.interest-benefits li::before { content: "✓"; margin-right: 12px; color: var(--teal); font-weight: 900; }
.form-panel {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(7,19,84,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
}
.form-kicker { margin-bottom: 10px; color: var(--ore); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.09em; text-transform: uppercase; }
.form-panel h2 { font-size: clamp(2rem, 3vw, 3.25rem); }
.form-field { display: grid; gap: 8px; margin-bottom: 18px; }
.form-field label { color: var(--navy); font-size: 0.9rem; font-weight: 760; }
.form-field input {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #cfc7b6;
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 1rem;
}
.form-field input:focus { border-color: var(--violet); outline: 3px solid rgba(126,118,255,0.18); }
.form-submit { width: 100%; margin-top: 4px; border: 0; cursor: pointer; font: inherit; }
.form-submit:disabled { cursor: wait; opacity: 0.72; }
.form-privacy { margin: 14px 0 0; color: var(--muted); font-size: 0.78rem; line-height: 1.5; }
.form-status { min-height: 24px; margin: 12px 0 0; font-size: 0.88rem; font-weight: 700; }
.form-status.is-error { color: #a62525; }
.form-status.is-success { color: var(--teal); }
.form-success { text-align: center; }
.form-success > span { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 22px; border-radius: 50%; color: #fff; background: var(--teal); font-size: 1.5rem; font-weight: 900; }
.form-success p { color: var(--muted); }
.interest-footer { background: #0e1424; }
.interest-footer a { color: #fff; }

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 32px clamp(18px, 4vw, 58px);
  color: #c7ccdc;
  background: #0e1424;
}
.footer-brand { color: #fff; }
footer p { margin: 0; font-size: 0.8rem; }
.footer-note { color: #858da2; text-align: right; }
.inline-partner-link {
  color: var(--navy);
  font-weight: 750;
  text-decoration-color: var(--ore);
  text-underline-offset: 0.16em;
}
.partner-credit { display: flex; flex-wrap: wrap; gap: 0.28rem; align-items: center; }
.etashi-link {
  display: inline-flex;
  gap: 0.42rem;
  align-items: center;
  color: #fff;
  font-weight: 760;
  text-decoration: none;
}
.etashi-link img {
  width: auto;
  height: 2rem;
  object-fit: contain;
}
.etashi-link:hover span,
.etashi-link:focus-visible span { text-decoration: underline; text-decoration-color: var(--ore); text-underline-offset: 0.2em; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto 1fr; }
  .menu-button {
    display: inline-flex;
    justify-self: end;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--navy);
    background: transparent;
    font: inherit;
    font-weight: 760;
  }
  .site-nav {
    position: absolute;
    top: 73px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 11px; }
  .nav-cta { justify-self: end; }
  .hero { grid-template-columns: 1fr; }
  .hero-media { max-width: 900px; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-grid li { min-height: 210px; border-bottom: 1px solid var(--line); }
  .workflow-grid li:nth-child(2n) { border-right: 0; }
  .workflow-grid li:last-child { grid-column: 1 / -1; min-height: auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .film-section { grid-template-columns: 1fr; }
  .interest-main { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .site-header { grid-template-columns: auto auto; }
  .nav-cta { display: none; }
  .hero { min-height: auto; padding-top: 48px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4.4rem); }
  .hero-facts { grid-template-columns: 1fr; }
  .intro,
  .trust,
  .film-section,
  .pilot,
  .faq-grid,
  .feature-grid,
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-grid li,
  .workflow-grid li:nth-child(2n),
  .workflow-grid li:last-child { grid-column: auto; min-height: auto; border-right: 0; }
  .workflow-grid li > span { margin-bottom: 28px; }
  .feature-grid article { min-height: auto; }
  .feature-number { margin-bottom: 38px; }
  .interest-header { grid-template-columns: auto auto; }
  .interest-header .back-link { display: none; }
  .interest-header .nav-cta { display: inline-flex; }
  .interest-main { min-height: auto; }
  footer { grid-template-columns: 1fr; }
  .footer-note { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
