:root {
  --ink: #14202b;
  --muted: #5b6974;
  --paper: #f6f4ef;
  --surface: #fffdfa;
  --navy: #123347;
  --navy-2: #1d526d;
  --mint: #a8e8d2;
  --mint-soft: #e3f7f0;
  --coral: #f26b4d;
  --line: #d9dfdd;
  --shadow: 0 20px 55px rgba(17, 43, 57, 0.12);
  --radius: 24px;
  color-scheme: light;
}

* {
  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: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: white;
  color: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 5;
  inset: 0 0 auto;
  color: white;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--mint);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0.02em;
}

.brand small {
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quiet-link {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.quiet-link:hover,
.quiet-link:focus-visible {
  color: var(--mint);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 108px;
  background:
    radial-gradient(circle at 75% 15%, rgba(168, 232, 210, 0.18), transparent 30%),
    linear-gradient(135deg, #102b3a 0%, var(--navy) 52%, #1c5169 100%);
  color: white;
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 58px rgba(255, 255, 255, 0.035), 0 0 0 116px rgba(255, 255, 255, 0.025);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--navy-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow,
.fit-card .eyebrow {
  color: var(--mint);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 6.4vw, 78px);
}

h2 {
  font-size: clamp(38px, 4.5vw, 58px);
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 23px;
  border-radius: 999px;
  background: var(--mint);
  color: #102c3a;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 9px 30px rgba(0, 0, 0, 0.15);
  transition: transform 160ms ease, background 160ms ease;
}

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

.text-link {
  color: white;
  font-size: 15px;
  font-weight: 700;
  text-underline-offset: 5px;
}

.trust-note {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 13px;
}

.offer-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.card-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin: 6px 0 -4px;
  font-family: Georgia, serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.1;
}

.price span {
  color: var(--mint);
  font-size: 29px;
  vertical-align: 18px;
}

.price-note {
  margin: 0 0 27px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.offer-facts {
  margin: 0;
}

.offer-facts div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.offer-facts dt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.offer-facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.section {
  padding: 108px 0;
}

.section-tight {
  padding-bottom: 76px;
}

.section-heading {
  max-width: 730px;
}

.section-heading > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.outcome-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.outcome-card .number {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}

.outcome-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.process-section {
  background: #ecefea;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 40px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  padding: 29px 0;
  border-top: 1px solid #cfd6d2;
}

.process-list li:last-child {
  border-bottom: 1px solid #cfd6d2;
}

.process-list > li > span {
  color: var(--navy-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.proof-section {
  background: var(--navy);
  color: white;
}

.proof-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}

.proof-section .eyebrow {
  color: var(--mint);
}

.demo-label {
  flex: 0 0 auto;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid rgba(168, 232, 210, 0.5);
  border-radius: 12px;
  background: rgba(168, 232, 210, 0.08);
  color: var(--mint);
  font-size: 12px;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.demo-label strong,
.demo-label span {
  display: block;
}

.demo-label span {
  color: rgba(255, 255, 255, 0.66);
  letter-spacing: 0.08em;
}

.proof-stack {
  display: grid;
  gap: 28px;
}

.proof-frame {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: #f8fbfa;
  box-shadow: 0 27px 65px rgba(0, 0, 0, 0.24);
}

.proof-frame img {
  width: 100%;
}

.proof-frame figcaption {
  padding: 13px 18px;
  border-top: 1px solid #dce3e0;
  color: #52636e;
  font-size: 12px;
}

.proof-disclaimer {
  max-width: 820px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.boundaries-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.check-list,
.boundary-card ul {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 38px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 17px;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--navy);
  content: "\2713";
  font-size: 13px;
  font-weight: 900;
}

.boundary-card {
  padding: 38px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.boundary-card h3 {
  color: var(--coral);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.boundary-card ul {
  margin-top: 20px;
}

.boundary-card li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.fit-section {
  padding-top: 20px;
}

.fit-card {
  padding: clamp(42px, 7vw, 78px);
  border-radius: 30px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(168, 232, 210, 0.09)),
    var(--navy);
  color: white;
  text-align: center;
  box-shadow: var(--shadow);
}

.fit-card h2 {
  max-width: 760px;
  margin-inline: auto;
}

.fit-card > p:not(.eyebrow) {
  max-width: 740px;
  margin: 25px auto 0;
  color: rgba(255, 255, 255, 0.73);
}

.fit-card > p strong {
  color: white;
}

.fit-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.fit-meta span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
}

.site-footer {
  padding: 42px 0 52px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-inner strong {
  color: var(--ink);
  font-size: 14px;
}

.footer-inner p {
  margin: 5px 0 0;
}

@media (max-width: 860px) {
  .hero-grid,
  .process-grid,
  .boundaries-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 52px;
  }

  .offer-card {
    max-width: 560px;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .outcome-card .number {
    margin-bottom: 24px;
  }

  .sticky-heading {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 26px, 1160px);
  }

  .header-inner {
    min-height: 78px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 13.5px;
  }

  .quiet-link {
    display: none;
  }

  .hero {
    padding: 130px 0 72px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .offer-card,
  .boundary-card {
    padding: 27px;
  }

  .section {
    padding: 76px 0;
  }

  .proof-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-label {
    text-align: left;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fit-section {
    padding-top: 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
  }
}
