/* ============================================================
   DARESNI — HOMEPAGE  (Sprint 1)
   No changes to variables, base, layout, components, navigation,
   pages, or responsive. This file owns homepage-only rules only.
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   1. HERO
───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
  padding-top: 72px;
}

/* subtle grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--ov-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--ov-grid) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* decorative glows */
.hero-glow {
  position: absolute;
  border-radius: var(--r-full);
  filter: blur(90px);
  pointer-events: none;
}
.hero-glow--maroon {
  width: 540px; height: 540px;
  background: var(--ov-maroon);
  top: -130px; right: -80px;
}
.hero-glow--gold {
  width: 340px; height: 340px;
  background: var(--ov-gold);
  bottom: -80px; left: -60px;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-block: var(--s20);
  text-align: center;
}

.hero__left {
    display:flex;
    flex-direction:column;
    align-items:center;
    width:100%;
    max-width:900px;
    gap:var(--s6);
}

/* badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  margin-top: var(--s2);
  gap: var(--s2);
  padding: var(--s2) var(--s4);
  background: rgba(255,209,102,0.12);
  border: 1px solid rgba(255,209,102,0.28);
  border-radius: var(--r-full);
  font-size: var(--tx-xs);
  font-weight: var(--w6);
  color: var(--gold);
  letter-spacing: 0.04em;
  width: fit-content;
}
.hero__proof + .hero__badge {
  margin-top: calc(var(--s6) * -0.8);
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: var(--r-full);
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.30; }
}

/* headline */
.hero__h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: var(--w8);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--white);
}
.hero__h1 mark {
  background: none;
  color: var(--gold);
}

/* sub */
.hero__sub {
  font-size: var(--tx-md);
  color: rgba(255,255,255,0.68);
  line-height: var(--lh-base);
  max-width: 490px;
  margin-bottom: var(--s1);
}

/* search */
.hero__search-wrap {
  width: 100%;
  max-width: 760px;
  margin-top: var(--s2);
  margin-bottom: var(--s5);
}
.hero__search-hints {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s2);
  margin-top: var(--s3);
}
.hero__hint {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-full);
  font-size: var(--tx-xs);
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
  text-decoration: none;
}
.hero__hint:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

/* CTAs */
.hero__ctas {
  margin-top: var(--s2);
  margin-bottom: var(--s2);
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
}

/* social proof */
.hero__proof {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  flex-wrap: nowrap;
  margin-top: var(--s3);
  margin-bottom: var(--s2);
  white-space: nowrap;
}
.hero__proof-text {
  margin: 0;
  font-size: var(--tx-sm);
  color: rgba(255,255,255,0.58);
  white-space: nowrap;
  line-height: 1;
}
.hero__proof-text strong { color: var(--white); font-weight: var(--w6); }

/* avatar stack */
.av-stack {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.av-stack .av {
  width: 34px; height: 34px;
  border-radius: var(--r-full);
  border: 2.5px solid var(--navy);
  margin-left: -9px;
  overflow: hidden;
  background: var(--navy-pale);
}
.av-stack .av:first-child { margin-left: 0; }

/* right — app screenshot frame */
.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block: var(--s2);
}
.phones-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 320px;
  margin: 0 auto;
}
.hero-phone-image {
  display: block;
  width: 100%;
  max-width: 285px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
}
.hero-phone-copy {
  margin-top: var(--s1);
  margin-bottom: var(--s2);
  max-width: 520px;
  text-align: center;
}

.hero-phone-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: var(--tx-xl);
  font-weight: var(--w7);
}

.hero-phone-copy p {
  margin-top: var(--s2);
  color: rgba(255,255,255,0.72);
  font-size: var(--tx-md);
  line-height: 1.6;
}
.hero-phone-image.is-changing {
  opacity: 0;
  transform: translateY(8px) scale(0.985);
}
.phone {
  position: absolute;
  border-radius: 32px;
  background: var(--navy-deep);
  border: 2px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-phone);
  overflow: hidden;
}
.phone--hero {
  width: 250px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
/* Screenshot area — swap src when real screenshots arrive */
.phone__screen {
  width: 100%;
  min-height: 380px;
  background: linear-gradient(175deg, #1A3468 0%, #112447 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  padding: var(--s5);
  position: relative;
}
.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
/* Placeholder UI shown when no screenshot image */
.phone__placeholder {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  width: 100%;
}
.ph-bar {
  height: 8px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.10);
}
.ph-bar--accent { background: rgba(155,27,43,0.45); width: 60%; }
.ph-bar--gold   { background: rgba(255,209,102,0.35); width: 40%; }
.ph-row { display: flex; align-items: center; gap: var(--s2); }
.ph-dot {
  width: 28px; height: 28px;
  border-radius: var(--r-full);
  flex-shrink: 0;
  background: var(--maroon);
}
.ph-dot--g { background: var(--gold); }
.ph-dot--n { background: rgba(255,255,255,0.15); }
.ph-line { height: 7px; border-radius: var(--r-full); background: rgba(255,255,255,0.11); flex: 1; }
.ph-line--s { flex: 0.55; }
.ph-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: var(--s3);
}
.ph-btn {
  height: 34px;
  border-radius: var(--r-full);
  background: var(--maroon);
  opacity: 0.80;
  margin-top: var(--s2);
}
/* Screenshot label */
.phone__label {
  position: absolute;
  bottom: var(--s3);
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: rgba(255,255,255,0.30);
  white-space: nowrap;
  letter-spacing: 0.06em;
  z-index: 3;
}

/* ─────────────────────────────────────────────────────────────
   2. QUICK CATEGORIES
───────────────────────────────────────────────────────────── */
/* Uses .card--category from components.css — no extra rules needed */

/* ─────────────────────────────────────────────────────────────
   3. WHY FAMILIES CHOOSE DARESNI
───────────────────────────────────────────────────────────── */
/* Uses .card--feature from components.css */

/* ─────────────────────────────────────────────────────────────
   4. PLATFORM IMPACT (stats band)
───────────────────────────────────────────────────────────── */
.stats-band {
  background: var(--navy);
  padding-block: var(--s20);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--ov-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--ov-grid) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s4);
}

/* ─────────────────────────────────────────────────────────────
   5. OUR JOURNEY
───────────────────────────────────────────────────────────── */
.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}
.journey-quote-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.journey-quote-accent {
  position: absolute;
  width: 100px; height: 100px;
  background: var(--maroon-pale);
  border-radius: var(--r-full);
  bottom: -20px; right: 10px;
  z-index: 0;
}
.quote-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s10) var(--s8);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 400px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.quote-card__open-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--maroon);
  opacity: 0.15;
  display: block;
  margin-bottom: var(--s2);
}
.quote-card__text {
  font-size: var(--tx-xl);
  font-weight: var(--w6);
  font-style: italic;
  color: var(--navy);
  line-height: var(--lh-snug);
  margin-bottom: var(--s5);
}
.quote-card__credit {
  font-size: var(--tx-sm);
  color: var(--text-light);
}
.journey-body {
  font-size: var(--tx-base);
  color: var(--text-sec);
  line-height: var(--lh-base);
  margin-bottom: var(--s4);
}

/* ─────────────────────────────────────────────────────────────
   6. FEATURED LEARNING
───────────────────────────────────────────────────────────── */
.learning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}
.learning-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--border-solid);
  transition: box-shadow var(--t-base) var(--ease),
              transform var(--t-base) var(--ease);
}
.learning-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.learning-card__header {
  padding: var(--s8) var(--s6) var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.learning-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.learning-card__title {
  font-size: var(--tx-lg);
  font-weight: var(--w7);
  color: var(--navy);
}
.learning-card__desc {
  font-size: var(--tx-sm);
  color: var(--text-sec);
  line-height: var(--lh-base);
  flex: 1;
}
.learning-card__footer {
  padding: var(--s4) var(--s6);
  border-top: 1px solid var(--border-solid);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.learning-card__count {
  font-size: var(--tx-xs);
  color: var(--text-light);
  font-weight: var(--w5);
}
.learning-card__cta {
  font-size: var(--tx-sm);
  font-weight: var(--w7);
  color: var(--maroon);
  display: flex;
  align-items: center;
  gap: var(--s1);
}
.learning-card__cta svg { width: 14px; height: 14px; transition: transform var(--t-fast); }
.learning-card:hover .learning-card__cta svg { transform: translateX(3px); }

/* ─────────────────────────────────────────────────────────────
   7. FEATURED EDUCATORS
───────────────────────────────────────────────────────────── */
.edu-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-solid);
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  transition: box-shadow var(--t-base) var(--ease),
              transform var(--t-base) var(--ease);
}
.edu-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.edu-card__top { display: flex; align-items: flex-start; gap: var(--s4); }
.edu-card__avatar {
  width: 64px; height: 64px;
  border-radius: var(--r-full);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--navy-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--tx-xl);
  font-weight: var(--w8);
  color: var(--white);
  border: 3px solid var(--border-solid);
}
.edu-card__name {
  font-size: var(--tx-base);
  font-weight: var(--w7);
  color: var(--navy);
  margin-bottom: 2px;
}
.edu-card__role {
  font-size: var(--tx-sm);
  color: var(--text-light);
  margin-bottom: var(--s2);
}
.edu-card__rating {
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: var(--tx-sm);
  font-weight: var(--w6);
  color: var(--gold-dark);
}
.edu-card__rating span { color: var(--text-light); font-weight: var(--w4); }
.edu-card__meta {
  font-size: var(--tx-sm);
  color: var(--text-sec);
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}
.edu-card__meta-row {
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.edu-card__meta-icon { font-size: 13px; flex-shrink: 0; }
.edu-card__tags { display: flex; flex-wrap: wrap; gap: var(--s2); }
.edu-card__footer {
  margin-top: auto;
  padding-top: var(--s4);
  border-top: 1px solid var(--border-solid);
}

/* ─────────────────────────────────────────────────────────────
   8. POPULAR SUBJECTS
───────────────────────────────────────────────────────────── */
.subjects-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s3);
}
.subject-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  padding: var(--s5) var(--s3);
  background: var(--white);
  border: 1px solid var(--border-solid);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--text-mid);
  text-align: center;
  transition: all var(--t-base) var(--ease);
}
.subject-card:hover {
  background: var(--maroon-pale);
  border-color: var(--maroon);
  color: var(--maroon-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.subject-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  background: var(--bg);
  transition: background var(--t-fast);
}
.subject-card:hover .subject-card__icon { background: rgba(155,27,43,0.08); }
.subject-card__name {
  font-size: var(--tx-sm);
  font-weight: var(--w6);
  line-height: 1.2;
}

/* ─────────────────────────────────────────────────────────────
   9. HOW IT WORKS
───────────────────────────────────────────────────────────── */
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
  position: relative;
}
/* Connector line between steps */
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 2px;
  background: linear-gradient(90deg, var(--maroon) 0%, rgba(155,27,43,0.15) 100%);
  z-index: 0;
}
.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s4);
  position: relative;
  z-index: 1;
}
.hiw-step__num {
  width: 72px; height: 72px;
  border-radius: var(--r-full);
  background: var(--white);
  border: 2px solid var(--border-solid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-base) var(--ease);
  position: relative;
}
.hiw-step__num-inner {
  width: 52px; height: 52px;
  border-radius: var(--r-full);
  background: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-maroon);
  transition: transform var(--t-base) var(--ease);
}
.hiw-step:hover .hiw-step__num-inner { transform: scale(1.08); }
.hiw-step__title {
  font-size: var(--tx-md);
  font-weight: var(--w7);
  color: var(--navy);
  margin-bottom: var(--s1);
}
.hiw-step__desc {
  font-size: var(--tx-sm);
  color: var(--text-sec);
  line-height: var(--lh-base);
  max-width: 200px;
  margin-inline: auto;
}

/* ─────────────────────────────────────────────────────────────
   10. REAL STORIES
───────────────────────────────────────────────────────────── */
.story-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s8);
  border: 1px solid var(--border-solid);
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  transition: box-shadow var(--t-base) var(--ease),
              transform var(--t-base) var(--ease);
}
.story-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.story-card__label {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.25rem 0.8rem;
  border-radius: var(--r-full);
  font-size: var(--tx-xs);
  font-weight: var(--w7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}
.story-card__label--parent   { background: var(--maroon-pale); color: var(--maroon); }
.story-card__label--tutor    { background: var(--navy-pale);   color: var(--navy); }
.story-card__label--institute{ background: rgba(255,209,102,0.14); color: #7A5F00; }
.story-card__quote {
  position: relative;
  flex: 1;
  margin: 0;
  padding: var(--s6);
  background: var(--off-white);
  border: 1px solid var(--border-solid);
  border-radius: var(--r-lg);
  color: var(--text-sec);
  font-size: var(--tx-sm);
  line-height: 1.75;
}

.story-card__quote::before {
  content: "“";
  position: absolute;
  top: 0.1rem;
  left: var(--s4);
  color: var(--maroon);
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  opacity: 0.18;
}

.story-card__quote p {
  position: relative;
  margin: 0;
}

.story-card__quote p + p {
  margin-top: var(--s4);
}

.story-card__quote--preview {
  background: rgba(255, 209, 102, 0.08);
}
.story-card__bottom {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding-top: var(--s4);
  border-top: 1px solid var(--border-solid);
}
.story-card__avatar {
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  background: var(--navy-pale);
  flex-shrink: 0;
}
.story-card__name { font-size: var(--tx-sm); font-weight: var(--w6); color: var(--navy); }
.story-card__since { font-size: var(--tx-xs); color: var(--text-light); }

/* ─────────────────────────────────────────────────────────────
   11. FEATURED IN
───────────────────────────────────────────────────────────── */
.press-section { background: var(--white); }
.press-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-bottom: var(--s10);
}
.press-cat-card {
  background: var(--white);
  border: 1px solid var(--border-solid);
  border-radius: var(--r-lg);
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  text-align: center;
  transition: box-shadow var(--t-base) var(--ease);
}
.press-cat-card:hover { box-shadow: var(--shadow-sm); }
.press-cat-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.press-cat-card__title {
  font-size: var(--tx-base);
  font-weight: var(--w7);
  color: var(--navy);
}
.press-cat-card__note {
  font-size: var(--tx-xs);
  color: var(--text-light);
}

/* ─────────────────────────────────────────────────────────────
   12. DOWNLOAD APP
───────────────────────────────────────────────────────────── */
.download-section {
  background: var(--grad-hero);
  padding-block: var(--s24);
  position: relative;
  overflow: hidden;
}
.dl-glow {
  position: absolute;
  border-radius: var(--r-full);
  filter: blur(80px);
  pointer-events: none;
}
.dl-glow--maroon {
  width: 420px; height: 420px;
  background: var(--ov-maroon);
  top: -100px; right: -80px;
}
.dl-glow--gold {
  width: 300px; height: 300px;
  background: var(--ov-gold);
  bottom: -70px; left: -50px;
}
.download-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
  align-items: center;
}

.download-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s6);
  text-align: center;
}
.dl-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: var(--w8);
  color: var(--white);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}
.dl-title mark { background: none; color: var(--gold); }
.dl-sub {
  font-size: var(--tx-md);
  color: rgba(255,255,255,0.65);
  line-height: var(--lh-base);
  max-width: 420px;
  margin-inline: auto;
}
.dl-benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
}
.dl-benefit {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--tx-sm);
  color: rgba(255,255,255,0.75);
  font-weight: var(--w5);
}
.dl-benefit__check {
  width: 22px; height: 22px;
  border-radius: var(--r-full);
  background: rgba(34,197,94,0.20);
  border: 1px solid rgba(34,197,94,0.40);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
}
.dl-btns {
  display: flex;
  justify-content: center;
  gap: var(--s3);
  flex-wrap: wrap;
}
.download-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s6);
}
/* QR placeholder */
.qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
}
.qr-box {
  width: 140px; height: 140px;
  background: var(--white);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: var(--s4);
}
.qr-box__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  width: 80px;
}
.qr-box__cell {
  aspect-ratio: 1;
  border-radius: 1px;
  background: var(--navy);
}
.qr-box__cell--empty { background: transparent; }
.qr-label {
  font-size: var(--tx-xs);
  color: rgba(255,255,255,0.45);
  text-align: center;
}
.dl-divider {
  display: flex;
  align-items: center;
  gap: var(--s3);
  width: 100%;
}
.dl-divider::before, .dl-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.dl-divider span {
  font-size: var(--tx-xs);
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER (unchanged — kept in home.css for co-location)
───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  padding-top: var(--s20);
  padding-bottom: var(--s8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--s8);
  margin-bottom: var(--s16);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--s4);
}
.footer-logo__img {
  height: 32px; width: auto;
  
}
.footer-tagline {
  font-size: var(--tx-sm);
  line-height: var(--lh-base);
  color: rgba(255,255,255,0.50);
  max-width: 270px;
  margin-bottom: var(--s6);
}
.footer-col__title {
  font-size: var(--tx-sm);
  font-weight: var(--w7);
  color: var(--white);
  margin-bottom: var(--s4);
  letter-spacing: var(--ls-wide);
}
.footer-col__links { display: flex; flex-direction: column; gap: var(--s3); }
.footer-col__link {
  font-size: var(--tx-sm);
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-col__link:hover { color: var(--gold); }
.footer-col__link--disabled {
  color: rgba(255,255,255,0.50);
  cursor: default;
  pointer-events: none;
  user-select: none;
}

.footer-col__link--disabled .coming-soon {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.45rem;
  border-radius: var(--r-full);
  background: rgba(255,209,102,0.12);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: var(--w6);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--s6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s4);
}
.footer-copy { font-size: var(--tx-xs); color: rgba(255,255,255,0.35); }
.footer-social { display: flex; gap: var(--s4); }
.footer-social__link {
  font-size: var(--tx-sm);
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-social__link:hover { color: var(--gold); }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE ADDITIONS for homepage-specific grids
───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner {
    text-align: center;
    gap: var(--s12);
  }

  .hero__left  { align-items: center; }
  .hero__badge { width: auto; }
  .hero__sub   { margin-inline: auto; }
  .hero__search-wrap { max-width: 100%; }
  .hero__search-hints { justify-content: center; }
  .hero__ctas  { justify-content: center; }
  .hero__proof { justify-content: center; }

  .phones-wrap {
    width: 280px;
  }

  .phone--hero { width: 220px; }
  .phone--back { width: 185px; }
  .phone__screen { min-height: 300px; }

  .stats-grid     { grid-template-columns: repeat(3, 1fr); }
  .learning-grid  { grid-template-columns: repeat(2, 1fr); }
  .subjects-grid  { grid-template-columns: repeat(4, 1fr); }
  .hiw-steps      { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps::before { display: none; }
  .journey-grid   { grid-template-columns: 1fr; }
  .journey-quote-wrap { order: -1; }
  .press-cats     { grid-template-columns: repeat(2, 1fr); }
  .download-inner { grid-template-columns: 1fr; text-align: center; }
  .download-left  { align-items: center; }
  .dl-sub         { margin-inline: auto; }
  .dl-btns        { justify-content: center; }
  .dl-benefits    { align-items: center; }
  .download-right { flex-direction: row; justify-content: center; flex-wrap: wrap; }

  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .learning-grid { grid-template-columns: 1fr 1fr; }
  .subjects-grid { grid-template-columns: repeat(3, 1fr); }
  .hiw-steps     { grid-template-columns: 1fr 1fr; }
  .press-cats    { grid-template-columns: 1fr 1fr; }
  .phones-wrap {
  width: 220px;
}
  .phone--main   { width: 175px; }
  .phone--back   { width: 148px; }
  .phone__screen { min-height: 252px; }
  .hero__h1      { font-size: clamp(1.75rem, 8vw, 2.2rem); }
  .hero__ctas    { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  .dl-title      { font-size: var(--tx-3xl); }
  .dl-btns       { flex-direction: column; align-items: center; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid > .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  .subjects-grid { grid-template-columns: repeat(2, 1fr); }
  .learning-grid { grid-template-columns: 1fr; }
  .hiw-steps     { grid-template-columns: 1fr; }
  .hiw-steps::before { display: none; }
  .press-cats    { grid-template-columns: 1fr 1fr; }
  .stats-grid    { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-grid > .footer-brand { grid-column: auto; }
  .dl-btns       { align-items: stretch; max-width: 280px; margin-inline: auto; }
  .store-btn     { width: 100%; justify-content: center; }
}
