:root {
  --bg: #f7f7fb;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --ink: #12182f;
  --ink-soft: #55607d;
  --line: rgba(18, 24, 47, 0.1);
  --navy: #111936;
  --navy-2: #1b2751;
  --blue: #4968ff;
  --blue-soft: #e7edff;
  --mint: #66d6b4;
  --coral: #ff8c73;
  --gold: #ffd56a;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow: 0 24px 60px rgba(17, 25, 54, 0.12);
  --shadow-dark: 0 28px 60px rgba(0, 0, 0, 0.28);
  --container: min(1180px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(73, 104, 255, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(102, 214, 180, 0.16), transparent 22%),
    var(--bg);
  color: var(--ink);
}

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

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

p {
  margin: 0;
  color: #424c69;
  line-height: 1.7;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(247, 247, 251, 0.72);
  border-bottom: 1px solid rgba(18, 24, 47, 0.06);
}

.topbar-inner,
.footer-inner,
.trust-grid,
.curriculum-grid,
.story-grid,
.disclaimer-grid,
.join-grid,
.handoff-grid,
.hero-grid,
.faq-grid {
  display: grid;
  gap: 1.5rem;
}

.topbar-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

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

.brand strong {
  font-size: 0.96rem;
}

.brand small {
  font-size: 0.76rem;
  color: var(--ink-soft);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  box-shadow: var(--shadow);
}

.nav {
  display: inline-flex;
  gap: 1.1rem;
  align-items: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.nav a:hover,
.text-link:hover {
  color: var(--blue);
}

.section-light,
.section-dark,
.section-soft-blue {
  padding: 7rem 0;
}

.section-compact {
  padding-top: 4.5rem;
  padding-bottom: 3rem;
}

.section-hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-light {
  background: transparent;
}

.section-soft-blue {
  background: linear-gradient(180deg, rgba(231, 237, 255, 0.9), rgba(255, 255, 255, 0.75));
}

.section-dark,
.join-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(73, 104, 255, 0.28), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(102, 214, 180, 0.18), transparent 22%),
    linear-gradient(180deg, var(--navy), #0b122a 100%);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark li,
.section-dark summary,
.section-dark .eyebrow,
.section-dark .mini-label,
.section-dark .text-link,
.join-hero h1,
.join-hero p,
.join-hero .eyebrow,
.light-link {
  color: white;
}

.eyebrow,
.mini-label,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow,
.mini-label {
  background: rgba(73, 104, 255, 0.12);
  color: var(--blue);
}

.section-dark .eyebrow,
.section-dark .mini-label,
.join-hero .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
}

.tag {
  background: rgba(73, 104, 255, 0.1);
  color: var(--blue);
}

.tag-highlight {
  background: rgba(255, 213, 106, 0.18);
  color: #7f5800;
}

.tag.placeholder {
  background: rgba(255, 140, 115, 0.15);
  color: #a04634;
}

.hero-grid,
.curriculum-grid,
.story-grid,
.disclaimer-grid,
.join-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero-copy h1,
.join-grid h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.98;
  max-width: 11ch;
  margin-top: 1rem;
}

.hero-lead,
.join-grid p {
  font-size: 1.08rem;
  max-width: 62ch;
  margin-top: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.hero-microcopy {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: #5d6784;
  max-width: 62ch;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #6f86ff);
  color: white;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(73, 104, 255, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(73, 104, 255, 0.34);
}

.button-secondary {
  background: white;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(18, 24, 47, 0.08), var(--shadow);
}

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

.topbar .button-ghost {
  background: rgba(73, 104, 255, 0.08);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(73, 104, 255, 0.08);
}

.button-small {
  min-height: 42px;
  padding: 0 1rem;
}

.full-width {
  width: 100%;
}

.hero-proof-row,
.dashboard-stats,
.value-grid,
.testimonial-grid,
.pricing-grid,
.handoff-grid {
  display: grid;
  gap: 1rem;
}

.hero-proof-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.8rem;
}

.proof-pill,
.stat-card,
.testimonial,
.value-card,
.feature-item,
.price-card,
.story-card,
.curriculum-panel,
.dashboard-card,
.floating-quote,
.join-panel,
.join-option {
  border: 1px solid rgba(18, 24, 47, 0.08);
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-lg);
}

.card-shadow {
  box-shadow: var(--shadow);
}

.proof-pill {
  padding: 1rem;
}

.proof-pill strong,
.stat-card strong {
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
}

.proof-pill span,
.stat-card span,
small {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-soft);
}

.hero-visual {
  position: relative;
  padding: 1rem 0 2rem 1rem;
}

.dashboard-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(241,245,255,0.96));
}

.dashboard-header,
.dashboard-stats {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.2rem;
}

.dashboard-header {
  border-bottom: 1px solid rgba(18, 24, 47, 0.08);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.coral { background: var(--coral); }
.dot.blue { background: var(--blue); }
.dot.mint { background: var(--mint); }

.chart-area {
  position: relative;
  min-height: 360px;
  margin: 1.2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #f0f4ff, #ffffff);
  overflow: hidden;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(73, 104, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 104, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
}

.chart-line,
.chart-line-two {
  position: absolute;
  inset: auto 0 0;
  height: 72%;
  background: linear-gradient(180deg, rgba(102, 214, 180, 0.28), rgba(102, 214, 180, 0.02));
  clip-path: polygon(0 75%, 10% 62%, 20% 68%, 30% 54%, 40% 59%, 50% 34%, 60% 40%, 70% 24%, 80% 31%, 90% 20%, 100% 12%, 100% 100%, 0 100%);
}

.chart-line-two {
  height: 54%;
  background: linear-gradient(180deg, rgba(73, 104, 255, 0.3), rgba(73, 104, 255, 0.03));
  clip-path: polygon(0 84%, 12% 68%, 24% 72%, 36% 48%, 48% 57%, 60% 38%, 72% 44%, 84% 18%, 100% 28%, 100% 100%, 0 100%);
}

.dashboard-stats {
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-stats div {
  display: grid;
  gap: 0.2rem;
}

.dashboard-stats small {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dashboard-stats strong {
  font-size: 1rem;
}

.floating-quote {
  position: absolute;
  right: -0.5rem;
  bottom: 0;
  width: min(320px, 88%);
  padding: 1rem 1.2rem;
  background: rgba(17, 25, 54, 0.95);
}

.floating-quote p,
.floating-quote span {
  color: rgba(255, 255, 255, 0.9);
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.section-heading.centered {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.story-card h2,
.disclaimer-grid h2,
.curriculum-panel h3,
.join-option h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.trust-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.trust-points,
.feature-list,
.faq-list {
  display: grid;
  gap: 1rem;
}

.trust-points article,
.feature-item,
.curriculum-panel,
.stat-card,
.story-card,
.join-option,
.value-card,
.price-card,
.testimonial {
  padding: 1.5rem;
}

.trust-points article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07));
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trust-points strong {
  display: block;
  color: white;
  margin-bottom: 0.4rem;
  font-size: 1.02rem;
}

.trust-points p {
  color: rgba(255, 255, 255, 0.82);
}

.value-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card,
.price-card,
.testimonial,
.join-panel {
  backdrop-filter: blur(14px);
}

.value-card-featured {
  background: linear-gradient(180deg, rgba(73, 104, 255, 0.08), rgba(255, 255, 255, 0.98));
  border-color: rgba(73, 104, 255, 0.16);
  transform: translateY(-0.2rem);
}

.value-card h3,
.feature-item h3,
.price-card h3,
.testimonial strong,
.curriculum-panel h3,
.join-option h2 {
  margin-top: 0.9rem;
  margin-bottom: 0.65rem;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  font-weight: 800;
}

.curriculum-panel {
  background: linear-gradient(180deg, rgba(17, 25, 54, 0.98), rgba(27, 39, 81, 0.98));
  color: white;
}

.curriculum-panel h3,
.curriculum-panel li,
.curriculum-panel .text-link {
  color: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--blue);
  font-weight: 700;
  margin-top: 1rem;
}

.story-side {
  display: grid;
  gap: 1rem;
}

.video-card {
  min-height: 160px;
}

.audience-grid,
.blueprint-grid,
.steps-grid {
  display: grid;
  gap: 1rem;
}

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

.audience-card,
.step-card,
.blueprint-card {
  padding: 1.5rem;
  border: 1px solid rgba(18, 24, 47, 0.08);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
}

.audience-card h2,
.blueprint-grid h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.08;
  margin-top: 0.9rem;
  margin-bottom: 0.9rem;
}

.audience-card-dark {
  background: linear-gradient(180deg, rgba(17, 25, 54, 0.98), rgba(27, 39, 81, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
}

.audience-card-dark h2,
.audience-card-dark li,
.audience-card-dark p {
  color: white;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card h3 {
  margin-top: 0.9rem;
  margin-bottom: 0.65rem;
}

.blueprint-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(73, 104, 255, 0.08), rgba(255, 255, 255, 0.98));
}

.blueprint-card strong {
  font-size: 1.1rem;
  color: var(--ink);
}

.stat-card {
  background: rgba(255, 255, 255, 0.94);
}

.accent-card {
  background: linear-gradient(135deg, rgba(255, 140, 115, 0.18), rgba(255, 213, 106, 0.18));
}

.testimonial-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
}

.testimonial {
  background: rgba(255, 255, 255, 0.96);
}

.testimonial p {
  font-size: 1.08rem;
  line-height: 1.8;
}

.featured {
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(231,237,255,0.92));
}

.placeholder-card {
  border-style: dashed;
}

.price-card ul,
.join-option ul {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.price {
  margin-top: 0.6rem;
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1;
}

.price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-left: 0.35rem;
}

.featured-price {
  position: relative;
  transform: translateY(-0.35rem);
  background: linear-gradient(180deg, rgba(73, 104, 255, 0.08), rgba(255, 255, 255, 0.98));
  border-color: rgba(73, 104, 255, 0.24);
}

.faq-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.faq-list details {
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 24, 47, 0.08);
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}

details p {
  margin-top: 0.9rem;
}

.disclaimer-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.disclaimer-grid p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.footer {
  padding: 1.6rem 0 3rem;
}

.footer-inner {
  grid-template-columns: 1fr auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 24, 47, 0.08);
}

.footer p {
  font-size: 0.92rem;
}

.join-page {
  min-height: 100vh;
}

.join-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
}

.join-option {
  background: rgba(255, 255, 255, 0.97);
}

.join-option h2,
.join-option h3,
.join-option p,
.join-option li,
.join-option .tag,
.join-option .price,
.join-option .price span {
  color: var(--ink);
}

.join-option p,
.join-option li,
.join-option .price span {
  color: #424c69;
}

.join-option .price {
  margin-bottom: 1rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .curriculum-grid,
  .story-grid,
  .disclaimer-grid,
  .join-grid,
  .trust-grid,
  .faq-grid,
  .value-grid,
  .testimonial-grid,
  .pricing-grid,
  .footer-inner,
  .audience-grid,
  .blueprint-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .join-grid h1,
  .section-heading h2,
  .story-card h2,
  .disclaimer-grid h2,
  .curriculum-panel h3,
  .join-option h2 {
    max-width: none;
  }

  .hero-proof-row {
    grid-template-columns: 1fr;
  }

  .floating-quote {
    position: relative;
    width: 100%;
    right: auto;
    margin-top: 1rem;
  }
}

@media (max-width: 760px) {
  .topbar {
    position: static;
  }

  .topbar-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 1rem 0;
  }

  .nav {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .section-light,
  .section-dark,
  .section-soft-blue {
    padding: 4.5rem 0;
  }

  .hero-copy h1,
  .join-grid h1 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .chart-area {
    min-height: 280px;
  }
}


/* Asset-driven prototype pass */
.chart-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chart-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 42, 0.06), rgba(11, 18, 42, 0.28));
}

.chart-grid {
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
}

.chart-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.floating-quote {
  padding: 0;
  overflow: hidden;
}

.floating-quote-copy {
  padding: 1rem 1.2rem;
}

.story-photo-frame,
.mentor-card {
  overflow: hidden;
  border-radius: 24px;
}

.story-photo-frame {
  margin: 1rem 0 1.2rem;
  min-height: 260px;
}

.story-photo,
.mentor-photo,
.testimonial-image {
  width: 100%;
  object-fit: cover;
}

.story-photo {
  height: 320px;
}

.mentor-card {
  padding: 0;
}

.mentor-photo {
  height: 260px;
}

.mentor-copy {
  padding: 1.2rem 1.5rem 1.5rem;
}

.media-testimonial {
  overflow: hidden;
}

.testimonial-image {
  height: 220px;
  margin-top: 0.9rem;
  margin-bottom: 1rem;
  border-radius: 20px;
}

.join-portrait {
  width: min(280px, 100%);
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 1rem;
  border-radius: 20px;
  display: block;
}

/* Final sales page v1 additions — 2026-04-24 */
.sales-letter-hero .hero-copy h1 {
  max-width: 12ch;
}

.value-section .section-heading {
  margin-bottom: 2rem;
}

.value-table {
  overflow: hidden;
  border: 1px solid rgba(18, 24, 47, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
}

.value-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, auto);
  gap: 1rem;
  align-items: center;
  padding: 1.05rem 1.25rem;
  border-bottom: 1px solid rgba(18, 24, 47, 0.08);
}

.value-row:last-child {
  border-bottom: 0;
}

.value-row span {
  color: #424c69;
  line-height: 1.5;
}

.value-row strong {
  color: var(--ink);
  text-align: right;
}

.value-row-head {
  background: linear-gradient(135deg, rgba(73, 104, 255, 0.1), rgba(102, 214, 180, 0.12));
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
}

.value-row-total {
  background: var(--navy);
}

.value-row-total span,
.value-row-total strong {
  color: white;
  font-size: 1.05rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.quote-grid blockquote {
  margin: 0;
  padding: 1.25rem;
  border: 1px solid rgba(73, 104, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.55;
  box-shadow: 0 16px 36px rgba(17, 25, 54, 0.08);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.fit-card {
  padding: 2rem;
  border: 1px solid rgba(255, 140, 115, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
}

.fit-card-positive {
  border-color: rgba(102, 214, 180, 0.26);
}

.fit-card ul {
  margin-top: 1rem;
  padding-left: 1.1rem;
}

.fit-card li + li {
  margin-top: 0.8rem;
}

.commitment-panel,
.ps-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
}

.ps-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.ps-card p + p,
.commitment-panel p + p {
  margin-top: 1rem;
}

.section-dark .ps-card p {
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 900px) {
  .quote-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .value-row {
    grid-template-columns: 1fr;
  }

  .value-row strong {
    text-align: left;
  }
}

/* Final sales-copy deployment additions */
.hero-copy .hero-lead strong,
.cta-section strong {
  color: inherit;
}

.section-support {
  margin-top: 1rem;
  max-width: 58ch;
}

.value-table-wrap {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 26, 52, 0.08);
}

.value-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.value-table th,
.value-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(17, 26, 52, 0.08);
  color: var(--ink-soft);
}

.value-table th {
  color: var(--ink);
  background: rgba(78, 109, 255, 0.08);
  font-weight: 800;
}

.value-table td:last-child,
.value-table th:last-child {
  text-align: right;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

.value-table tr:last-child td {
  border-bottom: 0;
}

.total-row td {
  background: rgba(13, 23, 52, 0.04);
  font-weight: 800;
}

.academy-row td {
  background: linear-gradient(135deg, rgba(78, 109, 255, 0.12), rgba(110, 217, 188, 0.13));
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

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

.check-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.15rem;
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
}

.yes-list li::before {
  content: "✓";
  background: rgba(110, 217, 188, 0.2);
  color: #08795e;
}

.no-list li::before {
  content: "×";
  background: rgba(255, 142, 115, 0.2);
  color: #a43d25;
}

.quote-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-grid blockquote {
  margin: 0;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 26, 52, 0.08);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
  box-shadow: var(--shadow);
}

.guarantee-section .blueprint-card p + p,
.ps-section .proof-card p + p {
  margin-top: 0.85rem;
}

.footer strong {
  color: inherit;
}

@media (max-width: 760px) {
  .three-card-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .value-table th,
  .value-table td {
    padding: 0.85rem;
    font-size: 0.88rem;
  }
}
