/* ═══════════════════════════════════════
   AI Literacy Lab — style.css
   Palette: soft grey · sky blue · gold
═══════════════════════════════════════ */

:root {
  --ink:        #1a1f2a;
  --dark:       #212630;
  --mid:        #3d4455;
  --muted:      #5e6878;
  --faint:      #8a96a8;
  --grey-100:   #eef0f4;
  --grey-50:    #f6f7f9;
  --white:      #ffffff;
  --blue:       #84b8e0;
  --blue-dk:    #4a8fc2;
  --blue-deep:  #2e6fa3;
  --blue-wash:  #eaf4fb;
  --gold:       #c8973a;
  --gold-lt:    #dbb14a;
  --gold-dk:    #9a7028;
  --gold-wash:  #faf4e8;
  --rule:       rgba(132,184,224,0.16);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--mid);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  transition: all .4s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  padding: .85rem 2.5rem;
  box-shadow: 0 1px 0 var(--grey-100);
}
.nav-logo {
  display: flex; align-items: center; gap: .65rem; text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 38px; width: auto; transition: height .3s; }
.nav.scrolled .nav-logo img { height: 30px; }
.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: .95rem; font-weight: 700; letter-spacing: .01em;
  color: rgba(255,255,255,.9); transition: color .3s;
}
.nav.scrolled .nav-logo span { color: var(--ink); }
.nav-links {
  display: flex; gap: 2rem;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.nav.scrolled .nav-links { opacity: 1; pointer-events: all; }
.nav-links a {
  font-size: .82rem; font-weight: 500; color: var(--muted); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  padding: .5rem 1.3rem;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 3px;
  transition: all .3s;
  flex-shrink: 0;
  background: transparent;
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.nav.scrolled .nav-cta { color: var(--gold-dk); border-color: var(--gold); }
.nav.scrolled .nav-cta:hover { background: var(--gold); color: var(--white); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(155deg, #1a1f2a 0%, #242a38 50%, #2a3245 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 6rem 2rem 4rem; text-align: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 40% 50%, rgba(132,184,224,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 85% 20%, rgba(200,151,58,0.07) 0%, transparent 55%);
}
.hero::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--gold-lt), var(--blue), transparent);
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero-logo { margin-bottom: 1.5rem; opacity: 0; animation: rise .9s ease forwards .1s; }
.hero-logo img {
  height: 86px; width: auto;
  filter: drop-shadow(0 4px 24px rgba(132,184,224,0.35));
}
.hero-kicker {
  font-size: .7rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-bottom: 2rem;
  opacity: 0; animation: rise .9s ease forwards .25s;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem); font-weight: 900; line-height: 1.1;
  color: var(--white); letter-spacing: -.02em; margin-bottom: 1.5rem;
  opacity: 0; animation: rise .9s ease forwards .42s;
}
.hero h1 em { font-style: italic; color: var(--blue); }
.hero-sub {
  font-size: 1.1rem; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto 3rem;
  opacity: 0; animation: rise .9s ease forwards .58s;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: rise .9s ease forwards .72s;
}
.hero-fine {
  font-size: .72rem; color: rgba(255,255,255,0.28); margin-top: 1.25rem;
  opacity: 0; animation: rise .9s ease forwards .85s;
}
.hero-fine strong { color: var(--gold-lt); font-weight: 500; }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--white); background: var(--gold);
  padding: .95rem 2.2rem; border-radius: 3px; border: 1px solid var(--gold);
  text-decoration: none; transition: all .3s;
}
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(200,151,58,0.3); }

.btn-ghost {
  display: inline-block;
  font-size: .82rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); background: transparent;
  padding: .92rem 1.8rem; border-radius: 3px; border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none; transition: all .3s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

/* ── VIDEO ── */
.video-section {
  background: var(--dark);
  padding: 4rem 2rem 5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.video-eyebrow {
  font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-lt); text-align: center; margin-bottom: 1.75rem;
}
.video-wrap {
  max-width: 840px; margin: 0 auto;
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 4px;
  box-shadow:
    0 4px 16px rgba(0,0,0,0.4),
    0 16px 64px rgba(0,0,0,0.5),
    0 0 0 1px rgba(132,184,224,0.12);
}
.video-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}

/* ── STATS ── */
.stats-bar {
  background: var(--grey-50);
  border-top: 1px solid var(--grey-100); border-bottom: 1px solid var(--grey-100);
  padding: 2.5rem 2rem;
}
.stats-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; text-align: center;
}
.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 900; color: var(--blue-deep);
  line-height: 1; margin-bottom: .4rem;
}
.stat-l { font-size: .84rem; font-weight: 400; color: var(--muted); line-height: 1.5; }
.stat-s { font-size: .66rem; color: var(--faint); margin-top: .25rem; }

/* ── SHARED ── */
.wrap        { max-width: 1060px; margin: 0 auto; padding: 0 2rem; }
.wrap-narrow { max-width: 700px;  margin: 0 auto; padding: 0 2rem; }
.section     { padding: 5.5rem 2rem; }
.section-white { background: var(--white); }
.section-grey  { background: var(--grey-50); }
.section-dark  { background: var(--dark); }

.overline {
  font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue-deep); margin-bottom: 1.1rem;
}
.overline--light { color: var(--blue); }

.sh2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700;
  color: var(--ink); line-height: 1.2; margin-bottom: 1rem; letter-spacing: -.01em;
}
.sh2--light { color: var(--white); }

.lead {
  font-size: 1.02rem; font-weight: 300; color: var(--muted); line-height: 1.85; margin-bottom: 3rem;
}
.lead--light { color: rgba(255,255,255,0.55); }

/* ── REFRAME ── */
.reframe-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem;
}
.reframe-card {
  background: var(--grey-50); border: 1px solid var(--grey-100);
  border-radius: 6px; padding: 2rem;
}
.reframe-card--alt {
  background: var(--blue-wash); border-color: rgba(132,184,224,0.25);
}
.reframe-label {
  font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 1rem;
}
.reframe-label--alt { color: var(--blue-deep); }
.reframe-card p {
  font-size: .96rem; font-weight: 300; color: var(--muted); line-height: 1.82; margin-bottom: .75rem;
}
.reframe-card p:last-child { margin-bottom: 0; }
.reframe-problem { color: var(--faint) !important; font-style: italic; }
.reframe-highlight { color: var(--blue-deep) !important; font-weight: 500 !important; }

.soundboard-block {
  background: var(--dark); border-radius: 6px; padding: 2.5rem;
}
.soundboard-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--white);
  margin-bottom: 1rem;
}
.soundboard-block p {
  font-size: .98rem; font-weight: 300; color: rgba(255,255,255,0.55);
  line-height: 1.85; margin-bottom: .85rem;
}
.soundboard-block p:last-child { margin-bottom: 0; }

/* ── COMMUNITY ── */
.community-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.community-card {
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: 6px; padding: 1.75rem;
  border-top: 3px solid var(--blue-wash);
  transition: all .25s;
}
.community-card:hover { border-top-color: var(--blue); box-shadow: 0 4px 20px rgba(132,184,224,0.12); }
.community-icon { font-size: 1.4rem; margin-bottom: .85rem; display: block; }
.community-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem;
}
.community-card p { font-size: .9rem; font-weight: 300; color: var(--muted); line-height: 1.75; }

/* ── COURSES ── */
.courses-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.course-card {
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: 6px; padding: 0; overflow: hidden;
  display: flex; transition: all .3s;
}
.course-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.07); border-color: var(--blue); }
.course-card--coming { opacity: .8; }
.course-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; color: var(--grey-100);
  writing-mode: vertical-rl; text-orientation: mixed;
  padding: 1.75rem 1rem; background: var(--grey-50);
  border-right: 1px solid var(--grey-100);
  display: flex; align-items: center; justify-content: flex-start;
  min-width: 56px; flex-shrink: 0;
  transition: color .3s;
}
.course-card:hover .course-num { color: var(--blue); }
.course-content { padding: 1.75rem; flex: 1; }
.course-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: .3rem;
}
.course-tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-deep); margin-bottom: .85rem; display: block;
}
.course-desc {
  font-size: .9rem; font-weight: 300; color: var(--muted); line-height: 1.75;
  margin-bottom: 1.1rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--grey-100);
}
.course-lessons { list-style: none; }
.course-lessons li {
  font-size: .84rem; font-weight: 300; color: var(--muted);
  padding: .28rem 0 .28rem 1rem; border-bottom: 1px solid var(--grey-50);
  position: relative;
}
.course-lessons li::before { content: '–'; position: absolute; left: 0; color: var(--blue); }
.course-lessons li.coming { color: var(--faint); font-style: italic; }
.course-lessons li.coming::before { content: '·'; }
.coming-badge {
  display: inline-block; margin-top: 1rem;
  font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-dk); background: var(--gold-wash);
  border: 1px solid rgba(200,151,58,0.25); border-radius: 2px;
  padding: .25rem .75rem;
}

/* ── TESTIMONIALS ── */
.tl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.tl-card {
  background: var(--white); border: 1px solid var(--grey-100);
  border-radius: 6px; padding: 2rem;
}
.tl-card--feat {
  grid-column: span 2;
  background: var(--blue-wash); border-color: rgba(132,184,224,0.3);
  border-top: 3px solid var(--blue);
}
.tl-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-style: italic; font-weight: 400;
  color: var(--ink); line-height: 1.7; margin-bottom: 1rem;
}
.tl-card--feat blockquote { font-size: 1.22rem; }
.tl-card cite {
  font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--faint); font-style: normal;
}

/* ── PRICING ── */
.early-access-bar {
  background: rgba(200,151,58,0.1);
  border: 1px solid rgba(200,151,58,0.2);
  border-radius: 4px; padding: .9rem 1.5rem;
  margin-bottom: 3rem; text-align: center;
}
.early-access-inner {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,0.55); font-weight: 300;
}
.early-star { color: var(--gold-lt); font-size: .9rem; }
.early-code {
  font-family: monospace; font-size: .95rem; font-weight: 700;
  color: var(--gold-lt); letter-spacing: .1em;
  background: rgba(219,177,74,0.12); padding: .2rem .7rem; border-radius: 2px;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem;
  max-width: 900px; margin: 0 auto 3rem;
}
.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; overflow: hidden;
  position: relative; transition: transform .25s;
}
.price-card:hover { transform: translateY(-3px); }
.price-card--pop {
  background: rgba(255,255,255,0.07);
  border-color: var(--gold);
}
.price-popular {
  position: absolute; top: -1px; right: 20px;
  background: var(--gold); color: var(--white);
  font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem .75rem; border-radius: 0 0 3px 3px;
}
.price-card-head {
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.price-plan {
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: .3rem;
}
.price-trial-note {
  font-size: .72rem; color: var(--blue); font-weight: 400;
}
.price-card-body { padding: 1.75rem; text-align: center; }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem; font-weight: 900; color: var(--white);
  line-height: 1; margin-bottom: .2rem; letter-spacing: -.02em;
}
.price-per { font-size: .78rem; color: rgba(255,255,255,0.38); margin-bottom: .75rem; }
.price-saving {
  font-size: .8rem; font-weight: 500; color: var(--gold-lt);
  margin-bottom: 1.5rem; min-height: 2.4em;
  display: flex; align-items: center; justify-content: center;
}
.price-saving--none { color: rgba(255,255,255,0.3); font-weight: 300; }
.price-btn {
  display: block;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--white); background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px; padding: .85rem 1.5rem;
  text-decoration: none; transition: all .3s; text-align: center;
  margin-bottom: .75rem;
}
.price-btn:hover { background: rgba(255,255,255,0.18); }
.price-btn--gold { background: var(--gold); border-color: var(--gold); }
.price-btn--gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.price-cancel { font-size: .68rem; color: rgba(255,255,255,0.25); }

.pricing-includes {
  max-width: 680px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2.5rem; text-align: center;
}
.pricing-includes-title {
  font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 1.25rem;
}
.pricing-includes-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem;
}
.pricing-includes-grid span {
  font-size: .85rem; font-weight: 300; color: rgba(255,255,255,0.5);
  padding: .4rem .5rem;
}

/* ── ADD-ONS ── */
.addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 800px; }
.addon-card {
  background: var(--grey-50); border: 1px solid var(--grey-100);
  border-radius: 6px; padding: 2rem;
  border-top: 3px solid var(--gold-lt);
}
.addon-tag {
  font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-dk); display: block; margin-bottom: .75rem;
}
.addon-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem;
}
.addon-card p {
  font-size: .92rem; font-weight: 300; color: var(--muted); line-height: 1.75; margin-bottom: 1.1rem;
}
.addon-link {
  font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--blue-deep); text-decoration: none;
}
.addon-link:hover { color: var(--gold); }

/* ── FINAL CTA ── */
.final-cta-inner { max-width: 600px; margin: 0 auto; }

/* ── TERMS ── */
.terms-inner { max-width: 660px; margin: 0 auto; }
.terms-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-bottom: 1.75rem;
}
.terms-inner h3 {
  font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); margin-top: 2rem; margin-bottom: .5rem;
}
.terms-inner p {
  font-size: .88rem; font-weight: 300; color: var(--muted); line-height: 1.82; margin-bottom: .75rem;
}
.terms-inner a { color: var(--blue-deep); }

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start;
}
.about-text p {
  font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.88;
  margin-bottom: 1.25rem;
}
.about-links { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.about-card-wrap {
  background: var(--grey-50); border: 1px solid var(--grey-100);
  border-radius: 8px; overflow: hidden;
  border-top: 3px solid var(--gold-lt);
}
.about-card-inner { padding: 2.25rem; }
.about-initials {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--blue-wash); border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--blue-deep);
  margin-bottom: 1rem;
}
.about-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: .2rem;
}
.about-role { font-size: .8rem; color: var(--faint); font-weight: 400; margin-bottom: 1.25rem; }
.about-divider { width: 100%; height: 1px; background: var(--grey-100); margin-bottom: 1.25rem; }
.about-facts { list-style: none; margin-bottom: 1.5rem; }
.about-facts li {
  font-size: .88rem; font-weight: 300; color: var(--muted);
  padding: .32rem 0 .32rem 1.1rem; border-bottom: 1px solid var(--grey-100);
  position: relative;
}
.about-facts li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-size: .75rem; }
.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: .95rem; font-style: italic; font-weight: 400;
  color: var(--blue-deep); line-height: 1.6;
  padding-top: 1.25rem; border-top: 1px solid var(--grey-100);
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 2.5rem 2rem; text-align: center;
}
.footer img { height: 32px; width: auto; margin-bottom: .65rem; opacity: .5; display: block; margin-left: auto; margin-right: auto; }
.footer p { font-size: .76rem; color: rgba(255,255,255,0.3); }
.footer a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer a:hover { color: var(--gold-lt); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .community-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-includes-grid { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: .75rem 1.5rem; }
  .nav-links { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .reframe-grid { grid-template-columns: 1fr; }
  .tl-grid { grid-template-columns: 1fr; }
  .tl-card--feat { grid-column: span 1; }
  .addon-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 4rem 1.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .course-card { flex-direction: column; }
  .course-num { writing-mode: horizontal-tb; padding: .75rem 1.5rem; min-width: auto; border-right: none; border-bottom: 1px solid var(--grey-100); font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .pricing-includes-grid { grid-template-columns: 1fr; }
}
