/* landing.css — Shatir landing page (PRD §34.3.1)
 * v2.0  2026-05-21 — Brand refresh: DeepSeek-inspired blue/purple palette,
 *                    Gemini-style Noto Kufi/Sans Arabic typography, neural-grid
 *                    hero background, animated AI chat demo with typing indicator,
 *                    AI strip section emphasising tech identity.
 *                    Schools CTA section removed — schools now have a dedicated
 *                    portal flow (schools-login.html → schools-dashboard.html).
 */

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3.5rem, 8vw, 7rem);
  background: white;
}

/* Decorative AI-flavoured background — pure CSS, zero-asset */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(77, 107, 254, 0.10) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(139, 92, 246, 0.06) 1px, transparent 1.5px);
  background-size: 28px 28px, 56px 56px;
  background-position: 0 0, 14px 14px;
  mask-image: radial-gradient(ellipse at center top, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center top, black 0%, transparent 80%);
  opacity: 0.9;
}
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero-bg-glow--blue {
  width: 480px; height: 480px;
  background: var(--primary-500);
  top: -160px; right: -120px;
  opacity: 0.18;
}
.hero-bg-glow--purple {
  width: 380px; height: 380px;
  background: var(--purple-500);
  bottom: -120px; left: -80px;
  opacity: 0.15;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 1.35rem; }

.hero-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--primary-700);
  padding: 0.45rem 1rem 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid var(--primary-100);
  box-shadow: var(--shadow-card);
}
.hero-pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary-500);
  box-shadow: 0 0 0 4px rgba(77, 107, 254, 0.18);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(77, 107, 254, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(77, 107, 254, 0.08); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.8vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
  color: var(--ink-900);
  letter-spacing: -0.025em;
}
.hero-title .accent-gradient {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--indigo-500) 50%, var(--purple-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.5em;
  font-weight: 800;
  display: inline-block;
  line-height: 1.3;
  margin-top: 0.4em;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.25vw, 1.05rem);
  color: var(--ink-700);
  margin: 0;
  max-width: 58ch;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.btn-icon { display: inline-block; }

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* was 3; discount stat moved to info cards 2026-05-27 */
  gap: 0.75rem;
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-card);
}
.hero-mini-stats > div { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-mini-stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  background: linear-gradient(135deg, var(--primary-600), var(--purple-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.hero-mini-stats span { font-size: 0.75rem; color: var(--ink-500); margin-top: 2px; font-weight: 500; }

/* ── Hero visual base (mascot + brand display) ──────────────── */
.hero-visual { display: flex; justify-content: center; }

/* ── Hero brand display — large "شاطر.Ai" text in middle of hero ── */
.hero-brand-display {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--primary-600), var(--purple-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.hero-brand-display-ai {
  background: linear-gradient(135deg, var(--purple-500) 0%, var(--indigo-500) 50%, var(--primary-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Features grid ─────────────────────────────────────────── */
.features { background: white; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elev);
  border-color: var(--primary-200);
}
.feature-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  border: 1px solid var(--primary-100);
}
.feature-icon { font-size: 1.85rem; line-height: 1; }
.feature-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.feature-card p { margin: 0; color: var(--ink-700); font-size: 0.95rem; line-height: 1.7; }

/* ── AI Strip — dark band emphasising AI tech identity ─────── */
.ai-strip {
  background: linear-gradient(135deg, var(--ink-900) 0%, #1A2A6C 50%, #2E1A6B 100%);
  color: white;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.ai-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
}
.ai-strip-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ai-strip-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary-200);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1rem;
}
.ai-strip-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.ai-strip-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 56ch;
}
.ai-strip-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-start;
}
.ai-pill {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ── Download ───────────────────────────────────────────────── */
.download { background: var(--primary-50); position: relative; overflow: hidden; }
.download::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 200px;
  background: radial-gradient(ellipse, rgba(77, 107, 254, 0.10), transparent 70%);
  pointer-events: none;
}
.download .container { position: relative; z-index: 1; }
.download-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.6rem;
  background: var(--ink-900);
  color: white;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 24px rgba(15, 17, 23, 0.18);
}
.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 17, 23, 0.28);
}
.store-icon { display: inline-flex; align-items: center; line-height: 1; color: white; }
.store-text { display: flex; flex-direction: column; line-height: 1.15; }
.store-text small { font-size: 0.72rem; opacity: 0.75; }
.store-text strong { font-size: 1.1rem; font-weight: 700; }
.download-help { text-align: center; margin: 1.75rem 0 0; color: var(--ink-500); font-size: 0.9rem; }
.download-help a { color: var(--primary-700); font-weight: 700; text-decoration: none; }
.download-help a:hover { text-decoration: underline; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero-visual {
    order: -1;
    flex-direction: column;
    gap: 0.8rem;
  }
  .hero-brand-display { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-mascot { width: clamp(200px, 35vw, 280px); }
  .mascot-pill {
    font-size: 0.72rem;
    padding: 0.35rem 0.7rem;
    /* On tablet (>480 but ≤880) the layout is column; keep cycle running
       but if you prefer all visible, uncomment next 3 lines: */
    /* animation: none; opacity: 1; transform: none; */
  }
  .ai-strip-row { grid-template-columns: 1fr; gap: 1.25rem; }
  .ai-strip-pills { justify-content: center; }
  .section { padding: clamp(2rem, 5vw, 3.5rem) 0; }
  .hero { padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 4rem); }
  .hero-content { gap: 1.1rem; }
  .section-sub { margin: 0 0 1.85rem; }
  .site-footer { margin-top: 2rem; }
}

@media (max-width: 480px) {
  /* Download buttons: stay side-by-side as 50/50 containers (was: column) */
  .hero-cta { flex-direction: row; align-items: stretch; gap: 0.5rem; flex-wrap: nowrap; }
  .hero-cta .btn { flex: 1; padding: 0.75rem 0.5rem; font-size: 0.88rem; min-width: 0; }
  /* Stats: stay 2-column (was: 1 column) */
  .hero-mini-stats { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; padding: 0.7rem; }
  .hero-mini-stats strong { font-size: 1rem; }
  .hero-mini-stats span { font-size: 0.7rem; }
  .hero-brand-display { font-size: 2rem; }
  .hero-mascot { width: clamp(180px, 60vw, 240px) !important; }

  /* Mascot pills — restructure as 2-col grid below mascot (no hiding) */
  .hero-mascot-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    max-width: 320px;
    margin: 0 auto;
    justify-items: center;
  }
  .hero-mascot { grid-column: 1 / -1; }
  .mascot-pill {
    position: static;
    display: inline-flex;
    top: auto; right: auto; bottom: auto; left: auto;
    font-size: 0.68rem;
    padding: 0.32rem 0.65rem;
    /* override desktop pop animation — keep all 6 visible on mobile */
    animation: none;
    opacity: 1;
    transform: none;
    width: 100%;
    justify-content: center;
  }

  /* Mobile-first CTA — full-width tap target */
  .cta-wrap   { align-self: stretch; align-items: stretch; }
  .btn-cta-pay { width: 100%; padding: 1.1rem 1rem; font-size: 1.1rem; }
  .cta-subtext { text-align: center; }

  /* Mobile density — reduce paddings + gaps */
  .section { padding: 2rem 0; }
  .hero { padding: 1.5rem 0 2rem; }
  .hero-content { gap: 1rem; }
  .hero-grid { gap: 1rem; }
  .section-sub { margin: 0 0 1.5rem; font-size: 0.95rem; }
  .features-grid { gap: 0.75rem; }
  .feature-card { padding: 1.25rem 1.1rem; }
  .extras-strip { margin-top: 1.5rem; padding: 1.1rem 0.7rem; }
  .extras-label { margin-bottom: 0.7rem; font-size: 0.92rem; }
  .extras-pills { gap: 0.5rem; }
  .extras-pill { font-size: 0.78rem; padding: 0.4rem 0.8rem; }
  .ai-strip { padding: 2rem 0; }
  .ai-strip-row { gap: 1rem; }
  .ai-strip-text h2 { font-size: 1.35rem; line-height: 1.3; }
  .download { padding: 2rem 0; }
  .download-help { margin: 1rem 0 0; }
  .site-footer { margin-top: 1.5rem; padding: 1.75rem 0 1rem; }
  .footer-grid { gap: 1.1rem; padding-bottom: 1rem; }
}

/* ── Brand "AI" suffix — distinguished from "شاطر" via reverse gradient ─ */
.brand-mark-ai,
.footer-brand-ai {
  font-family: var(--font-display);
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-500) 0%, var(--indigo-500) 50%, var(--primary-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0;
  margin-inline-start: 0;
}

/* ── Hero mascot — beside phone (RTL: mascot right, phone left) ──── */
.hero-visual {
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero-mascot-wrap {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}
.hero-mascot {
  width: clamp(280px, 30vw, 360px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 12px 32px rgba(77, 107, 254, 0.25));
  animation: mascot-float 4.5s ease-in-out infinite;
}

/* ── Mascot pills — drip animation from top-right of mascot ─────── */
/* All pills share the SAME starting position (top-right corner of      */
/* mascot); they appear one-at-a-time, drop downward, and fade out.    */
.mascot-pill {
  position: absolute;
  top: 5%;
  right: -15px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: white;
  color: var(--ink-800);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1.5px solid var(--primary-200);
  box-shadow: 0 6px 18px rgba(77, 107, 254, 0.18);
  white-space: nowrap;
  z-index: 2;
  opacity: 0;
  transform: translateY(-10px) scale(0);
  transform-origin: center;
  animation: mascot-pill-drip 15s ease-in-out infinite;
  pointer-events: none;
}

/* Sequential delays — one drip every 2.5s, 15s total cycle */
.mascot-pill--ne { animation-delay: 0s;    }
.mascot-pill--e  { animation-delay: 2.5s;  }
.mascot-pill--se { animation-delay: 5s;    }
.mascot-pill--sw { animation-delay: 7.5s;  }
.mascot-pill--w  { animation-delay: 10s;   }
.mascot-pill--nw { animation-delay: 12.5s; }

@keyframes mascot-pill-drip {
  /* 15s cycle; each pill visible for ~2.5s window (≈16.67%) */
  0%   { opacity: 0; transform: translateY(-10px) scale(0);    }
  3%   { opacity: 0; transform: translateY(-10px) scale(0);    }
  6%   { opacity: 1; transform: translateY(0)     scale(1.1);  } /* pop in with overshoot */
  8%   { opacity: 1; transform: translateY(5px)   scale(1);    } /* settle */
  11%  { opacity: 1; transform: translateY(35px)  scale(1);    } /* drift down (visible) */
  14%  { opacity: 0.55; transform: translateY(95px) scale(0.95); } /* dropping + fading */
  16%  { opacity: 0; transform: translateY(160px) scale(0.82); }   /* gone */
  100% { opacity: 0; transform: translateY(160px) scale(0);    }
}
@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ── CTA — "اشترك الآن" — teal accent to differ from blue download buttons ─ */
.cta-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  align-self: flex-start;
}
.btn-cta-pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.2rem 2.6rem;
  background: linear-gradient(135deg, #14B8A6, #0D9488);
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 36px rgba(13, 148, 136, 0.55);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  animation: cta-pulse 8s ease-in-out infinite;
  position: relative;
  overflow: visible;  /* allow ring to extend past the button */
  isolation: isolate; /* z-index containment for ring/shine layers */
}
/* Diagonal shine sweep — brighter + faster (2.4s vs prior 3.5s) */
.btn-cta-pay::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 25%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 75%
  );
  animation: cta-shine 2.4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  -webkit-mask: linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0);  /* clip shine to button shape */
}
/* Radiating ring — pulses outward every 2s for extra attention */
.btn-cta-pay::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.55);
  animation: cta-ring 2.0s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}
.btn-cta-pay > * { position: relative; z-index: 2; }
@keyframes cta-shine {
  0%   { left: -100%; }
  40%  { left: 200%;  }
  100% { left: 200%;  }
}
@keyframes cta-ring {
  0%   { opacity: 0.7; transform: scale(1);    box-shadow: 0 0 0 3px  rgba(13, 148, 136, 0.55); }
  80%  { opacity: 0;   transform: scale(1.12); box-shadow: 0 0 0 18px rgba(13, 148, 136, 0);    }
  100% { opacity: 0;   transform: scale(1.12); box-shadow: 0 0 0 18px rgba(13, 148, 136, 0);    }
}
.cta-rocket { font-size: 1.35rem; line-height: 1; }
.cta-subtext {
  font-size: 0.82rem;
  color: var(--ink-500);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.btn-cta-pay:hover {
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(13, 148, 136, 0.55);
}
.btn-cta-pay .cta-arrow { font-weight: 900; }

/* 8s combined cycle: 4 pulse breaths (~2s each) + 1 wiggle replacing 4th peak */
@keyframes cta-pulse {
  0%, 100% { transform: scale(1) rotate(0deg);
             box-shadow: 0 12px 36px rgba(13, 148, 136, 0.55); }
  /* Pulse 1 (0-2s) */
  6%       { transform: scale(1.05) rotate(0deg);
             box-shadow: 0 22px 64px rgba(13, 148, 136, 0.85), 0 0 0 16px rgba(13, 148, 136, 0.18); }
  12%      { transform: scale(1) rotate(0deg);
             box-shadow: 0 12px 36px rgba(13, 148, 136, 0.55); }
  /* Pulse 2 (2-4s) */
  31%      { transform: scale(1.05) rotate(0deg);
             box-shadow: 0 22px 64px rgba(13, 148, 136, 0.85), 0 0 0 16px rgba(13, 148, 136, 0.18); }
  37%      { transform: scale(1) rotate(0deg);
             box-shadow: 0 12px 36px rgba(13, 148, 136, 0.55); }
  /* Pulse 3 (4-6s) */
  56%      { transform: scale(1.05) rotate(0deg);
             box-shadow: 0 22px 64px rgba(13, 148, 136, 0.85), 0 0 0 16px rgba(13, 148, 136, 0.18); }
  62%      { transform: scale(1) rotate(0deg);
             box-shadow: 0 12px 36px rgba(13, 148, 136, 0.55); }
  /* Pulse 4 (6-7s) then wiggle (7-8s) */
  81%      { transform: scale(1.05) rotate(0deg);
             box-shadow: 0 22px 64px rgba(13, 148, 136, 0.85), 0 0 0 16px rgba(13, 148, 136, 0.18); }
  87%      { transform: scale(1) rotate(0deg);
             box-shadow: 0 12px 36px rgba(13, 148, 136, 0.55); }
  /* Wiggle: rotate ±2° four times in ~640ms */
  89%      { transform: scale(1) rotate(2deg);  }
  92%      { transform: scale(1) rotate(-2deg); }
  95%      { transform: scale(1) rotate(2deg);  }
  98%      { transform: scale(1) rotate(-2deg); }
}

/* ── Feature card: "جديد" badge ─────────────────────────────────── */
.feature-badge-new {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  background: linear-gradient(135deg, var(--teal-500), #0D9488);
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.32);
}

/* ── Extras strip — "وأكثر من ذلك" + 14 light pills ─────────────── */
.extras-strip {
  margin-top: 2.5rem;
  padding: 1.75rem 1.25rem;
  background: linear-gradient(135deg, var(--primary-50), white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  text-align: center;
}
.extras-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary-700);
  margin-bottom: 1.1rem;
  letter-spacing: -0.005em;
}
.extras-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.extras-pill {
  display: inline-flex;
  align-items: center;
  background: white;
  color: var(--ink-800);
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  border: 1.5px solid var(--primary-200);
  box-shadow: 0 2px 8px rgba(77, 107, 254, 0.14);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.extras-pill:hover {
  transform: translateY(-2px);
  border-color: var(--primary-500);
  box-shadow: 0 6px 16px rgba(77, 107, 254, 0.22);
}

/* ── Scroll-down hint — invitation to discover more below hero ──── */
.scroll-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  background: white;
  color: var(--primary-700);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--primary-200);
  box-shadow: 0 8px 24px rgba(77, 107, 254, 0.18);
  z-index: 10;
  animation: scroll-hint-bounce 2.2s ease-in-out infinite;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.scroll-hint:hover {
  border-color: var(--primary-500);
  box-shadow: 0 12px 32px rgba(77, 107, 254, 0.30);
}
.scroll-hint-arrow {
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 900;
  color: var(--primary-500);
}
/* Auto-hide on scroll — JS adds .is-hidden when user scrolls past 80px */
.scroll-hint.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}
@keyframes scroll-hint-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-8px); }
}
@media (max-width: 480px) {
  .scroll-hint { bottom: 0.5rem; font-size: 0.8rem; padding: 0.45rem 0.9rem; }
}

/* ── Hero info cards — below CTA, side-by-side on all screen sizes ─── */
.hero-info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
  align-self: stretch;
}
.hero-info-card {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: linear-gradient(135deg, var(--primary-50), white);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.95rem;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.hero-info-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-300);
  box-shadow: 0 6px 16px rgba(77, 107, 254, 0.14);
}
.info-emoji {
  font-size: 1.7rem;
  flex-shrink: 0;
  line-height: 1;
}
.info-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.info-content strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--primary-700);
  font-weight: 800;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.info-content span {
  font-size: 0.78rem;
  color: var(--ink-700);
  line-height: 1.55;
}
@media (max-width: 480px) {
  .hero-info-cards { gap: 0.5rem; margin-top: 1rem; }
  .hero-info-card { padding: 0.6rem 0.65rem; gap: 0.5rem; }
  .info-emoji { font-size: 1.3rem; }
  .info-content strong { font-size: 0.78rem; line-height: 1.25; }
  .info-content span { font-size: 0.68rem; line-height: 1.4; }
}
