:root {
  --navy: #2a3f9e;
  --navy-deep: #0f1348;
  --navy-press: #1e2f7a;
  --flag-red: #c8102e;
  --flag-red-bright: #e11d3a;
  --flag-red-press: #8f0b20;
  --text: #12141f;
  --text-secondary: #5c6478;
  --muted: #8a94b8;
  --border: #d9e1f8;
  --white: #ffffff;
  --canvas: #f0f3ff;
  --peach: #ffd9be;
  --sky: #c8d8ff;
  --mint: #c8f0d8;
  --blush: #ffd3df;
  --flame: #ff8b3d;
  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --shell: min(1140px, calc(100% - 2.5rem));
  --radius-btn: 18px;
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--flag-red); }

.shell { width: var(--shell); margin-inline: auto; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 1000;
  background: var(--navy-deep); color: white; padding: 0.6rem 1rem; border-radius: 999px;
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  margin: 0 0 0.65rem;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flag-red);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  inset: 1rem 1.25rem auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  color: white;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 18px rgba(7, 16, 42, 0.35);
  transition: color 0.35s ease, text-shadow 0.35s ease;
}
.brand img { border-radius: 11px; }
/* is-solid only while header sits over light sections (story, claim, how, finale, faq) */
.site-header.is-solid .brand {
  color: var(--navy);
  text-shadow: none;
}

.pill-nav {
  display: none;
  justify-self: center;
  padding: 0.35rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(7,16,42,0.14);
  gap: 0.1rem;
}
.pill-nav a {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: 0.2s ease;
}
.pill-nav a:hover,
.pill-nav a.is-active {
  background: color-mix(in srgb, var(--flag-red) 14%, white);
  color: var(--flag-red);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-self: end;
}
a.header-cta { display: none; }

.nav-toggle {
  width: 2.75rem; height: 2.75rem; border: 0; border-radius: 12px;
  background: rgba(255,255,255,0.95);
  display: grid; place-content: center; gap: 5px; cursor: pointer;
  box-shadow: 0 8px 24px rgba(7,16,42,0.14);
}
.nav-toggle span:not(.sr-only) {
  display: block; width: 16px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
  transform: translateY(3.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 4.5rem; left: 1rem; right: 1rem; z-index: 99;
  display: none;
  gap: 0.5rem; padding: 1rem;
  background: white; border-radius: 20px;
  box-shadow: 0 20px 50px rgba(7,16,42,0.2);
}
.mobile-nav:not([hidden]) {
  display: grid;
  animation: navPop 0.28s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a:not(.btn) {
  font-weight: 800; color: var(--navy); padding: 0.65rem 0.5rem;
}

@keyframes navPop {
  from { opacity: 0; transform: translateY(-8px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

@media (min-width: 920px) {
  .pill-nav { display: flex; }
  a.header-cta { display: inline-flex; }
  .nav-toggle,
  .mobile-nav,
  .mobile-nav:not([hidden]) { display: none !important; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3.1rem; padding: 0.75rem 1.55rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body); font-weight: 800; font-size: 0.95rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid transparent; border-bottom-width: 5px;
  transition: filter 0.15s ease, transform 0.08s ease, border-bottom-width 0.08s ease;
  cursor: pointer; user-select: none;
}
.btn:hover { filter: brightness(1.06); }
.btn:active { border-bottom-width: 2px; transform: translateY(3px); }
.btn-primary, .btn-dark {
  background: var(--flag-red); color: white;
  border-color: var(--flag-red); border-bottom-color: var(--flag-red-press);
  box-shadow: 0 12px 30px rgba(200,16,46,0.28);
}
.btn-ghost {
  background: white;
  color: var(--navy);
  border-color: var(--border);
  border-bottom-color: color-mix(in srgb, var(--navy) 22%, var(--border));
  box-shadow: 0 8px 22px rgba(7, 16, 42, 0.06);
}
.btn-ghost:hover { filter: none; background: color-mix(in srgb, var(--sky) 35%, white); }
.btn-sm { min-height: 2.55rem; padding-inline: 1.1rem; font-size: 0.82rem; }

/* ===== HERO — type-first, no mascot ===== */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #1a3a6e;
  display: grid;
  place-items: center;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      165deg,
      #1e4d8c 0%,
      #2a6aa8 28%,
      #3d8ec4 52%,
      #7eb8d4 72%,
      #e8b48a 88%,
      #f0c4a0 100%
    );
  animation: washShift 18s ease-in-out infinite alternate;
}

@keyframes washShift {
  from { filter: saturate(1) brightness(1); }
  to { filter: saturate(1.08) brightness(1.04); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}
.hero-orb--a {
  width: min(70vw, 560px);
  height: min(70vw, 560px);
  top: -8%;
  right: -6%;
  background: radial-gradient(circle, rgba(255, 220, 140, 0.55) 0%, rgba(255, 180, 100, 0.15) 45%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb--b {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  bottom: 8%;
  left: -10%;
  background: radial-gradient(circle, rgba(80, 160, 210, 0.45) 0%, transparent 70%);
  animation: orbFloat 14s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(2%, -3%) scale(1.06); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(94vw, 56rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  padding: 6rem 1rem 5rem;
  pointer-events: none;
}
.hero-copy a { pointer-events: auto; }

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
}

.hero-brand-line {
  display: block;
  font-size: clamp(6.5rem, 22vw, 14rem);
  line-height: 0.78;
  letter-spacing: -0.055em;
  color: #fff;
  text-shadow:
    0 4px 0 #c8102e,
    0 9px 0 #9a0c22,
    0 22px 60px rgba(8, 20, 45, 0.4);
}

.hero-punch {
  display: block;
  margin: 1rem auto 0;
  font-size: clamp(1.25rem, 3.2vw, 2.1rem);
  line-height: 1.2;
  max-width: 18ch;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 0 rgba(15, 40, 70, 0.25), 0 8px 28px rgba(8, 20, 45, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.75rem;
}

.store-badge {
  display: inline-flex;
  line-height: 0;
  border: 0;
  outline: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.22s cubic-bezier(0.34, 1.45, 0.64, 1), filter 0.15s ease;
}
.store-badge img {
  height: 44px;
  width: auto;
  max-width: none;
  border: 0;
  outline: none;
  display: block;
}
.store-badge:hover {
  transform: translateY(-4px) scale(1.05);
  filter: brightness(1.06);
}
.store-badge:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--flag-red);
  display: grid; place-items: center;
  box-shadow: 0 14px 32px rgba(200, 16, 46, 0.42);
  animation: cueFloat 2s ease-in-out infinite;
}
.scroll-cue span {
  width: 11px; height: 11px;
  border-right: 2.5px solid white;
  border-bottom: 2.5px solid white;
  transform: rotate(45deg) translate(-2px, -2px);
}
@keyframes cueFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

@media (min-width: 700px) {
  .store-badge img { height: 52px; }
  .hero-punch { max-width: 22ch; }
}

@media (max-width: 480px) {
  .hero-brand-line { font-size: clamp(5.2rem, 28vw, 7rem); }
  .hero-punch { font-size: 1.2rem; margin-top: 0.75rem; }
  .store-badge img { height: 40px; }
  .hero-actions { margin-top: 1.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wash,
  .hero-orb--a,
  .hero-orb--b,
  .scroll-cue { animation: none; }
}

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  background: var(--flag-red);
  padding: 1rem 0;
  border-block: 4px solid var(--flag-red-press);
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: white;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.marquee-track span::after {
  content: "★";
  margin-left: 2.5rem;
  color: #ffd36a;
  font-size: 0.7em;
}

/* ===== STORY ===== */
.story {
  height: 420vh;
  position: relative;
}

.story-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.story-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #ffe0c8 0%, #fff 55%, #e8f0ff 100%);
  transition: background 0.6s ease;
}
.story-bg[data-tone="learn"] { background: linear-gradient(160deg, #ffe4cc, #fff8f2 50%, #ffe9d8); }
.story-bg[data-tone="speak"] { background: linear-gradient(160deg, #ffd4e0, #fff5f8 50%, #ffe8ef); }
.story-bg[data-tone="streak"] { background: linear-gradient(160deg, #d4ffe4, #f2fff7 50%, #c8f5d8); }
.story-bg[data-tone="free"] { background: linear-gradient(160deg, #d4e0ff, #f2f5ff 50%, #c8d8ff); }

.story-stage {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 2rem));
  height: min(72vh, 600px);
}

.story-panel {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 1.5rem;
  align-content: center;
  justify-items: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.story-panel.is-active { opacity: 1; visibility: visible; }

.story-art img {
  width: min(58vw, 340px);
  filter: drop-shadow(0 24px 48px rgba(42, 63, 158, 0.16));
}

.story-kicker {
  margin: 0 0 0.6rem;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--flag-red);
}

.story-panel h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.story-sub {
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 28ch;
  font-weight: 700;
}

.story-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 2;
}
.story-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(42, 63, 158, 0.2);
  transition: 0.3s ease;
}
.story-dots span.is-active {
  background: var(--flag-red);
  transform: scale(1.35);
}

@media (min-width: 900px) {
  .story-panel {
    grid-template-columns: 1fr 1.15fr;
    text-align: left;
    justify-items: start;
    align-items: center;
    gap: 3rem;
  }
  .story-art {
    justify-self: center;
  }
  .story-art img { width: min(38vw, 440px); }
}

/* ===== WORLD ===== */
.world {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 5.5rem 0 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(255, 180, 140, 0.45), transparent 55%),
    linear-gradient(180deg, #3db8d4 0%, #6eb8ff 40%, #ffc4a8 100%);
  background-color: #ffc4a8;
  overflow: hidden;
  color: white;
}

/* GSAP pin-spacer is transparent — keep brand fill behind the pinned section */
.pin-spacer:has(> .world) {
  background:
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(255, 180, 140, 0.45), transparent 55%),
    linear-gradient(180deg, #3db8d4 0%, #6eb8ff 40%, #ffc4a8 100%);
  background-color: #ffc4a8;
}

.world-head {
  width: var(--shell);
  margin: 0 auto 2.25rem;
}
.world-head .eyebrow { color: rgba(255,255,255,0.85); }
.world-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 24px rgba(7, 16, 42, 0.18);
}

.world-track {
  display: flex;
  gap: 1.35rem;
  padding: 0.5rem max(1.25rem, calc((100vw - 1140px) / 2));
  width: max-content;
  will-change: transform;
}

.world-card {
  width: min(78vw, 340px);
  flex: 0 0 auto;
  padding: 1.75rem 1.4rem 1.9rem;
  border-radius: 32px;
  background: rgba(255,255,255,0.95);
  border: 3px solid rgba(255,255,255,0.7);
  box-shadow: 0 20px 50px rgba(7, 16, 42, 0.16);
  text-align: center;
  color: var(--navy);
  transition: transform 0.25s ease;
}
.world-card:hover { transform: translateY(-10px) rotate(-1.5deg); }
.world-card img {
  width: 190px;
  margin: 0 auto 1.1rem;
  filter: drop-shadow(0 14px 28px rgba(42, 63, 158, 0.14));
}
.world-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}
.world-card p { margin: 0; color: var(--text-secondary); font-weight: 700; }

.tone-peach { background: linear-gradient(165deg, #ffe8d8, #fff); }
.tone-sky { background: linear-gradient(165deg, #e8f0ff, #fff); }
.tone-mint { background: linear-gradient(165deg, #e4fff0, #fff); }
.tone-blush { background: linear-gradient(165deg, #ffe8ef, #fff); }
.tone-navy { background: linear-gradient(165deg, #e6eeff, #fff); }
.tone-flame { background: linear-gradient(165deg, #ffe8d4, #fff); }

/* ===== CLAIM ===== */
.claim {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: var(--canvas);
}
.claim-glow {
  position: absolute;
  width: 70vmax; height: 70vmax;
  left: 50%; top: 45%;
  translate: -50% -50%;
  background: radial-gradient(circle, rgba(200,16,46,0.12), transparent 60%);
  pointer-events: none;
}
.claim-inner {
  position: relative;
  width: min(1000px, calc(100% - 2rem));
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
  padding: 4rem 0;
}
.claim-roko {
  width: min(58vw, 340px);
  filter: drop-shadow(0 28px 50px rgba(7,16,42,0.16));
}
.claim-inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--navy);
}
.claim-inner h2 span {
  display: block;
  overflow: hidden;
}

/* ===== HOW ===== */
.how {
  padding: 6rem 0;
  background: white;
}
.section-head {
  max-width: 40rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}
.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1rem;
}
.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.4rem 1.3rem;
  background: var(--canvas);
  border: 2px solid var(--border);
  border-bottom-width: 5px;
  border-radius: 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.steps li:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(42, 63, 158, 0.1);
}
.step-num {
  width: 3rem; height: 3rem; border-radius: 14px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem;
  color: white; background: var(--navy);
  border-bottom: 4px solid var(--navy-press);
}
.steps h3 {
  margin: 0.15rem 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.35rem; color: var(--navy);
}
.steps p { margin: 0; color: var(--text-secondary); font-weight: 600; }

@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
  .steps li { grid-template-columns: 1fr; }
}

/* ===== FINALE ===== */
.finale {
  position: relative;
  padding: 6.5rem 0;
  overflow: hidden;
  color: var(--navy);
}
.finale-scene {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 15% 30%, rgba(255, 200, 120, 0.55), transparent 55%),
    radial-gradient(ellipse 50% 45% at 85% 70%, rgba(255, 150, 180, 0.45), transparent 55%),
    linear-gradient(145deg, #ffd4b8 0%, #ffb8c8 40%, #b8cfff 100%);
}
.finale-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.finale-roko {
  width: min(72%, 320px);
  margin-inline: auto;
  filter: drop-shadow(0 24px 44px rgba(42, 63, 158, 0.2));
}
.finale h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--navy);
}
.finale p {
  margin: 0 auto 1.6rem;
  max-width: 30ch;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 1.15rem;
}
.finale .hero-actions { justify-content: center; }

@media (min-width: 800px) {
  .finale-grid {
    grid-template-columns: auto 1fr;
    text-align: left;
    gap: 3.5rem;
  }
  .finale-roko { margin: 0; width: 340px; }
  .finale p, .finale .hero-actions {
    margin-inline: 0;
    justify-content: flex-start;
  }
}

/* ===== FAQ / FOOTER ===== */
.faq { padding: 5.5rem 0; background: var(--canvas); }
.faq-list {
  display: grid; gap: 0.75rem;
  max-width: 720px; margin-inline: auto;
}
.faq-item {
  background: white;
  border: 2px solid var(--border);
  border-bottom-width: 5px;
  border-radius: 18px;
  padding: 0 1.15rem;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}
.faq-item:hover {
  border-color: #c5d0f5;
  transform: translateY(-2px);
}
.faq-item.is-open,
.faq-item[open] {
  border-color: var(--navy);
  box-shadow: 0 10px 28px rgba(42, 63, 158, 0.1);
  transform: translateY(-3px);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--navy);
  padding: 1.1rem 0;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--sky);
  transition:
    transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
    background 0.3s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
}
.faq-icon::before {
  width: 10px;
  height: 2.5px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2.5px;
  height: 10px;
  transform: translate(-50%, -50%);
}
.faq-item.is-open .faq-icon,
.faq-item[open] .faq-icon {
  background: var(--navy);
  transform: rotate(90deg);
}
.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after,
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: white;
}
.faq-item.is-open .faq-icon::after,
.faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}
.faq-panel {
  overflow: hidden;
}
.faq-panel p {
  margin: 0;
  padding: 0 0 1.15rem;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.5;
}
.faq-js .faq-panel {
  height: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 2.5rem;
  background: #1a3a6e;
  color: rgba(255, 255, 255, 0.78);
}
.footer-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.footer-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      165deg,
      #1e4d8c 0%,
      #2a6aa8 36%,
      #3d8ec4 68%,
      #1a3a6e 100%
    );
}
.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.footer-orb--a {
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  right: -10%;
  top: -18%;
  background: radial-gradient(circle, rgba(255, 220, 140, 0.4) 0%, rgba(255, 180, 100, 0.12) 45%, transparent 70%);
}
.footer-orb--b {
  width: min(65vw, 480px);
  height: min(65vw, 480px);
  left: -12%;
  bottom: -22%;
  background: radial-gradient(circle, rgba(80, 160, 210, 0.4) 0%, transparent 70%);
}

.footer-inner {
  position: relative;
  display: grid;
  gap: 2.75rem;
}

.footer-close {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}
.footer-roko {
  width: min(42vw, 168px);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.28));
}
.footer-kicker {
  margin: 0 0 0.55rem;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 211, 190, 0.85);
}
.footer-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 12vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: white;
}
.footer-lede {
  margin: 0.9rem auto 0;
  max-width: 28ch;
  font-weight: 700;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.68);
}
.footer-stores {
  margin-top: 1.5rem;
  justify-content: center;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18) 18%,
    rgba(255, 255, 255, 0.18) 82%,
    transparent
  );
}

.footer-meta {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.footer-brand {
  color: white;
  text-shadow: none;
  justify-self: start;
}
.footer-nav {
  display: grid;
  grid-template-columns: auto auto;
  gap: 1.75rem 2.75rem;
  justify-content: start;
}
.footer-nav-group {
  display: grid;
  gap: 0.55rem;
  justify-items: start;
}
.footer-nav-label {
  margin: 0 0 0.15rem;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}
.footer-nav-group a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-nav-group a:hover {
  color: white;
  transform: translateX(3px);
}

.footer-copy {
  margin: 0;
  padding-top: 0.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.34);
}

@media (min-width: 760px) {
  .footer-close {
    grid-template-columns: auto 1fr;
    text-align: left;
    align-items: center;
    gap: 2.5rem;
    justify-items: start;
  }
  .footer-lede { margin-inline: 0; }
  .footer-stores { justify-content: flex-start; }
  .footer-meta {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
  .footer-nav {
    gap: 3.5rem;
  }
}

[data-reveal], [data-reveal-art] {
  opacity: 0;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-art] { opacity: 1; }
  .world-card:hover, .steps li:hover { transform: none; }
  .faq-item,
  .faq-item:hover,
  .faq-item.is-open,
  .faq-item[open],
  .faq-icon { transition: none; transform: none; }
}
