/* ─── Reset & Base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #080808;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ─── CSS Variables ───────────────────────────────────────────────────────── */
:root {
  --bg-dark:       #080808;
  --bg-card:       #111111;
  --bg-card-alt:   #161616;
  --bg-light:      #ffffff;
  --bg-muted:      #f5f5f5;
  --text-white:    #ffffff;
  --text-dark:     #111111;
  --muted-dark:    #888888;
  --muted-light:   #666666;
  --border-dark:   #1e1e1e;
  --border-mid:    #2e2e2e;
  --border-light:  #e5e5e5;
  --nav-h:         64px;
  --pad:           96px;
  --max-w:         1180px;
  --radius:        6px;
  --radius-lg:     12px;
}

/* ─── Typography ──────────────────────────────────────────────────────────── */
h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h3 { font-size: 1.125rem; font-weight: 600; line-height: 1.3; }
p { font-size: 1rem; line-height: 1.7; }
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── Layout ──────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: var(--pad) 0; }
.dark  { background: var(--bg-dark);  color: var(--text-white); }
.light { background: var(--bg-light); color: var(--text-dark); }
.muted { background: var(--bg-muted); color: var(--text-dark); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary  { background: #fff;  color: #000;  border-color: #fff; }
.btn-primary:hover  { background: #e0e0e0; border-color: #e0e0e0; }
.btn-outline  { background: transparent; color: #fff; border-color: rgba(255,255,255,0.28); }
.btn-outline:hover  { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.04); }
.btn-dark-outline { background: transparent; color: var(--text-dark); border-color: var(--border-light); }
.btn-dark-outline:hover { border-color: #999; }
.btn-sm  { padding: 9px 18px; font-size: 0.875rem; }
.btn-lg  { padding: 16px 36px; font-size: 1.0625rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Nav ─────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.nav-logo {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-dark);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.15s;
}
.nav-links a:hover { color: #fff; }
.nav-links .btn { padding: 8px 18px; font-size: 0.875rem; margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #0a0a0a;
  border-bottom: 1px solid var(--border-dark);
  padding: 12px 28px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
}
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-dark);
  border-bottom: 1px solid var(--border-dark);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #fff; }
.mobile-menu.open { display: flex; }

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 72px) 0 88px;
}
.hero-eyebrow { color: var(--muted-dark); margin-bottom: 24px; }
.hero h1 { margin-bottom: 28px; }
.hero-sub {
  font-size: 1.1875rem;
  color: var(--muted-dark);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 44px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Section header ──────────────────────────────────────────────────────── */
.section-head { margin-bottom: 60px; }
.section-head .eyebrow { margin-bottom: 16px; color: var(--muted-dark); }
.section-head h2 { margin-bottom: 16px; }
.section-head p {
  font-size: 1.0625rem;
  color: var(--muted-dark);
  max-width: 500px;
  line-height: 1.65;
}
.section-head.centered { text-align: center; }
.section-head.centered p { margin: 0 auto; }
.light .section-head .eyebrow { color: var(--muted-light); }
.light .section-head p { color: var(--muted-light); }

/* ─── Feature Cards ───────────────────────────────────────────────────────── */
.feature-card {
  padding: 32px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.feature-card:hover {
  border-color: #ccc;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-muted);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}
.feature-card h3 { margin-bottom: 10px; color: var(--text-dark); }
.feature-card p { color: var(--muted-light); font-size: 0.9375rem; line-height: 1.6; }

/* ─── Course Tier Cards — Mini Preview (home page) ────────────────────────── */
.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.15s, background 0.15s;
  cursor: pointer;
}
.tier-card:hover { border-color: var(--border-mid); background: var(--bg-card-alt); }
.tier-card.featured { border-color: #3a3a3a; background: #161616; }
.tier-tier {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.tier-price {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.tier-price sub { font-size: 0.75rem; font-weight: 500; vertical-align: baseline; color: var(--muted-dark); }
.tier-name {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}
.tier-blurb {
  font-size: 0.8125rem;
  color: var(--muted-dark);
  line-height: 1.5;
  flex: 1;
}
.tier-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tier-cta:hover { text-decoration: underline; }

/* ─── Full Course Cards (courses page) ────────────────────────────────────── */
.course-wrap { display: flex; flex-direction: column; gap: 24px; }

.course-card {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.course-card-top {
  padding: 40px 44px;
  background: var(--bg-card);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.course-badge {
  display: inline-block;
  background: #1e1e1e;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 20px;
}
.course-price-block { text-align: right; }
.course-price {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.course-price-note {
  font-size: 0.8125rem;
  color: var(--muted-dark);
  margin-top: 4px;
}
.course-title {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
.course-sub {
  font-size: 1rem;
  color: var(--muted-dark);
  line-height: 1.6;
  max-width: 540px;
}
.course-card-body {
  padding: 36px 44px 40px;
  background: var(--bg-dark);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  border-top: 1px solid var(--border-dark);
}
.includes-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 16px;
}
.includes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.includes-list li {
  font-size: 0.9375rem;
  color: var(--muted-dark);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.includes-list li::before {
  content: '—';
  flex-shrink: 0;
  color: #555;
}
.course-cta-block { flex-shrink: 0; width: 220px; }
.course-cta-block .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.course-cta-block p { font-size: 0.8125rem; color: var(--muted-dark); text-align: center; line-height: 1.4; }

/* ─── Application Form ────────────────────────────────────────────────────── */
.apply-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}
.apply-info h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 16px; }
.apply-info p { color: var(--muted-dark); font-size: 0.9375rem; line-height: 1.65; margin-bottom: 24px; }
.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--muted-dark);
  line-height: 1.5;
}
.check-list li span.check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #1e1e1e;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  font-size: 10px;
}

.apply-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.apply-form-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.apply-form-card > p { font-size: 0.875rem; color: var(--muted-dark); margin-bottom: 28px; }

.form-stack { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #0e0e0e;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: #ffffff;
  transition: border-color 0.15s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: #444; }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}
.form-group select option { background: #111; }
.form-note {
  font-size: 0.8125rem;
  color: var(--muted-dark);
  text-align: center;
  line-height: 1.5;
  margin-top: 4px;
}

/* ─── Calendly Fallback Bar ───────────────────────────────────────────────── */
.calendly-bar {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}
.calendly-bar p { font-size: 0.9375rem; color: var(--muted-dark); }
.calendly-bar strong { color: #fff; }

/* ─── Testimonial / Quote ─────────────────────────────────────────────────── */
.quote-block {
  border-left: 2px solid var(--border-mid);
  padding-left: 24px;
  margin: 0;
}
.quote-block p {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--muted-dark);
  line-height: 1.65;
  margin-bottom: 12px;
}
.quote-attr { font-size: 0.875rem; font-weight: 600; color: #aaa; }

/* ─── Stats Bar ───────────────────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border-dark);
  gap: 1px;
  margin-top: 60px;
}
.stat-cell {
  background: var(--bg-card);
  padding: 28px 24px;
  text-align: center;
}
.stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.stat-lbl {
  font-size: 0.8125rem;
  color: var(--muted-dark);
  margin-top: 4px;
}

/* ─── Marquee strip ───────────────────────────────────────────────────────── */
.strip {
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 18px 0;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  gap: 48px;
  font-size: 0.8125rem;
  color: var(--muted-dark);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 28px;
}
.strip-inner span { opacity: 0.6; }
.strip-inner span.dot { color: #444; }

/* ─── CTA Section ─────────────────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: var(--muted-light); margin-bottom: 36px; font-size: 1.0625rem; line-height: 1.65; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: #000;
  border-top: 1px solid var(--border-dark);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { display: block; margin-bottom: 12px; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted-dark);
  max-width: 260px;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-dark);
  padding: 5px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: #444;
  max-width: 580px;
  line-height: 1.6;
}
.footer-copy {
  font-size: 0.8125rem;
  color: #444;
  flex-shrink: 0;
}

/* ─── Page Hero (inner pages) ─────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 72px;
  background: var(--bg-dark);
}
.page-hero .eyebrow { color: var(--muted-dark); margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 1.125rem;
  color: var(--muted-dark);
  max-width: 560px;
  line-height: 1.65;
}
.page-hero-divider { border: none; border-top: 1px solid var(--border-dark); margin-top: 56px; }

/* ─── Divider ─────────────────────────────────────────────────────────────── */
hr.dark-hr  { border: none; border-top: 1px solid var(--border-dark); }
hr.light-hr { border: none; border-top: 1px solid var(--border-light); }

/* ─── Utility ─────────────────────────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.gap-12 { gap: 12px; }

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --max-w: 960px; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .course-card-top { grid-template-columns: 1fr; }
  .course-price-block { text-align: left; }
  .course-card-body { grid-template-columns: 1fr; }
  .course-cta-block { width: 100%; }
  .apply-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --pad: 64px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .grid-5 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stats-bar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .calendly-bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 540px) {
  .grid-5 { grid-template-columns: 1fr; }
  .course-card-top, .course-card-body { padding: 24px 20px; }
  .apply-form-card { padding: 24px 20px; }
}

/* ─── Proof / Credibility Bar ─────────────────────────────────────────────── */
.proof-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border-dark);
  gap: 1px;
}
.proof-cell {
  background: var(--bg-card);
  padding: 32px 36px;
}
.proof-stat {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: #fff;
}
.proof-desc {
  font-size: 0.875rem;
  color: var(--muted-dark);
  line-height: 1.55;
}

/* ─── Objection Cards ─────────────────────────────────────────────────────── */
.objection-card {
  padding: 32px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.objection-card .q {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.4;
}
.objection-card .a {
  font-size: 0.9375rem;
  color: var(--muted-dark);
  line-height: 1.7;
}

/* ─── Value Breakdown Rows ────────────────────────────────────────────────── */
.value-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr 140px;
  gap: 32px;
  align-items: start;
  padding: 32px 36px;
  border-bottom: 1px solid var(--border-dark);
}
.value-row:last-child { border-bottom: none; }
.value-row-price {
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.value-row-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-top: 6px;
}
.value-row-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.value-row-items li {
  font-size: 0.875rem;
  color: var(--muted-dark);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
}
.value-row-items li::before {
  content: '—';
  flex-shrink: 0;
  color: #444;
}
.value-row-outcome {
  font-size: 0.875rem;
  color: #aaa;
  font-style: italic;
  line-height: 1.55;
}
.value-row-action { display: flex; align-items: flex-start; padding-top: 2px; }

/* ─── Course Outcome Box ──────────────────────────────────────────────────── */
.outcome-box {
  background: #0a0a0a;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 20px;
}
.outcome-box .ob-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 6px;
}
.outcome-box .ob-text {
  font-size: 0.9rem;
  color: #bbb;
  line-height: 1.55;
}

/* ─── Pricing Stack Cards (light bg) ─────────────────────────────────────── */
.price-stack { display: flex; flex-direction: column; gap: 14px; }
.price-stack-row {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.price-stack-row.total {
  background: #f0f0f0;
  border-color: #d8d8d8;
}
.price-stack-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 4px;
}
.price-stack-desc {
  font-size: 0.875rem;
  color: var(--muted-light);
  line-height: 1.45;
}
.price-stack-amount {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  flex-shrink: 0;
}

/* ─── Accelerator Proof Block ────────────────────────────────────────────── */
.accel-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.accel-proof-cell {
  background: var(--bg-card);
  padding: 24px 28px;
}
.accel-proof-cell .num {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.accel-proof-cell .lbl {
  font-size: 0.8125rem;
  color: var(--muted-dark);
  line-height: 1.4;
}

/* ─── Responsive additions ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .value-row { grid-template-columns: 100px 1fr; gap: 20px; }
  .value-row-outcome { display: none; }
  .value-row-action { grid-column: 2; padding-top: 4px; }
  .proof-bar { grid-template-columns: 1fr; gap: 1px; }
  .accel-proof { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .proof-cell { padding: 24px; }
  .value-row { grid-template-columns: 1fr; gap: 12px; padding: 24px 20px; }
  .value-row-action { padding-top: 0; }
  .price-stack-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .accel-proof { grid-template-columns: 1fr 1fr; }
}
