:root {
  --ink: #0f1724;
  --muted: #626d7b;
  --line: #dce3eb;
  --paper: #f8fafc;
  --soft: #eef3f8;
  --navy: #071a33;
  --navy-dark: #020b18;
  --navy-soft: #e7edf5;
  --accent-blue: #8fb6e8;
  --green: var(--navy);
  --green-dark: var(--navy-dark);
  --teal: #17486f;
  --coral: #ec6f57;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(5, 18, 38, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body::selection {
  background: rgba(24, 160, 88, 0.2);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.urgency-ribbon {
  position: fixed;
  z-index: 25;
  top: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 36px);
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(9, 18, 17, 0.82);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
  font-size: 0.88rem;
  font-weight: 720;
  white-space: nowrap;
}

.urgency-ribbon span:last-child {
  color: #d8e8ff;
  font-weight: 860;
}

.ribbon-countdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.ribbon-countdown strong {
  color: #ffb19f;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  background: var(--accent-blue);
  color: var(--navy-dark);
  box-shadow: 0 14px 34px rgba(143, 182, 232, 0.26);
  font-weight: 760;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button::after {
  position: absolute;
  inset: -35% auto -35% -45%;
  width: 36%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  animation: cta-shine 4.8s ease-in-out infinite;
}

.hero-actions .button,
.mobile-cta {
  animation: cta-pulse 2.8s ease-in-out infinite;
}

.button:hover {
  transform: translateY(-2px);
  background: #b4d2f5;
  box-shadow: 0 18px 42px rgba(143, 182, 232, 0.34);
  animation-play-state: paused;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.92rem;
}

@keyframes cta-shine {
  0%,
  45% {
    left: -45%;
  }

  68%,
  100% {
    left: 115%;
  }
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow:
      0 14px 34px rgba(143, 182, 232, 0.26),
      0 0 0 0 rgba(143, 182, 232, 0.22);
  }

  50% {
    box-shadow:
      0 18px 44px rgba(143, 182, 232, 0.38),
      0 0 0 8px rgba(143, 182, 232, 0);
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 104px clamp(18px, 6vw, 78px) 72px;
  background:
    linear-gradient(108deg, #020913 0%, #071a33 52%, #111722 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 100%);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 78%);
  opacity: 0.52;
}

.hero-content {
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-blue);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(2.45rem, 3.95vw, 3.85rem);
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.reason-note {
  display: grid;
  gap: 5px;
  width: min(100%, 650px);
  margin-top: 22px;
  border-left: 3px solid var(--accent-blue);
  padding: 14px 16px;
  background: rgba(143, 182, 232, 0.08);
}

.reason-note span {
  color: var(--accent-blue);
  font-size: 0.76rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reason-note strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 10px;
  max-width: 720px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  border: 1px solid rgba(179, 235, 196, 0.34);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(179, 235, 196, 0.16);
  color: #d7f8df;
  font-size: 0.86rem;
  font-weight: 720;
  white-space: nowrap;
}

.scarcity-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(100%, 760px);
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 16px;
  background: rgba(9, 18, 17, 0.68);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.scarcity-panel strong,
.scarcity-label {
  display: block;
}

.scarcity-panel > div:first-child strong {
  margin-top: 4px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.3;
}

.scarcity-label {
  color: #ffb19f;
  font-size: 0.76rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 64px);
  gap: 8px;
}

.countdown span {
  display: grid;
  min-height: 58px;
  align-content: center;
  justify-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  line-height: 1.2;
}

.countdown strong {
  color: var(--white);
  font-size: 1.28rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.slot-meter {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(190px, 0.75fr) minmax(180px, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}

.slot-meter strong,
.slot-meter span {
  display: block;
}

.slot-meter [data-slots-left] {
  display: inline;
  color: var(--white);
  font-weight: 880;
  font-variant-numeric: tabular-nums;
}

.slot-meter strong {
  color: var(--white);
  font-size: 0.94rem;
}

.slot-meter span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.slot-bar {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 16px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent calc(33.333% - 1px), rgba(6, 17, 32, 0.95) calc(33.333% - 1px) calc(33.333% + 1px), transparent calc(33.333% + 1px)),
    linear-gradient(90deg, transparent calc(66.666% - 1px), rgba(6, 17, 32, 0.95) calc(66.666% - 1px) calc(66.666% + 1px), transparent calc(66.666% + 1px)),
    rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 2px 6px rgba(0, 0, 0, 0.18);
}

.slot-bar span {
  display: block;
  width: 40%;
  height: 100%;
  margin-left: 0;
  transform: none;
  border-radius: inherit;
  background: linear-gradient(90deg, #8fdca6, #b3ebc4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 0 18px rgba(179, 235, 196, 0.22);
  transition: width 500ms ease;
}

.founder-visual {
  position: relative;
  display: grid;
  align-self: end;
  min-height: min(72svh, 700px);
  align-items: end;
  animation: portrait-float 6.8s ease-in-out infinite;
}

.founder-photo {
  position: relative;
  overflow: visible;
  min-height: min(70svh, 680px);
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.founder-photo::after {
  position: absolute;
  left: 12%;
  right: 4%;
  bottom: 0;
  height: 22%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
  filter: blur(22px);
  content: "";
}

.founder-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: min(70svh, 680px);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.34));
}

.photo-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  padding: 28px;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  font-weight: 760;
}

.photo-missing .founder-photo img {
  display: none;
}

.portrait-missing .founder-visual {
  display: none;
}

.portrait-missing .hero {
  grid-template-columns: minmax(0, 760px);
  align-content: center;
}

.founder-card {
  position: absolute;
  left: -18px;
  right: 18px;
  bottom: 8px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 20px;
  background: rgba(6, 17, 32, 0.86);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

@keyframes portrait-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.floating-badge {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 3px;
  min-width: 190px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(6, 17, 32, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  animation:
    badge-in 780ms cubic-bezier(0.2, 0.82, 0.2, 1) both,
    badge-float 5.6s ease-in-out infinite;
}

.floating-badge::before {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #b3ebc4;
  box-shadow: 0 0 0 5px rgba(179, 235, 196, 0.14);
  content: "";
}

.floating-badge span,
.floating-badge strong {
  display: block;
  padding-left: 18px;
  line-height: 1.18;
}

.floating-badge span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.floating-badge strong {
  color: var(--white);
  font-size: 0.98rem;
}

.badge-one {
  left: -54px;
  top: 16%;
  animation-delay: 140ms, 920ms;
}

.badge-two {
  right: -8px;
  top: 34%;
  animation-delay: 320ms, 1320ms;
}

.badge-three {
  left: -42px;
  bottom: 30%;
  animation-delay: 500ms, 1720ms;
}

@keyframes badge-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes badge-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

.founder-kicker {
  margin-bottom: 8px;
  color: #ffb19f;
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.founder-card strong,
.founder-card span {
  display: block;
}

.founder-card strong {
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.25;
}

.founder-card span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.proof-strip {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 14px;
  padding: 22px clamp(18px, 6vw, 78px);
  background:
    linear-gradient(135deg, #f8fafc 0%, #eef3f8 100%);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-height: 160px;
  padding: 22px;
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(7, 26, 51, 0.07);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-intro {
  background:
    linear-gradient(145deg, rgba(7, 26, 51, 0.98), rgba(14, 39, 72, 0.96)) !important;
}

.proof-intro .eyebrow {
  margin-bottom: 16px;
  color: #ffb19f;
}

.proof-intro strong {
  max-width: 330px;
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.24;
}

.proof-item {
  position: relative;
  overflow: hidden;
}

.proof-item::after {
  position: absolute;
  right: -22px;
  bottom: -24px;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(7, 26, 51, 0.08);
  border-radius: 50%;
  content: "";
}

.proof-number {
  width: fit-content;
  margin-bottom: 28px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(7, 26, 51, 0.08);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.08em;
}

.proof-strip strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.proof-strip span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.trust-seals {
  padding: clamp(58px, 7vw, 92px) clamp(18px, 6vw, 78px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-heading {
  margin-bottom: 28px;
  text-align: center;
}

.trust-heading h2 {
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.badge-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(20px, 3vw, 34px);
  border: 2px solid var(--accent-blue);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(7, 26, 51, 0.06);
}

.badge-logo {
  position: relative;
  display: grid;
  min-height: 128px;
  place-items: center;
  margin: 0;
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}

.badge-logo img {
  width: 100%;
  max-width: 185px;
  max-height: 110px;
  object-fit: contain;
  filter: saturate(0.96);
}

.badge-logo-dark {
  background: var(--white);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background: var(--paper);
}

.about-image {
  position: relative;
  overflow: hidden;
  min-height: min(72svh, 720px);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(7, 26, 51, 0.16);
}

.about-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 26, 51, 0.26), transparent 46%);
  content: "";
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: min(72svh, 720px);
  object-fit: cover;
  object-position: center top;
}

.about-copy h2 {
  max-width: 820px;
  margin: 0 0 28px;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  line-height: 1.02;
}

.about-copy .text-stack {
  max-width: 760px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 30px;
}

.about-stats div {
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 26, 51, 0.05);
}

.about-stats strong,
.about-stats span {
  display: block;
}

.about-stats strong {
  color: var(--navy);
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
  line-height: 1;
}

.about-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 720;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 6vw, 78px);
}

.intro-grid,
.split,
.calendly-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 86px);
}

.section h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.text-stack {
  display: grid;
  gap: 18px;
  align-content: start;
}

.inline-cta {
  width: fit-content;
  margin-top: 10px;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  border: 1px solid rgba(7, 26, 51, 0.1);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(7, 26, 51, 0.06);
}

.section-cta p {
  max-width: 660px;
  color: var(--ink);
  font-weight: 760;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.sticky-copy p:not(.eyebrow),
.booking-copy p:not(.eyebrow) {
  margin-top: 20px;
  max-width: 620px;
}

.pain-section {
  background: var(--navy-soft);
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.step,
.booking-box,
.not-for {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(21, 38, 34, 0.06);
}

.card {
  min-height: 260px;
  padding: 26px;
}

.card-icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--coral);
  font-weight: 860;
}

h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.card p,
.step p,
.booking-box p,
.not-for p {
  margin-top: 14px;
}

.split {
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 110px;
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px 20px;
  padding: 26px;
}

.step span {
  grid-row: span 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 840;
}

.outcome-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background: var(--ink);
}

.outcome-band h2 {
  color: var(--white);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.55;
}

.outcome-band .check-list li {
  color: rgba(255, 255, 255, 0.82);
  padding-left: 46px;
  font-size: clamp(1.16rem, 1.35vw, 1.38rem);
  line-height: 1.5;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.35em;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.outcome-band .check-list li::before {
  top: 0.25em;
  width: 28px;
  height: 28px;
  font-size: 0.94rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.audience .section-heading {
  max-width: 980px;
  margin-bottom: 38px;
}

.fit-box {
  min-height: 390px;
  border: 1px solid;
  border-radius: 8px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(7, 26, 51, 0.07);
}

.fit-good {
  border-color: rgba(82, 181, 112, 0.34);
  background: linear-gradient(180deg, rgba(179, 235, 196, 0.18), rgba(255, 255, 255, 0.92));
}

.fit-bad {
  border-color: rgba(236, 111, 87, 0.34);
  background: linear-gradient(180deg, rgba(236, 111, 87, 0.1), rgba(255, 255, 255, 0.94));
}

.fit-box h3 {
  margin: 0 0 26px;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  line-height: 1.08;
}

.fit-box ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-box li {
  position: relative;
  padding-left: 38px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.15vw, 1.16rem);
  line-height: 1.5;
}

.fit-box li::before {
  position: absolute;
  left: 0;
  top: 0.18em;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.fit-good li::before {
  background: #52b570;
  content: "✓";
}

.fit-bad li::before {
  background: #d96550;
  content: "×";
}

.calendly-section {
  background: var(--navy-soft);
}

.availability {
  display: grid;
  gap: 6px;
  width: min(100%, 460px);
  margin-top: 28px;
  border-left: 4px solid var(--green);
  padding: 18px 20px;
  background: var(--white);
}

.availability span {
  color: var(--muted);
}

.urgency-note {
  max-width: 500px;
  margin-top: 18px;
  color: var(--green-dark);
  font-weight: 720;
}

.booking-box {
  min-height: 390px;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(26px, 5vw, 46px);
  box-shadow: var(--shadow);
}

.booking-box .button {
  margin-top: 24px;
}

.booking-cta-box small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.booking-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(143, 182, 232, 0.18);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(7, 26, 51, 0.06);
}

summary {
  cursor: pointer;
  min-height: 96px;
  padding: 24px;
  font-weight: 780;
  font-size: 1.08rem;
  line-height: 1.28;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  float: right;
  margin-left: 16px;
  color: var(--accent-blue);
  content: "+";
  font-size: 1.35rem;
  line-height: 0.8;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 850px;
  padding: 0 24px 24px;
  font-size: 0.98rem;
}

.mobile-cta {
  position: fixed;
  z-index: 30;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent-blue);
  color: var(--navy-dark);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  font-weight: 820;
}

.thank-you-page {
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(108deg, #020913 0%, #071a33 58%, #111722 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

.thank-you {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(32px, 6vw, 78px);
}

.thank-you-hero {
  width: min(100%, 920px);
  color: var(--white);
}

.thank-you-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
}

.thank-you-hero > p {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.thank-you-card {
  margin: 34px 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(6, 17, 32, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.thank-you-card h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.thank-you-card .check-list li {
  color: rgba(255, 255, 255, 0.82);
}

.secondary-thank-you-card {
  margin-top: -12px;
}

.secondary-thank-you-card p {
  color: var(--white);
}

@media (max-width: 940px) {
  .urgency-ribbon {
    top: 12px;
    width: calc(100% - 24px);
    justify-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.8rem;
  }

  .urgency-ribbon span:first-child {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
    padding-top: 104px;
  }

  .founder-visual {
    min-height: auto;
    max-width: 520px;
    justify-self: center;
    width: 100%;
  }

  .founder-photo,
  .founder-photo img {
    min-height: 520px;
  }

  .founder-card {
    left: 18px;
    right: 18px;
  }

  .floating-badge {
    min-width: 170px;
  }

  .badge-one {
    left: 8px;
    top: 12%;
  }

  .badge-two {
    right: 8px;
    top: 34%;
  }

  .badge-three {
    left: 24px;
    bottom: 28%;
  }

  .proof-strip,
  .intro-grid,
  .about-section,
  .split,
  .outcome-band,
  .audience-grid,
  .calendly-section,
  .trust-heading,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .badge-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-image,
  .about-image img {
    min-height: 520px;
  }

  .cards.three {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 70px;
  }

  .urgency-ribbon {
    gap: 8px;
    padding: 9px 10px;
    font-size: 0.74rem;
  }

  .ribbon-countdown {
    gap: 3px;
  }

  .urgency-ribbon span:last-child {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 88px 18px 48px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .reason-note {
    padding: 12px 14px;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-points li {
    width: fit-content;
    white-space: normal;
  }

  .scarcity-panel {
    grid-template-columns: 1fr;
    margin-top: 18px;
    padding: 14px;
  }

  .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .countdown span {
    min-width: 0;
    min-height: 52px;
    font-size: 0.66rem;
  }

  .countdown strong {
    font-size: 1.05rem;
  }

  .slot-meter {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .founder-photo,
  .founder-photo img {
    min-height: 400px;
  }

  .founder-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -76px 14px 0;
  }

  .floating-badge {
    min-width: 0;
    max-width: 154px;
    padding: 9px 10px;
  }

  .floating-badge strong {
    font-size: 0.84rem;
  }

  .floating-badge span {
    font-size: 0.66rem;
  }

  .badge-one {
    left: 0;
    top: 8%;
  }

  .badge-two {
    right: 0;
    top: 28%;
  }

  .badge-three {
    left: 10px;
    bottom: 34%;
  }

  .proof-strip div,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .trust-seals {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-image,
  .about-image img {
    min-height: 380px;
  }

  .badge-strip {
    grid-template-columns: 1fr;
  }

  .section h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .about-copy h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .card {
    min-height: auto;
  }

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

  .step span {
    grid-row: auto;
  }

  .mobile-cta {
    display: flex;
  }

  .section-cta {
    display: grid;
  }

  .section-cta .button {
    width: 100%;
  }

  .fit-box {
    min-height: auto;
  }

  .fit-box h3 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  summary {
    min-height: auto;
    padding: 20px;
  }

  details p {
    padding: 0 20px 20px;
  }

  .thank-you {
    align-items: start;
    padding: 54px 18px 34px;
  }

  .thank-you-hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .thank-you-hero > p {
    font-size: 1rem;
  }

  .thank-you-card {
    margin: 24px 0;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: clamp(2.15rem, 11.6vw, 3rem);
  }

  .button {
    padding: 0 16px;
  }

  .floating-badge {
    display: none;
  }

  .founder-card {
    margin-top: -48px;
  }

  .proof-strip {
    padding-left: 12px;
    padding-right: 12px;
  }

  .trust-heading h2 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .badge-strip {
    padding: 16px;
  }

  .badge-logo {
    min-height: 104px;
  }

  .thank-you-card .check-list li {
    padding-left: 32px;
  }
}
