/* ============================================================
   PASCUA — Landing page styles
   Builds on colors_and_type.css (tokens, fonts, base elements)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--fg-1);
  -webkit-font-smoothing: antialiased;
  /* Cheerful cream + dark-gold base */
  background:
    radial-gradient(135% 80% at 84% -8%, rgba(245,230,189,0.85) 0%, rgba(245,230,189,0) 52%),
    radial-gradient(120% 70% at 2% 4%, rgba(212,168,98,0.30) 0%, rgba(212,168,98,0) 46%),
    radial-gradient(130% 90% at 50% 108%, rgba(232,158,122,0.16) 0%, rgba(232,158,122,0) 50%),
    linear-gradient(178deg, #FFF7E2 0%, #FCEFD2 46%, #FBEAC6 100%);
  background-attachment: fixed;
}

/* Tiny scattered watercolor stars — playful, low-key */
.sparkle-field {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
  background-image:
    radial-gradient(circle, rgba(212,168,98,0.55) 0 1.6px, transparent 2px),
    radial-gradient(circle, rgba(232,158,122,0.4) 0 1.4px, transparent 2px);
  background-size: 120px 120px, 170px 170px;
  background-position: 0 0, 60px 80px;
  opacity: 0.6;
}

/* Twinkling sparkle layer (seeded by app.js into wash sections) */
.twinkle-layer { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
section > .wrap, #hero > .wrap { position: relative; z-index: 1; }
.footer { position: relative; }
.footer > .wrap { position: relative; z-index: 1; }
.twinkle-layer .spark {
  position: absolute;
  background: var(--royal-gold, #B08846);
  clip-path: polygon(50% 0%, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0% 50%, 40% 40%);
  opacity: 0;
  animation: sparkTwinkle var(--spk-dur, 3.4s) ease-in-out var(--spk-delay, 0s) infinite;
  will-change: transform, opacity;
}
@keyframes sparkTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  45% { opacity: var(--spk-max, 0.85); transform: scale(1) rotate(18deg); }
  60% { opacity: var(--spk-max, 0.85); transform: scale(1) rotate(18deg); }
}
@media (prefers-reduced-motion: reduce) {
  .twinkle-layer .spark { animation: none; opacity: calc(var(--spk-max, 0.85) * 0.7); }
}

/* ---------- Hero pollen motes ---------- */
.pollen-layer { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.pollen-layer .mote {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,244,205,0.95), rgba(224,185,106,0.55) 60%, rgba(224,185,106,0) 100%);
  filter: blur(0.4px);
  opacity: 0;
  animation: pollenDrift var(--mote-dur, 14s) ease-in-out var(--mote-delay, 0s) infinite;
  will-change: transform, opacity;
}
@keyframes pollenDrift {
  0%   { opacity: 0; transform: translate(0, 12px) scale(0.7); }
  12%  { opacity: var(--mote-max, 0.8); }
  50%  { transform: translate(var(--mote-dx, 24px), -34px) scale(1); }
  88%  { opacity: var(--mote-max, 0.8); }
  100% { opacity: 0; transform: translate(calc(var(--mote-dx, 24px) * 1.6), -78px) scale(0.8); }
}

/* ---------- Hero butterflies ---------- */
.bfly { position: absolute; z-index: 1; pointer-events: none; transform-origin: center; will-change: transform; }
.bfly-inner { width: 100%; height: 100%; animation: bflyBob 3.6s ease-in-out infinite; }
.bfly svg { display: block; width: 100%; height: 100%; overflow: visible; filter: drop-shadow(0 6px 7px rgba(92,67,41,0.18)); }
.bfly .wing { transform-box: fill-box; transform-origin: 100% 50%; animation: wingFlap var(--flap, 0.4s) ease-in-out infinite; }
.bfly .wing.r { transform-origin: 0% 50%; }
@keyframes wingFlap {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.32); }
}
@keyframes bflyBob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-7px) rotate(4deg); }
}
.bfly.fly1 { animation: flyPath1 26s ease-in-out infinite; }
.bfly.fly2 { animation: flyPath2 32s ease-in-out infinite; }
.bfly.fly3 { animation: flyPath3 22s ease-in-out infinite; }
.bfly.fly4 { animation: flyPath2 28s ease-in-out infinite; }
.bfly.fly5 { animation: flyPath3 30s ease-in-out infinite; }
.bfly.fly6 { animation: flyPath1 24s ease-in-out infinite; }
@keyframes flyPath1 {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(120px, -46px); }
  50%  { transform: translate(230px, 26px); }
  75%  { transform: translate(96px, 82px); }
  100% { transform: translate(0, 0); }
}
@keyframes flyPath2 {
  0%   { transform: translate(0, 0); }
  30%  { transform: translate(-150px, 54px); }
  60%  { transform: translate(-64px, -64px); }
  100% { transform: translate(0, 0); }
}
@keyframes flyPath3 {
  0%   { transform: translate(0, 0); }
  40%  { transform: translate(74px, 72px); }
  70%  { transform: translate(-54px, 40px); }
  100% { transform: translate(0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .pollen-layer .mote { animation: none; opacity: calc(var(--mote-max, 0.8) * 0.6); }
  .bfly, .bfly-inner, .bfly .wing { animation: none; }
}

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

/* Reduced-motion respect */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- Layout primitives ---------- */
.wrap { width: min(80%, 1640px); margin-inline: auto; }
.wrap-narrow { width: min(820px, 100% - 48px); margin-inline: auto; }

section { position: relative; }
.section-pad { padding-block: clamp(64px, 9vw, 120px); }

/* Section eyebrow */
.eyebrow {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent, var(--royal-gold));
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: currentColor;
  opacity: 0.55;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1.5px;
  background: currentColor;
  opacity: 0.55;
}

/* Display titles */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 0;
  font-variation-settings: 'opsz' 96, 'SOFT' 60, 'WONK' 0;
  text-wrap: balance;
}
.display-1 { font-size: clamp(40px, 6vw, 68px); }
.display-2 { font-size: clamp(32px, 4.4vw, 50px); }
.display-3 { font-size: clamp(26px, 3vw, 36px); }

.lede {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 56ch;
  text-wrap: pretty;
}

.scripture-line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--earth-brown);
  font-variation-settings: 'opsz' 40, 'SOFT' 80;
}
.scripture-ref-line {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--royal-gold);
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: var(--radius-pill);
  padding: 15px 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-storybook),
              box-shadow var(--dur-base) var(--ease-page),
              filter var(--dur-fast) ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); filter: brightness(0.98); }
.btn-primary {
  background: var(--brand-primary, linear-gradient(180deg, #DBB269 0%, #B08846 100%));
  color: #FFF8E8;
  box-shadow: 0 6px 18px rgba(176,136,70,0.34);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(176,136,70,0.40); }
.btn-ghost {
  background: var(--bg-surface);
  color: var(--fg-1);
  box-shadow: var(--shadow-1);
  border: 1px solid var(--border-soft);
}
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }

/* App store badges */
.store-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--twilight-blue);
  color: var(--liturgical-white);
  text-decoration: none;
  border-radius: 16px;
  padding: 11px 20px 11px 18px;
  transition: transform var(--dur-fast) var(--ease-storybook), box-shadow var(--dur-base) var(--ease-page);
  box-shadow: 0 4px 14px rgba(42,74,96,0.22);
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(42,74,96,0.28); color: var(--liturgical-white); }
.store-badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-badge .sb-small { font-family: var(--font-accent); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.82; }
.store-badge .sb-big { font-family: var(--font-heading); font-weight: 700; font-size: 17px; }

/* ---------- Top nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--dur-base) ease, box-shadow var(--dur-base) ease, padding var(--dur-base) ease;
  padding-block: 18px;
}
.nav.scrolled {
  background: rgba(255,247,226,0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(176,136,70,0.18);
  padding-block: 12px;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 0; }
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--fg-2);
  text-decoration: none;
  transition: color var(--dur-fast) ease;
}
.nav-links a:hover { color: var(--fg-1); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--fg-1); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
}

/* ---------- Contact modal ---------- */
.contact-overlay {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(42,42,58,0.42);
}
.contact-overlay.open { display: flex; animation: contactFade 0.22s ease both; }
@keyframes contactFade { from { opacity: 0; } to { opacity: 1; } }
.contact-card {
  position: relative; width: 100%; max-width: 540px;
  max-height: calc(100vh - 48px); overflow-y: auto;
  background: var(--bg-surface, #FFFCF6); border-radius: var(--radius-xl, 32px);
  padding: clamp(26px, 4vw, 40px); box-shadow: 0 30px 80px rgba(92,67,41,0.32);
  border: 1px solid var(--border-soft);
  animation: contactPop 0.32s cubic-bezier(.34,1.3,.64,1) both;
}
@keyframes contactPop { from { transform: translateY(16px) scale(0.97); opacity: 0; } to { transform: none; opacity: 1; } }
.contact-close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px;
  border-radius: 50%; border: none; cursor: pointer;
  background: var(--cream-gold, #F4E4C1); color: var(--deep-umber, #5C4329);
  display: grid; place-items: center; transition: transform .15s ease;
}
.contact-close:hover { transform: rotate(90deg); }
.contact-orn { margin-bottom: 4px; }
.contact-h {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3.4vw, 34px);
  color: var(--fg-1); line-height: 1.05; margin: 2px 0 6px;
  font-variation-settings: 'SOFT' 70, 'opsz' 60;
}
.contact-sub { font-family: var(--font-body); font-size: 15.5px; color: var(--fg-3); margin-bottom: 18px; line-height: 1.5; }
.contact-label {
  display: block; font-family: var(--font-accent); font-weight: 700; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--earth-brown, #8B6F47);
  margin: 14px 0 8px;
}
.topic-row { display: flex; flex-wrap: wrap; gap: 9px; }
.topic-chip {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  font-family: var(--font-heading); font-weight: 700; font-size: 14px;
  padding: 10px 15px; border-radius: var(--radius-pill, 999px);
  background: var(--bg-page, #F5F0E8); color: var(--earth-brown, #8B6F47);
  border: 1.5px solid var(--border-soft); transition: all .16s ease;
}
.topic-chip:hover { transform: translateY(-1px); }
.topic-chip.active {
  background: var(--cream-gold, #F4E4C1); color: var(--deep-umber, #5C4329);
  border-color: var(--royal-gold, #B08846);
  box-shadow: 0 4px 12px rgba(176,136,70,0.22);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-input {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--fg-1);
  background: var(--bg-page, #F5F0E8); border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-m, 16px); padding: 12px 14px; outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-input::placeholder { color: var(--fg-3); opacity: 0.7; }
.contact-input:focus { border-color: var(--royal-gold, #B08846); box-shadow: 0 0 0 3px rgba(176,136,70,0.18); }
.contact-textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.contact-submit { width: 100%; justify-content: center; gap: 9px; margin-top: 18px; }
.contact-foot { text-align: center; font-family: var(--font-accent); font-size: 12.5px; color: var(--fg-3); margin-top: 11px; }
@media (max-width: 520px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Hero ---------- */
.hero { padding-top: 132px; padding-bottom: clamp(48px, 7vw, 96px); position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 600px; }
.hero h1 { margin: 0 0 22px; }
.hero .lede { margin: 0 0 30px; }
.hero-trust {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-accent);
  font-size: 13.5px;
  color: var(--fg-3);
}
.hero-trust .dot { width: 4px; height: 4px; border-radius: 999px; background: var(--warm-gold); }

/* floating ornaments */
.ornament { position: absolute; pointer-events: none; opacity: 0.9; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes twinkle { 0%,100% { opacity: 0.35; } 50% { opacity: 0.9; } }
.float-bob { animation: bob 5.5s ease-in-out infinite; }
.float-bob.slow { animation-duration: 7s; }
.twinkle { animation: twinkle 3s ease-in-out infinite; }

/* ---------- Phone frame ---------- */
.phone-stage { display: flex; justify-content: center; position: relative; }

/* ---------- Hero fanned phones ---------- */
.phone-fan {
  position: relative;
  width: 100%; max-width: 560px; justify-self: center;
  filter: drop-shadow(0 24px 40px rgba(92,67,41,0.18));
  animation: heroSceneBob 6s ease-in-out infinite;
}
.phone-fan::before {
  content: ""; position: absolute; inset: -14% -10%; z-index: -2;
  background: radial-gradient(closest-side, rgba(224,185,106,0.5), rgba(232,158,122,0.18) 55%, rgba(224,185,106,0) 75%);
  animation: fanGlow 3.4s ease-in-out infinite;
}
.phone-fan::after {
  content: ""; position: absolute; inset: -22%; z-index: -3; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 62%, rgba(255,244,205,0.55) 74%, transparent 84%, transparent 100%);
  animation: fanShimmer 6.5s linear infinite;
}
.phone-fan img { display: block; width: 100%; height: auto; }
@keyframes fanGlow {
  0%, 100% { opacity: 0.55; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.07); }
}
@keyframes fanShimmer { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .phone-fan { animation: none; }
  .phone-fan::after { animation: none; opacity: 0.4; }
  .phone-fan::before { animation: none; }
}

/* ---------- Hero scene (ark illustration) ---------- */
.bk-story { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-2); margin-top: 4px; }
.bk-story img { display: block; width: 100%; height: 238px; object-fit: cover; object-position: center 30%; }
.bk-story-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 13px; background: linear-gradient(180deg, rgba(74,90,110,0) 0%, rgba(40,74,96,0.62) 100%); }
.bk-story-cap .bs-tag { font-family: var(--font-accent); font-weight: 700; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; opacity: 0.92; }
.bk-story-cap .bs-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #fff; line-height: 1.05; font-variation-settings: 'SOFT' 70, 'opsz' 56; }
.bk-cta {
  display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 14px;
  height: 48px; border-radius: var(--radius-pill); background: var(--ocean-blue); color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 15px; box-shadow: var(--shadow-2);
}

/* ---------- Hero scene (legacy alt slot) ---------- */
.hero-scene {
  position: relative; justify-self: center; max-width: 460px; width: 100%;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-3); border: 1px solid var(--border-soft);
  transform: rotate(-1.2deg);
  animation: heroSceneBob 6s ease-in-out infinite;
}
.hero-scene::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 2px 12px rgba(255,255,255,0.4), inset 0 -30px 60px rgba(92,67,41,0.06);
  pointer-events: none;
}
.hero-scene img { display: block; width: 100%; height: auto; }
@keyframes heroSceneBob {
  0%, 100% { transform: rotate(-1.2deg) translateY(0); }
  50% { transform: rotate(-1.2deg) translateY(-9px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scene { animation: none; }
}
.phone {
  position: relative;
  width: 300px;
  height: 620px;
  background: #1d1c1a;
  border-radius: 52px;
  padding: 11px;
  box-shadow: 0 30px 70px rgba(92,67,41,0.30), 0 8px 24px rgba(92,67,41,0.18);
  flex-shrink: 0;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 42px;
  overflow: hidden;
  background: var(--bg-page);
}
.phone-island {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 28px; background: #15140f; border-radius: 999px; z-index: 20;
}
.phone-statusbar {
  position: absolute; top: 0; left: 0; right: 0; height: 50px; z-index: 15;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 26px; padding-top: 14px;
  font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--fg-1);
}
.phone-statusbar .sb-icons { display: flex; gap: 6px; align-items: center; }
.phone-glow {
  position: absolute; inset: -40px -40px auto -40px; height: 320px; z-index: -1;
  background: var(--halo-glow); filter: blur(10px); pointer-events: none;
}

/* App screen interior */
.scr { position: absolute; inset: 0; display: flex; flex-direction: column; }
.scr-shot { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.scr.bible.has-shot + .phone-island, .phone-screen:has(.scr-shot) .phone-island { display: none; }
.scr-body { flex: 1; overflow: hidden; padding: 56px 18px 16px; }
.scr-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.scr-greet { display: flex; align-items: center; gap: 11px; }
.scr-avatar {
  width: 42px; height: 42px; border-radius: 999px; display: grid; place-items: center;
  background: var(--cream-gold); color: var(--sacred-red);
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  border: 2px solid var(--bg-surface); box-shadow: var(--shadow-1);
}
.scr-greet .g-small { font-family: var(--font-accent); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-3); }
.scr-greet .g-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--fg-1); line-height: 1; }
.scr-bell { width: 38px; height: 38px; border-radius: 999px; background: var(--bg-surface); display: grid; place-items: center; box-shadow: var(--shadow-1); position: relative; color: var(--fg-2); }
.scr-bell::after { content: ""; position: absolute; top: 9px; right: 10px; width: 7px; height: 7px; border-radius: 999px; background: var(--sacred-red); border: 1.5px solid var(--bg-surface); }
.scr-eyebrow { font-family: var(--font-accent); font-weight: 700; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.scr-title { font-family: var(--font-display); font-weight: 700; font-size: 27px; color: var(--fg-1); line-height: 1.05; margin: 3px 0 8px; font-variation-settings: 'SOFT' 70, 'opsz' 72; }
.scr-sub { font-family: var(--font-body); font-size: 12.5px; line-height: 1.45; color: var(--fg-2); margin: 0 0 14px; }

.chip-row { display: flex; gap: 8px; margin-bottom: 14px; overflow: hidden; }
.chip { font-family: var(--font-heading); font-weight: 700; font-size: 11px; padding: 7px 14px; border-radius: 999px; background: var(--bg-surface); color: var(--fg-2); box-shadow: var(--shadow-1); white-space: nowrap; }
.chip.active { background: var(--learn-color); color: #fff; }

.lesson { display: flex; gap: 12px; align-items: center; background: var(--bg-surface); border-radius: 20px; padding: 13px; margin-bottom: 11px; box-shadow: var(--shadow-2); }
.lesson-ic { width: 46px; height: 46px; border-radius: 14px; background: var(--sky-blue); display: grid; place-items: center; flex-shrink: 0; color: var(--deep-blue); }
.lesson-meta { flex: 1; min-width: 0; }
.lesson-src { font-family: var(--font-accent); font-weight: 700; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-3); }
.lesson-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--fg-1); line-height: 1.1; margin: 1px 0 3px; }
.lesson-info { font-family: var(--font-body); font-size: 11px; color: var(--fg-2); }
.lesson-bar { height: 6px; border-radius: 999px; background: var(--soft-grey); margin-top: 7px; overflow: hidden; }
.lesson-bar > span { display: block; height: 100%; border-radius: 999px; background: var(--ocean-blue); }
.pill-done { display: inline-block; margin-top: 6px; font-family: var(--font-accent); font-weight: 700; font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--deep-moss); background: var(--soft-sage); padding: 3px 9px; border-radius: 999px; }

/* Bottom tab bar inside phone */
.scr-tabs {
  position: absolute; left: 12px; right: 12px; bottom: 12px; height: 64px; z-index: 12;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: 26px; box-shadow: var(--shadow-2);
  display: flex; align-items: center; justify-content: space-around;
  border: 1px solid var(--border-soft);
}
.scr-tab { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--stone-grey); }
.scr-tab .t-label { font-family: var(--font-accent); font-weight: 700; font-size: 8px; letter-spacing: 0.04em; }
.scr-tab.active { color: var(--fg-1); }
.scr-tab.active .t-ic { background: var(--cream-gold); }
.t-ic { width: 38px; height: 30px; border-radius: 12px; display: grid; place-items: center; transition: background var(--dur-fast) ease; }

/* ---------- Bible screen — story reader ---------- */
.scr.bible .scr-body { background: #FBF3DD; overflow: hidden; padding: 0; position: relative; }
.story-hero { position: relative; height: 210px; flex-shrink: 0; overflow: hidden; }
.story-hero img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; display: block; }
.story-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 56px;
  background: linear-gradient(180deg, rgba(251,243,221,0) 0%, #FBF3DD 100%);
}
.story-hero-title {
  position: absolute; top: 16px; left: 0; right: 0; text-align: center; z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: 19px; color: #fff;
  letter-spacing: 0.02em; text-shadow: 0 1px 6px rgba(80,55,20,0.45);
  font-variation-settings: 'SOFT' 60, 'opsz' 60;
}
.story-btns { position: absolute; top: 8px; left: 14px; right: 14px; z-index: 3; display: flex; justify-content: space-between; }
.story-btns .right { display: flex; gap: 8px; }
.glass-btn {
  width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center;
  background: rgba(255,255,255,0.82); color: var(--fg-1); box-shadow: 0 2px 8px rgba(80,55,20,0.18);
  backdrop-filter: blur(4px);
}
.story-read { padding: 4px 22px 14px; text-align: center; overflow: hidden; }
.story-eyebrow { font-family: var(--font-accent); font-weight: 700; font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--royal-gold); }
.story-title { font-family: var(--font-display); font-weight: 800; font-size: 27px; color: var(--fg-1); line-height: 1.04; margin: 6px 0 8px; font-variation-settings: 'SOFT' 50, 'opsz' 72, 'WONK' 1; }
.story-sub { font-family: var(--font-accent); font-weight: 700; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--earth-brown); line-height: 1.5; }
.story-orn { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--warm-gold); margin: 16px 0 14px; }
.story-orn span { height: 1px; width: 56px; background: rgba(176,136,70,0.4); }
.story-body { text-align: left; }
.story-body p { font-family: var(--font-body); font-size: 14px; line-height: 1.62; color: var(--fg-1); margin-bottom: 12px; }
.audio-bar {
  position: absolute; left: 14px; right: 14px; bottom: 16px; z-index: 4;
  background: linear-gradient(180deg, #FBF1CF 0%, #F7E9BE 100%);
  border: 1px solid rgba(176,136,70,0.22); border-radius: 22px;
  box-shadow: 0 8px 24px rgba(92,67,41,0.16); padding: 12px 16px 13px;
}
.ab-track { display: flex; align-items: center; gap: 8px; font-family: var(--font-accent); font-weight: 700; font-size: 9px; color: var(--earth-brown); }
.ab-bar { flex: 1; height: 4px; border-radius: 999px; background: rgba(176,136,70,0.28); position: relative; }
.ab-bar::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 12px; height: 12px; border-radius: 999px; background: var(--royal-gold); box-shadow: 0 1px 3px rgba(92,67,41,0.3); }
.ab-ctrls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 8px; color: var(--earth-brown); }
.ab-play { width: 50px; height: 50px; border-radius: 999px; background: var(--warm-gold); color: #fff; display: grid; place-items: center; box-shadow: 0 4px 12px rgba(176,136,70,0.4); }

/* ---------- Faith screen — Prayers · Music · Songs ---------- */
.scr.faith .scr-body { background: linear-gradient(180deg, #E9DCF1 0%, #EADFF0 60%, #ECE0EF 100%); overflow: hidden; padding: 16px 0 12px; }
.faith2-row { padding: 0 16px; }
.f-sec-head { display: flex; align-items: center; gap: 9px; margin: 0 16px 12px; }
.f-sec-head.gap2 { margin-top: 20px; }
.f-sec-ic { width: 30px; height: 30px; border-radius: 9px; background: rgba(107,61,107,0.13); display: grid; place-items: center; color: var(--liturgical-purple); flex-shrink: 0; }
.f-sec-t { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: #4A2A52; line-height: 1; font-variation-settings: 'SOFT' 50, 'opsz' 56, 'WONK' 1; }
.f-see-all { margin-left: auto; font-family: var(--font-accent); font-weight: 700; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--liturgical-purple); display: inline-flex; align-items: center; gap: 4px; }
.f-scroll { display: flex; gap: 12px; padding: 0 16px; overflow: hidden; }
.f-prayer-card { width: 150px; flex-shrink: 0; border-radius: 20px; overflow: hidden; box-shadow: 0 6px 18px rgba(74,42,82,0.14); }
.f-prayer-card img { width: 100%; display: block; }
.mc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; padding: 0 16px; }
.mc-tile { background: #F6EFD9; border-radius: 18px; overflow: hidden; box-shadow: 0 5px 14px rgba(74,42,82,0.12); padding-bottom: 10px; }
.mc-tile img { width: 100%; display: block; }
.mc-name { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: #4A2A52; text-align: center; margin-top: 2px; font-variation-settings: 'SOFT' 60, 'opsz' 40; }
.mc-seeall { background: var(--liturgical-purple); border-radius: 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: #fff; box-shadow: 0 5px 14px rgba(74,42,82,0.2); }
.mc-seeall .circ { width: 42px; height: 42px; border-radius: 999px; border: 1.5px solid rgba(255,255,255,0.6); display: grid; place-items: center; }
.mc-seeall span { font-family: var(--font-heading); font-weight: 700; font-size: 13px; }
.f-song-card { width: 168px; flex-shrink: 0; border-radius: 18px; overflow: hidden; box-shadow: 0 6px 18px rgba(74,42,82,0.14); }
.f-song-card img { width: 100%; display: block; }
.scr.faith .scr-tabs { background: #F3E9C9; border-top: 1px solid rgba(176,136,70,0.25); }

/* ---------- Generic section helpers ---------- */
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.sec-head { max-width: 640px; margin: 0 auto clamp(40px, 5vw, 64px); }
.sec-head.left { margin-inline: 0; }

/* Watercolor wash backgrounds — gentle color blooms over the cream base */
.wash-sky { background: radial-gradient(125% 85% at 28% 16%, #DCEEF6 0%, rgba(255,247,226,0) 58%); }
.wash-rose { background: radial-gradient(125% 85% at 72% 22%, #FBE0D5 0%, rgba(255,247,226,0) 58%); }
.wash-meadow { background: radial-gradient(125% 85% at 28% 82%, #DEF0CB 0%, rgba(255,247,226,0) 58%); }
.wash-gold { background: radial-gradient(130% 95% at 50% 14%, #F9E7B4 0%, rgba(255,247,226,0) 62%); }
.wash-dusk { background: radial-gradient(125% 85% at 50% -4%, #E6D6EE 0%, rgba(255,247,226,0) 62%); }
.bg-surface { background: var(--bg-surface); }
.bg-elevated { background: var(--bg-elevated); }

/* soft top/bottom wave dividers via pseudo are handled inline where needed */

/* ---------- Five menus grid ---------- */
.menus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.menu-card {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--bg-surface);
  box-shadow: var(--shadow-2);
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease-storybook), box-shadow var(--dur-base) var(--ease-page);
  min-height: 100%;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.menu-card .mc-img { height: 172px; position: relative; overflow: hidden; }
.menu-card .mc-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-card .mc-accent { position: absolute; top: 14px; left: 14px; font-family: var(--font-accent); font-weight: 700; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: var(--card-accent); padding: 6px 12px; border-radius: 999px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.menu-card .mc-body { padding: 20px 22px 24px; }
.menu-card .mc-title { font-family: var(--font-display); font-weight: 700; font-size: 23px; color: var(--fg-1); margin: 0 0 7px; font-variation-settings: 'SOFT' 60, 'opsz' 72; }
.menu-card .mc-desc { font-family: var(--font-body); font-size: 14.5px; line-height: 1.5; color: var(--fg-2); margin: 0; }

/* ---------- Alternating feature rows ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.feature + .feature { margin-top: clamp(72px, 9vw, 128px); }
.feature.reverse .feat-media { order: 2; }
.feat-media { position: relative; }
.feat-art { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-3); position: relative; }
.feat-art img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.feat-badge {
  position: absolute; bottom: -18px; left: 24px;
  background: var(--bg-surface); border-radius: 18px; padding: 12px 16px;
  box-shadow: var(--shadow-3); display: flex; align-items: center; gap: 11px;
  border: 1px solid var(--border-soft);
}
.feat-badge .fb-ic { width: 36px; height: 36px; border-radius: 11px; background: var(--accent-tint); display: grid; place-items: center; color: var(--accent); }
.feat-badge .fb-t { font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--fg-1); }
.feat-badge .fb-s { font-family: var(--font-body); font-size: 11.5px; color: var(--fg-3); }
.feature h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3.2vw, 38px); color: var(--fg-1); margin: 14px 0 16px; line-height: 1.08; letter-spacing: -0.02em; font-variation-settings: 'SOFT' 50, 'opsz' 96; }
.feat-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 13px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; font-family: var(--font-body); font-size: 15.5px; color: var(--fg-2); line-height: 1.45; }
.feat-list .li-ic { flex-shrink: 0; width: 24px; height: 24px; border-radius: 999px; background: var(--accent-tint); color: var(--accent); display: grid; place-items: center; margin-top: 1px; }

/* chips list */
.tag-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.tag { font-family: var(--font-heading); font-weight: 600; font-size: 13px; padding: 8px 15px; border-radius: 999px; background: var(--bg-surface); color: var(--fg-2); box-shadow: var(--shadow-1); border: 1px solid var(--border-soft); }

/* ---------- Games grid ---------- */
.games-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.game-card { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-2); background: var(--bg-surface); transition: transform var(--dur-base) var(--ease-storybook), box-shadow var(--dur-base) var(--ease-page); }
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.game-card .g-img { aspect-ratio: 1; overflow: hidden; }
.game-card .g-img img { width: 100%; height: 100%; object-fit: cover; }
.game-card .g-name { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--fg-1); padding: 13px 14px 4px; line-height: 1.08; font-variation-settings: 'SOFT' 60, 'opsz' 58; }
.game-card .g-tag { font-family: var(--font-accent); font-weight: 700; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--coral-warm); padding: 0 14px 15px; }

/* ---------- Parent dashboard ---------- */
.parent-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.wa-card {
  background: var(--bg-surface); border-radius: var(--radius-xl); padding: 26px;
  box-shadow: var(--shadow-3); border: 1px solid var(--border-soft); max-width: 440px;
}
.wa-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.wa-logo { width: 44px; height: 44px; border-radius: 13px; background: #25D366; display: grid; place-items: center; flex-shrink: 0; }
.wa-head .wa-t { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--fg-1); }
.wa-head .wa-s { font-family: var(--font-body); font-size: 12.5px; color: var(--fg-3); }
.wa-bubble { background: var(--sage-pale); border-radius: 18px 18px 18px 6px; padding: 16px 18px; font-family: var(--font-body); font-size: 14.5px; line-height: 1.55; color: var(--fg-1); }
.wa-bubble strong { font-family: var(--font-display); font-weight: 700; }
.wa-time { font-family: var(--font-accent); font-size: 11px; color: var(--fg-3); text-align: right; margin-top: 6px; }
.stat-row { display: flex; gap: 14px; margin-top: 18px; }
.stat { flex: 1; background: var(--bg-surface); border-radius: 18px; padding: 16px; box-shadow: var(--shadow-2); text-align: center; border: 1px solid var(--border-soft); }
.stat .s-num { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--accent, var(--deep-moss)); line-height: 1; }
.stat .s-lab { font-family: var(--font-body); font-size: 12.5px; color: var(--fg-2); margin-top: 6px; }

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 920px; margin-inline: auto; }
.value {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg-surface); border-radius: var(--radius-l); padding: 22px 24px;
  box-shadow: var(--shadow-1); border: 1px solid var(--border-soft);
}
.value .v-ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px; background: var(--cream-gold); color: var(--royal-gold); display: grid; place-items: center; }
.value h4 { font-family: var(--font-heading); font-weight: 700; font-size: 17px; margin: 2px 0 6px; color: var(--fg-1); }
.value p { font-family: var(--font-body); font-size: 14.5px; line-height: 1.5; color: var(--fg-2); margin: 0; }

/* ---------- Library / age bands ---------- */
.bands { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.band { background: var(--bg-surface); border-radius: var(--radius-l); padding: 24px; box-shadow: var(--shadow-2); border: 1px solid var(--border-soft); }
.band .b-age { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--fg-1); }
.band .b-sub { font-family: var(--font-body); font-size: 13.5px; color: var(--fg-3); margin: 2px 0 16px; }
.band ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.band li { font-family: var(--font-body); font-size: 14.5px; color: var(--fg-2); display: flex; align-items: center; gap: 9px; }
.band li .bk { width: 7px; height: 7px; border-radius: 2px; background: var(--warm-gold); flex-shrink: 0; }

/* ---------- Library v2: two age groups, cover cards ---------- */
.lib-group { margin-top: clamp(36px, 5vw, 56px); }
.lib-group-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.lib-group-head .lg-age {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3vw, 34px);
  color: var(--fg-1); line-height: 1; font-variation-settings: 'SOFT' 70, 'opsz' 60;
}
.lib-group-head .lg-pill {
  font-family: var(--font-accent); font-weight: 700; font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ocean-blue); background: var(--sky-blue);
  padding: 6px 13px; border-radius: var(--radius-pill);
}
.lib-group-head .lg-sub { font-family: var(--font-body); font-size: 15px; color: var(--fg-3); }
.book-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 24px); }
.book-cover { display: flex; flex-direction: column; gap: 12px; }
.book-cover image-slot {
  width: 100%; height: auto; aspect-ratio: 3 / 4; display: block;
  box-shadow: var(--shadow-2); border: 1px solid var(--border-soft);
  background: var(--cream-gold);
}
.book-cover .bc-title { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--fg-1); line-height: 1.12; font-variation-settings: 'SOFT' 60, 'opsz' 60; }
.book-cover .bc-tag { font-family: var(--font-accent); font-weight: 600; font-size: 12.5px; color: var(--fg-3); margin-top: -7px; }

@media (max-width: 860px) {
  .book-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: var(--bg-surface); border-radius: var(--radius-l); padding: 26px; box-shadow: var(--shadow-2); border: 1px solid var(--border-soft); display: flex; flex-direction: column; }
.quote .q-mark { font-family: var(--font-display); font-size: 46px; line-height: 0.5; color: var(--warm-gold); margin-bottom: 16px; height: 24px; }
.quote p { font-family: var(--font-body); font-size: 15.5px; line-height: 1.6; color: var(--fg-1); margin: 0 0 20px; flex: 1; }
.quote .q-by { display: flex; align-items: center; gap: 11px; }
.quote .q-av { width: 40px; height: 40px; border-radius: 999px; background: var(--soft-sage); color: var(--forest-dark); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.quote .q-name { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--fg-1); }
.quote .q-role { font-family: var(--font-body); font-size: 12.5px; color: var(--fg-3); }

/* ---------- Roadmap / future ---------- */
.roadmap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.road { background: rgba(255,255,255,0.7); border-radius: var(--radius-l); padding: 22px; border: 1px solid var(--border-soft); }
.road .r-ic { width: 44px; height: 44px; border-radius: 13px; background: var(--bg-surface); color: var(--accent, var(--deep-moss)); display: grid; place-items: center; box-shadow: var(--shadow-1); margin-bottom: 14px; }
.road .r-soon { font-family: var(--font-accent); font-weight: 700; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--royal-gold); }
.road h4 { font-family: var(--font-heading); font-weight: 700; font-size: 16px; margin: 4px 0 7px; color: var(--fg-1); }
.road p { font-family: var(--font-body); font-size: 13.5px; line-height: 1.5; color: var(--fg-2); margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 22px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--font-display); font-weight: 700; font-size: clamp(17px, 2vw, 21px); color: var(--fg-1); }
.faq-q .faq-plus { flex-shrink: 0; width: 26px; height: 26px; position: relative; transition: transform var(--dur-base) var(--ease-storybook); color: var(--royal-gold); }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-page); }
.faq-a-inner { padding: 0 4px 22px; font-family: var(--font-body); font-size: 15.5px; line-height: 1.6; color: var(--fg-2); max-width: 64ch; }

/* ---------- Final CTA ---------- */
.cta-final { position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: clamp(48px, 7vw, 84px) clamp(28px, 5vw, 72px); text-align: center; }
.cta-final .cta-inner { position: relative; z-index: 2; }
.cta-final h2 { color: var(--fg-1); margin: 0 0 18px; }
.cta-final .lede { margin: 0 auto 30px; color: var(--fg-2); }
.cta-final .store-row { justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--twilight-blue); color: rgba(255,255,255,0.82); padding-block: clamp(56px, 7vw, 80px) 36px; }
.footer a { color: rgba(255,255,255,0.82); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.footer-brand img { height: 36px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { font-family: var(--font-body); font-size: 14px; line-height: 1.6; max-width: 30ch; margin: 18px 0 22px; color: rgba(255,255,255,0.7); }
.footer-col h5 { font-family: var(--font-accent); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-family: var(--font-body); font-size: 14.5px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.1); display: grid; place-items: center; transition: background var(--dur-fast) ease; }
.footer-social a:hover { background: rgba(255,255,255,0.2); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 26px; flex-wrap: wrap; font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-bottom .fb-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease-page), transform 0.7s var(--ease-page); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 640px; }
  .phone-stage { margin-top: 12px; }
  .menus-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .feature, .feature.reverse { grid-template-columns: 1fr; }
  .feature.reverse .feat-media { order: 0; }
  .parent-grid { grid-template-columns: 1fr; }
  .bands, .quotes { grid-template-columns: 1fr; }
  .roadmap { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .wrap, .wrap-narrow { width: 100% - 36px; width: calc(100% - 36px); }
  .menus-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .roadmap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding-top: 110px; }
}
