:root {
  --ink: #101820;
  --navy: #07111d;
  --navy-soft: #102235;
  --paper: #f5f6f7;
  --white: #ffffff;
  --line: rgba(16, 24, 32, 0.14);
  --muted: #5d6873;
  --gold: #d4aa63;
  --gold-deep: #9a6d2d;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Inter, Arial, sans-serif;
  --container: min(1240px, calc(100vw - 64px));
  --shadow: 0 24px 70px rgba(7, 17, 29, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}
h3 { letter-spacing: 0; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 112px 0; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  border-radius: 4px;
}
.skip-link:focus { top: 16px; }

.announcement {
  min-height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 8px 24px;
  background: #03090f;
  color: rgba(255,255,255,0.72);
  font-size: 0.76rem;
  font-weight: 600;
}
.announcement span + span::before { content: "·"; margin-right: 24px; color: var(--gold); }

.site-header {
  position: absolute;
  inset: 36px 0 auto;
  z-index: 20;
  color: var(--white);
}
.site-header__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.26);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
.brand__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold);
}
.brand__name { font-size: 1rem; }
.site-nav { display: flex; justify-content: center; gap: 30px; }
.site-nav a { color: rgba(255,255,255,0.76); font-size: 0.9rem; font-weight: 600; }
.site-nav a:hover { color: var(--white); }

.button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(212,170,99,0.55);
  outline-offset: 3px;
}
.button--large { min-height: 58px; padding-inline: 28px; }
.button--compact { min-height: 42px; padding-inline: 17px; font-size: 0.88rem; }
.button--full { width: 100%; }
.button--dark { background: var(--navy); color: var(--white); }
.button--dark:hover { background: #183049; }
.button--light { background: var(--white); color: var(--navy); }
.button--light:hover { background: #edf1f4; }
.button--gold { background: var(--gold); color: #17130d; }
.button--gold:hover { background: #e1bf84; }
.button--outline { border-color: var(--line); background: transparent; color: var(--ink); }
.button--outline:hover { border-color: var(--ink); }
.text-link { display: inline-flex; align-items: center; min-height: 44px; font-weight: 700; border-bottom: 1px solid currentColor; }
.text-link--light { color: rgba(255,255,255,0.86); }

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}
.eyebrow--light { color: #e5c994; }

.hero {
  position: relative;
  min-height: calc(100svh - 36px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.hero__media, .hero__shade { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 61% center; }
.hero__shade {
  background: linear-gradient(90deg, rgba(3,9,15,0.94) 0%, rgba(3,9,15,0.72) 40%, rgba(3,9,15,0.18) 74%, rgba(3,9,15,0.08) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 36px);
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  padding-top: 132px;
}
.hero__copy { max-width: 710px; min-width: 0; padding: 70px 0 64px; }
.hero__benefits, .hero__benefits div { min-width: 0; }
.hero h1 { max-width: 700px; margin-bottom: 26px; font-size: 6.25rem; }
.hero__lead { max-width: 630px; margin-bottom: 28px; color: rgba(255,255,255,0.82); font-size: 1.22rem; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.hero__disclosure { max-width: 600px; margin: 22px 0 0; color: rgba(255,255,255,0.52); font-size: 0.76rem; }
.hero__benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.24);
}
.hero__benefits div { min-height: 112px; padding: 25px 22px 25px 0; }
.hero__benefits div + div { padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.18); }
.hero__benefits strong { display: block; margin-bottom: 3px; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.hero__benefits span { color: rgba(255,255,255,0.64); font-size: 0.82rem; }

.value-band { padding: 112px 0; background: var(--paper); }
.value-band__grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 100px; align-items: start; }
.value-band h2 { margin-bottom: 0; font-size: 4.7rem; }
.value-band h2 em { color: var(--gold-deep); font-weight: 400; }
.value-band__body > p { max-width: 660px; color: var(--muted); font-size: 1.22rem; }
.value-metrics { display: grid; grid-template-columns: 1fr 1fr; margin: 42px 0 24px; border-top: 1px solid var(--line); }
.value-metrics div { padding: 26px 22px 0 0; }
.value-metrics div + div { padding-left: 28px; border-left: 1px solid var(--line); }
.value-metrics strong { display: block; font-family: var(--serif); font-size: 2.6rem; font-weight: 400; }
.value-metrics span, .value-band__body small { color: var(--muted); font-size: 0.82rem; }

.offers { background: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 56px; }
.section-heading h2 { margin-bottom: 22px; font-size: 5rem; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.offer-card--featured { border-color: var(--navy); box-shadow: var(--shadow); }
.offer-card--premium { background: #f6f3ed; }
.offer-card > img { width: 100%; height: 315px; object-fit: cover; }
.offer-card__flag {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 8px 11px;
  border-radius: 3px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
}
.offer-card__body { display: flex; flex: 1; flex-direction: column; padding: 30px; }
.offer-card__topline { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; }
.offer-card__topline span { color: var(--gold-deep); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.offer-card__topline strong { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.offer-card h3 { margin: 20px 0 14px; font-family: var(--serif); font-size: 2.3rem; font-weight: 400; line-height: 1; }
.offer-card p { color: var(--muted); }
.plain-list { margin: 4px 0 30px; padding: 0; list-style: none; color: #36424d; font-size: 0.9rem; }
.plain-list li { position: relative; padding: 9px 0 9px 20px; border-bottom: 1px solid var(--line); }
.plain-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-deep); }
.offer-card .button { margin-top: auto; }
.offers__note { max-width: 900px; margin: 28px auto 0; color: var(--muted); text-align: center; font-size: 0.78rem; }

.experience-band {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.experience-band__media, .experience-band__shade { position: absolute; inset: 0; }
.experience-band__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.experience-band__shade { background: linear-gradient(90deg, rgba(3,9,15,0.92), rgba(3,9,15,0.6) 52%, rgba(3,9,15,0.16)); }
.experience-band__content { position: relative; z-index: 2; max-width: 700px; margin-left: max(32px, calc((100vw - 1240px) / 2)); }
.experience-band h2 { margin-bottom: 24px; font-size: 5.1rem; }
.experience-band p:not(.eyebrow) { max-width: 610px; margin-bottom: 30px; color: rgba(255,255,255,0.74); font-size: 1.1rem; }

.process { background: var(--paper); }
.process__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 110px; align-items: start; }
.process .section-heading { margin-bottom: 0; position: sticky; top: 80px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--gold-deep); font-size: 0.8rem; font-weight: 700; }
.process-list strong { display: block; margin-bottom: 7px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.process-list p { margin-bottom: 0; color: var(--muted); }

.faq { background: var(--white); }
.faq__grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 110px; }
.faq .section-heading { margin-bottom: 0; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 25px 46px 25px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.5rem; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 8px; top: 22px; font-family: var(--sans); font-size: 1.2rem; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { max-width: 700px; padding: 0 50px 26px 0; margin: 0; color: var(--muted); }

.final-cta { padding: 120px 0; background: var(--navy); color: var(--white); text-align: center; }
.final-cta__inner { max-width: 880px; }
.final-cta h2 { margin-bottom: 22px; font-size: 5.5rem; }
.final-cta p:not(.eyebrow) { max-width: 680px; margin: 0 auto 30px; color: rgba(255,255,255,0.68); }

.site-footer { padding: 64px 0 92px; background: #03090f; color: var(--white); }
.site-footer__grid { display: grid; grid-template-columns: 1fr auto; gap: 80px; }
.brand--footer { margin-bottom: 20px; }
.site-footer p { max-width: 650px; color: rgba(255,255,255,0.52); font-size: 0.78rem; }
.site-footer__links { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 32px; align-content: start; }
.site-footer__links a { color: rgba(255,255,255,0.7); font-size: 0.82rem; }
.site-footer__links a:hover { color: var(--white); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.45); font-size: 0.72rem; }

.mobile-cta { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(3,9,15,0.76); backdrop-filter: blur(7px); }
.modal__panel {
  position: relative;
  z-index: 2;
  width: min(700px, 100%);
  max-height: calc(100svh - 36px);
  overflow-y: auto;
  padding: 38px;
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.modal__close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border: 0; background: transparent; color: var(--ink); font-size: 1.8rem; cursor: pointer; }
.modal__header { padding-right: 44px; }
.modal__header h2, .application-success h2 { margin-bottom: 14px; font-size: 3.4rem; }
.modal__header > p:last-child { color: var(--muted); }
.modal__summary { display: grid; grid-template-columns: 1fr auto; gap: 24px; margin: 24px 0; padding: 18px 0; border-block: 1px solid var(--line); }
.modal__summary span { display: block; color: var(--muted); font-size: 0.76rem; }
.modal__summary strong { display: block; margin-top: 3px; font-size: 1rem; }
.modal__summary > div:last-child { text-align: right; }
.modal__steps { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.modal__steps span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); font-size: 0.74rem; }
.modal__steps span.is-active { border-color: var(--navy); background: var(--navy); color: var(--white); }
.modal__steps i { flex: 1; height: 1px; background: var(--line); }
.form-step { display: none; }
.form-step.is-active { display: block; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: block; }
.field--full { grid-column: 1 / -1; }
.field > span { display: block; margin-bottom: 7px; font-size: 0.78rem; font-weight: 700; }
.field em { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
}
.field input, .field select { min-height: 50px; }
.field textarea { resize: vertical; }
.field small { display: block; margin-top: 6px; color: var(--muted); font-size: 0.7rem; }
.field__error { min-height: 15px; color: #9e2d27 !important; }
.field.is-invalid input, .field.is-invalid select { border-color: #9e2d27; }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 11px; margin: 20px 0; color: var(--muted); font-size: 0.76rem; }
.consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--navy); }
.form-actions { display: grid; grid-template-columns: auto 1fr; gap: 12px; }
.form-security, .form-error { margin: 12px 0 0; color: var(--muted); font-size: 0.72rem; }
.form-error { min-height: 18px; color: #9e2d27; }
.application-success { padding: 24px 0 6px; text-align: center; }
.application-success__mark { width: 52px; height: 52px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: var(--navy); color: var(--white); font-size: 1.4rem; }
.application-success p { color: var(--muted); }
.noscript { position: fixed; z-index: 200; inset: auto 0 0; padding: 12px; background: #8f2d28; color: var(--white); text-align: center; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal--delay, .reveal--delay-sm { transition-delay: 100ms; }
.reveal--delay-md { transition-delay: 180ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1060px) {
  .hero h1 { font-size: 5.2rem; }
  .value-band__grid, .process__grid, .faq__grid { gap: 60px; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .offer-card--premium { grid-column: 1 / -1; display: grid; grid-template-columns: 0.8fr 1.2fr; }
  .offer-card--premium > img { height: 100%; min-height: 460px; }
  .site-nav { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto; }
}

@media (max-width: 780px) {
  :root { --container: calc(100vw - 36px); }
  .section { padding: 82px 0; }
  .announcement { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
  .site-header { inset: 36px 0 auto; }
  .site-header__inner { min-height: 68px; gap: 12px; }
  .site-header .button { display: none; }
  .hero__shade { background: linear-gradient(180deg, rgba(3,9,15,0.68), rgba(3,9,15,0.88) 62%, rgba(3,9,15,0.98)); }
  .hero__media img { object-position: 66% center; }
  .hero__content { min-height: 900px; padding-top: 112px; }
  .hero__copy { align-self: end; padding: 80px 0 40px; }
  .hero h1 { font-size: 4.2rem; }
  .hero__lead { font-size: 1.05rem; }
  .hero__benefits { grid-template-columns: 1fr 1fr; }
  .hero__benefits div { min-height: 96px; padding: 20px 16px 20px 0; }
  .hero__benefits div:nth-child(3) { border-left: 0; }
  .hero__benefits div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.18); }
  .value-band { padding: 82px 0; }
  .value-band__grid, .process__grid, .faq__grid { grid-template-columns: 1fr; gap: 38px; }
  .value-band h2, .section-heading h2, .experience-band h2, .final-cta h2 { font-size: 4rem; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card--premium { grid-column: auto; display: flex; }
  .offer-card--premium > img { height: 315px; min-height: 0; }
  .process .section-heading { position: static; }
  .experience-band { min-height: 650px; }
  .experience-band__content { margin-left: auto; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .mobile-cta {
    position: fixed;
    z-index: 40;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 6px;
    background: rgba(3,9,15,0.94);
    color: var(--white);
    box-shadow: 0 18px 50px rgba(3,9,15,0.28);
    transform: translateY(130%);
    transition: transform 220ms ease;
  }
  .mobile-cta.is-visible { transform: translateY(0); }
  .mobile-cta span { display: block; color: rgba(255,255,255,0.56); font-size: 0.68rem; }
  .mobile-cta strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
  .mobile-cta .button { min-height: 46px; }
}

@media (max-width: 520px) {
  :root { --container: calc(100vw - 24px); }
  .announcement { gap: 14px; padding-inline: 12px; }
  .announcement span + span::before { margin-right: 14px; }
  .brand__name { font-size: 0.92rem; }
  .hero__content { min-height: 820px; }
  .hero h1 { max-width: 100%; font-size: 3.15rem; overflow-wrap: anywhere; }
  .hero__lead { max-width: 100%; font-size: 1rem; overflow-wrap: anywhere; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .text-link { align-self: flex-start; }
  .hero__benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__benefits strong { font-size: 1.35rem; }
  .hero__benefits span { font-size: 0.72rem; overflow-wrap: anywhere; }
  .value-band h2, .section-heading h2, .experience-band h2, .final-cta h2 { font-size: 3.25rem; }
  .value-metrics { grid-template-columns: 1fr; }
  .value-metrics div + div { padding-left: 0; border-left: 0; }
  .offer-card__body { padding: 24px; }
  .offer-card h3 { font-size: 2rem; }
  .process-list li { grid-template-columns: 42px 1fr; gap: 12px; }
  .site-footer__links { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; gap: 8px; }
  .modal { padding: 0; place-items: end center; }
  .modal__panel { width: 100%; max-height: 94svh; padding: 24px 18px; border-radius: 6px 6px 0 0; }
  .modal__header h2, .application-success h2 { font-size: 2.75rem; }
  .modal__summary, .form-grid { grid-template-columns: 1fr; }
  .modal__summary > div:last-child { text-align: left; }
  .field--full { grid-column: auto; }
  .form-actions { grid-template-columns: 1fr; }
  .form-actions .button:first-child { order: 2; }
}
