:root {
  --navy: #092f3a;
  --navy-deep: #05242d;
  --teal: #0b7f83;
  --teal-bright: #34b7b3;
  --aqua: #dff3f1;
  --aqua-soft: #eef9f7;
  --paper: #fbfaf7;
  --sand: #d9c5a6;
  --coral: #e68c6f;
  --ink: #16373e;
  --muted: #587176;
  --line: rgba(9, 47, 58, 0.14);
  --shadow: 0 24px 70px rgba(4, 37, 46, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.site-shell { overflow: hidden; }

.topbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  color: var(--navy);
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
}

.brand span {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}

.top-note {
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: 660px;
  margin: 10px auto 0;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e7f2f0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.93) 40%, rgba(251, 250, 247, 0.18) 72%, rgba(251, 250, 247, 0.04) 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(610px, 59%);
  padding: 72px 70px 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.eyebrow::before {
  content: "";
  width: 27px;
  height: 2px;
  background: var(--coral);
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: var(--navy);
}

h1 {
  margin: 0 0 26px;
  font-size: clamp(2.75rem, 5.1vw, 5rem);
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 555px;
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.52rem);
  line-height: 1.45;
  color: var(--ink);
}

.hero-copy {
  max-width: 540px;
  margin: 0 0 32px;
  color: #38575e;
}

.signature {
  margin: 0 0 34px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-style: italic;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
  box-shadow: 0 8px 22px rgba(5, 36, 45, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover, .button:focus-visible {
  transform: translateY(-2px);
  background: var(--teal);
}

.button::after { content: "↓"; font-size: 1.1rem; }

.main { padding: 110px 20px 0; }

.section {
  width: min(1040px, 100%);
  margin: 0 auto 118px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.78fr 1.3fr;
  gap: 68px;
  align-items: start;
  margin-bottom: 55px;
}

.section-kicker {
  margin: 5px 0 12px;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.section-intro {
  margin: 2px 0 0;
  font-size: 1.17rem;
  line-height: 1.75;
  color: #3d5a60;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.system-card {
  min-height: 240px;
  padding: 31px 30px 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.74);
}

.system-card:nth-child(2) { background: var(--aqua-soft); }

.card-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.system-card h3 {
  margin: 0 0 10px;
  font-size: 1.62rem;
}

.system-card p { margin: 0; color: var(--muted); }

.authority-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 19px;
  align-items: start;
  margin-top: 22px;
  padding: 23px 25px;
  border-radius: 18px;
  background: var(--navy);
  color: rgba(255,255,255,0.84);
}

.authority-note .seal {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
}

.authority-note strong { color: #fff; }
.authority-note p { margin: 0; }

.path-section {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 100px max(40px, calc((100% - 1040px) / 2)) 112px;
  border-radius: 34px 34px 0 0;
  background: var(--navy-deep);
  color: rgba(255,255,255,0.78);
}

.path-section .section-heading { margin-bottom: 66px; }
.path-section h2 { color: #fff; }
.path-section .section-kicker { color: var(--teal-bright); }
.path-section .section-intro { color: rgba(255,255,255,0.76); }

.steps { display: grid; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 26px;
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.step:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }

.step-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  line-height: 1;
  color: var(--teal-bright);
}

.step h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.65rem;
}

.step p { margin: 0; max-width: 730px; }

.closing {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: center;
  margin-top: 56px;
  padding: 31px 34px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
}

.closing p { margin: 0; max-width: 720px; }
.closing strong { display: block; margin-bottom: 4px; color: #fff; font-size: 1.1rem; }

.quiet-link {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 750;
  border-bottom: 1px solid var(--teal-bright);
  padding-bottom: 3px;
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 0.82rem;
  color: var(--muted);
}

.commitment-section { padding-top: 14px; }

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.commitment-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.commitment-card > span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  color: var(--teal);
}

.commitment-card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.commitment-card p { margin: 0; color: var(--muted); }

.response-section {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 118px;
}

.response-copy {
  max-width: 760px;
  margin-bottom: 42px;
}

.response-copy h2 { margin-bottom: 18px; }
.response-copy > p:last-child { margin: 0; font-size: 1.12rem; color: var(--muted); }

.interest-form {
  display: grid;
  gap: 28px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(5, 36, 45, 0.08);
}

.form-grid { display: grid; gap: 20px; }
.form-grid.two-col { grid-template-columns: 1fr 1fr; }
.form-grid.three-col { grid-template-columns: repeat(3, 1fr); }

.field { display: grid; gap: 8px; }
.field > span, fieldset legend { font-weight: 780; color: var(--navy); }
.field small { font-weight: 500; color: var(--muted); }

.field input, .field textarea {
  width: 100%;
  border: 1px solid rgba(9,47,58,0.25);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.field input { min-height: 49px; }
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { outline: 3px solid rgba(52,183,179,0.2); border-color: var(--teal); }

.choice-fieldset, .session-fieldset { margin: 0; padding: 0; border: 0; }
.choice-fieldset legend, .session-fieldset legend { margin-bottom: 13px; }

.choice-option {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
}

.choice-option:has(input:checked) { border-color: var(--teal); background: var(--aqua-soft); }
.choice-option input { margin-top: 5px; accent-color: var(--teal); }
.choice-option strong { display: block; color: var(--navy); }
.choice-option small { display: block; margin-top: 3px; color: var(--muted); font-size: 0.9rem; line-height: 1.5; }

.yes-fields {
  display: grid;
  gap: 26px;
  padding: 28px;
  border-radius: 20px;
  background: var(--aqua-soft);
}

.yes-fields[hidden] { display: none; }
.form-divider { display: flex; align-items: center; gap: 15px; color: var(--teal); font-weight: 800; }
.form-divider::after { content: ""; flex: 1; height: 1px; background: rgba(11,127,131,0.25); }

.session-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.session-options label { display: flex; align-items: center; gap: 10px; min-height: 54px; padding: 12px 14px; border: 1px solid rgba(9,47,58,0.18); border-radius: 12px; background: #fff; cursor: pointer; }
.session-options label:has(input:checked) { border-color: var(--teal); box-shadow: 0 0 0 2px rgba(11,127,131,0.1); }
.session-options input { accent-color: var(--teal); }

.privacy-note { margin: -2px 0 0; font-size: 0.86rem; line-height: 1.55; color: var(--muted); }
.privacy-note a { color: var(--teal); }

.submit-button {
  justify-self: start;
  min-height: 52px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.submit-button:hover, .submit-button:focus-visible { background: var(--teal); }
.form-honeypot { position: absolute !important; left: -9999px !important; }

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(145deg, var(--navy-deep), #0b515a 64%, #17878a);
}

.thank-you-card {
  width: min(680px, 100%);
  padding: clamp(38px, 8vw, 76px);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(0,0,0,0.28);
}

.thank-you-mark { display: grid; place-items: center; width: 58px; height: 58px; margin: 48px 0 24px; border-radius: 50%; background: var(--aqua); color: var(--teal); font-size: 1.7rem; font-weight: 800; }
.thank-you-card h1 { margin-bottom: 18px; }
.thank-you-card > p:last-child { max-width: 500px; margin: 0; font-size: 1.16rem; color: var(--muted); }

.chooser {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  background: linear-gradient(145deg, var(--navy-deep), #0b515a 64%, #17878a);
}

.chooser-panel {
  width: min(920px, 100%);
  padding: clamp(34px, 6vw, 70px);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(0,0,0,0.28);
}

.chooser h1 { max-width: 730px; margin-top: 38px; font-size: clamp(2.6rem, 6vw, 4.8rem); }
.chooser-lead { max-width: 680px; margin-bottom: 36px; font-size: 1.16rem; color: var(--muted); }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.choice-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; text-decoration: none; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.choice-card:hover, .choice-card:focus-visible { transform: translateY(-3px); border-color: var(--teal); background: var(--aqua-soft); }
.choice-card h2 { margin: 0 0 10px; font-size: 1.65rem; }
.choice-card p { margin: 0; color: var(--muted); }
.choice-card span { display: inline-block; margin-top: 24px; font-weight: 800; color: var(--teal); }

@media (max-width: 840px) {
  .hero { min-height: 760px; }
  .hero::after { background: linear-gradient(180deg, rgba(251,250,247,0.98) 0%, rgba(251,250,247,0.92) 59%, rgba(251,250,247,0.1) 100%); }
  .hero-image { object-position: 68% center; }
  .hero-content { width: 100%; padding: 58px 42px 260px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .system-grid { grid-template-columns: 1fr; }
  .system-card { min-height: 0; }
  .card-mark { margin-bottom: 24px; }
  .choice-grid { grid-template-columns: 1fr; }
  .commitment-grid { grid-template-columns: 1fr; }
  .form-grid.three-col { grid-template-columns: 1fr 1fr; }
  .session-options { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .topbar { width: calc(100% - 30px); padding: 19px 0; }
  .top-note { display: none; }
  .hero { width: calc(100% - 20px); min-height: 760px; border-radius: 24px; margin-top: 0; }
  .hero-content { padding: 46px 26px 250px; }
  h1 { font-size: 2.76rem; }
  .main { padding: 80px 20px 0; }
  .section { margin-bottom: 90px; }
  .path-section { width: calc(100% - 20px); padding: 76px 24px 88px; border-radius: 24px 24px 0 0; }
  .step { grid-template-columns: 54px 1fr; gap: 14px; }
  .step-number { font-size: 2rem; }
  .closing { grid-template-columns: 1fr; padding: 26px; }
  .footer { width: calc(100% - 36px); flex-direction: column; gap: 7px; }
  .commitment-card { grid-template-columns: 42px 1fr; padding: 24px 20px; }
  .response-section { width: calc(100% - 30px); padding: 80px 0 90px; }
  .interest-form { padding: 24px 18px; border-radius: 22px; }
  .form-grid.two-col, .form-grid.three-col { grid-template-columns: 1fr; }
  .yes-fields { padding: 22px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .choice-card { transition: none; }
}
