/* ===== Tokens ===== */
:root {
  --bg-0: #0A0714;
  --bg-1: #0D0A18;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.18);

  --text-hi: #F6F3FC;
  --text-mid: #C8BFDE;
  --text-low: #8A81A0;

  --brand: #7C3FEE;
  --brand-2: #B267FF;
  --violet-deep: #2A1364;

  --accent-1: #FF7A45;
  --accent-2: #FF3D9A;
  --accent-3: #B026FF;
  --accent-gradient: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 55%, var(--accent-3) 100%);

  --good: #3FA34D;
  --good-bg: #E3F5E6;
  --bad: #E0563A;
  --bad-bg: #FCE3DE;
  --star: #FBBF24;

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-card: 0 20px 44px rgba(0, 0, 0, 0.45);
  --shadow-btn: 0 12px 30px rgba(255, 61, 154, 0.32), 0 6px 16px rgba(255, 122, 69, 0.22);
  font-size: 16px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-hi);
  background: var(--bg-0);
  position: relative;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 900px 560px at 12% -8%, rgba(124, 63, 238, 0.32), transparent 60%),
    radial-gradient(ellipse 700px 520px at 92% 10%, rgba(255, 61, 154, 0.16), transparent 60%),
    radial-gradient(ellipse 900px 620px at 50% 55%, rgba(124, 63, 238, 0.12), transparent 60%),
    radial-gradient(ellipse 800px 520px at 85% 95%, rgba(255, 122, 69, 0.14), transparent 60%);
}

h1, h2, h3 { margin: 0; line-height: 1.15; font-weight: 800; color: var(--text-hi); }
p { margin: 0; }
a { text-decoration: none; color: inherit; }
img, svg { display: block; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn-cta {
  background: var(--accent-gradient);
  background-size: 160% 160%;
  color: #fff;
  box-shadow: var(--shadow-btn);
  width: 100%;
}

.btn-cta:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 16px 38px rgba(255, 61, 154, 0.42), 0 8px 20px rgba(255, 122, 69, 0.28); }
.btn-cta:active { transform: translateY(0); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--text-hi);
  width: 100%;
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.45); transform: translateY(-2px); }
.btn-secondary:active { transform: translateY(0); }

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

@media (min-width: 560px) {
  .btn-cta, .btn-secondary { width: auto; }
  .cta-group { flex-direction: row; flex-wrap: wrap; width: auto; }
}

.cta-group--convert {
  align-items: stretch;
}

.cta-group--convert .btn-cta {
  width: 100%;
  padding: 18px 36px;
  font-size: 1.08rem;
}

.cta-group--convert .btn-secondary--quiet {
  width: 100%;
  padding: 13px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
}

.cta-group--convert .btn-secondary--quiet:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 560px) {
  .cta-group--convert {
    align-items: center;
    justify-content: center;
  }

  .cta-group--convert .btn-cta {
    width: auto;
    min-width: 220px;
  }

  .cta-group--convert .btn-secondary--quiet {
    width: auto;
  }
}

/* ===== Topbar ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 7, 20, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--text-hi);
  transition: transform .2s ease, opacity .2s ease;
}

.topbar-nav {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  padding: 18px 20px 22px;
  background: rgba(10, 7, 20, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.topbar.is-open .topbar-nav { display: flex; }

.topbar.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topbar.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.topbar.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 10px 0;
  color: var(--text-mid);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color .2s ease;
}

.nav-links a:hover { color: var(--text-hi); }

.nav-links a[aria-current="page"] { color: var(--text-hi); }

.topbar-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  width: 100%;
}

.lang-switch {
  display: inline-flex;
  align-items: stretch;
  align-self: center;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-strong);
}

.lang-switch-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--text-low);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.lang-switch-link:hover {
  color: var(--text-hi);
}

.lang-switch-link.is-active {
  color: #fff;
  background: var(--accent-gradient);
  background-size: 160% 160%;
  box-shadow: 0 6px 16px rgba(255, 61, 154, 0.28);
  pointer-events: none;
}

.nav-cta {
  width: 100%;
  padding: 14px 24px;
  font-size: 0.95rem;
}

@media (min-width: 860px) {
  .nav-toggle { display: none; }

  .topbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    padding: 0;
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    gap: 28px;
  }

  .nav-links {
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }

  .nav-links a {
    padding: 0;
    font-size: 0.92rem;
  }

  .nav-cta {
    width: auto;
    padding: 11px 20px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .topbar-actions {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: auto;
  }
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(176, 38, 255, 0.35);
}

.logo-text { font-weight: 800; font-size: 1.15rem; color: var(--text-hi); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 900px 620px at 50% -12%, rgba(124, 63, 238, 0.55), transparent 62%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  padding: 44px 0 0;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.hero-copy { max-width: 480px; }

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 7vw, 2.6rem);
  letter-spacing: -0.01em;
}

.hero .subhead {
  margin-top: 14px;
  color: var(--text-mid);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.45;
}

.hero-microtrust {
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--text-low);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-cta { margin-top: 12px; }

.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-glow {
  position: absolute;
  top: 60px;
  width: 320px;
  height: 460px;
  background: radial-gradient(ellipse at center, rgba(178, 103, 255, 0.55) 0%, rgba(255, 61, 154, 0.28) 45%, transparent 75%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

@media (min-width: 900px) {
  .hero { padding: 30px 0; }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 40px;
    padding: 40px 0;
  }

  .hero-copy { max-width: 440px; flex: 0 0 auto; }

  .hero-cta.cta-group--convert {
    justify-content: flex-start;
    align-items: center;
  }

  .hero-visual {
    width: auto;
    flex: 0 0 auto;
  }
}

@media (min-width: 1100px) {
  .hero-copy { max-width: 480px; }
  .hero h1 { font-size: 3rem; }
}

/* ===== Phone mockup (real iPhone photo frame) ===== */
.phone {
  width: 300px;
  max-width: 78vw;
  aspect-ratio: 1370 / 2732;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.phone-frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.55));
}

.phone-screen {
  position: absolute;
  left: 7.3%;
  right: 7.3%;
  top: 3.66%;
  bottom: 3.66%;
  z-index: 1;
  background: #FFF8F1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.status-bar {
  position: relative;
  background: #5B0FD6;
  padding: 16px 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
}

.status-time { letter-spacing: 0.01em; }
.status-icons { display: flex; align-items: center; gap: 5px; }

.app-topbar {
  background: #5B0FD6;
  padding: 6px 16px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.app-topbar-back {
  position: absolute;
  left: 14px;
  background: rgba(255, 255, 255, 0.18);
  color: #EADCFA;
  font-size: 0.65rem;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.app-topbar-title { color: #fff; font-weight: 800; font-size: 0.85rem; }

.app-body {
  flex: 1;
  padding: 16px 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.level-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  box-shadow: 0 8px 20px rgba(31, 22, 51, 0.1);
}

.level-row {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 0.78rem;
  color: #1F1633;
  margin-bottom: 8px;
}

.level-count { color: #5B0FD6; }

.level-bar {
  height: 6px;
  background: #ECE4F5;
  border-radius: 999px;
  overflow: hidden;
}

.level-bar span {
  display: block;
  width: 30%;
  height: 100%;
  background: var(--good);
  border-radius: 999px;
}

.prompt-bubble {
  background: #E3EEFC;
  color: #2662C7;
  font-weight: 700;
  font-style: italic;
  font-size: 0.74rem;
  padding: 10px 14px;
  border-radius: 14px;
  text-align: center;
}

.word-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 16px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 20px rgba(31, 22, 51, 0.1);
  transition: background .35s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 140px;
}

.word-card.is-correct { background: var(--good-bg); }
.word-card.is-wrong { background: var(--bad-bg); }

.feedback-tag {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  white-space: nowrap;
}

.feedback-tag.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.feedback-tag.good { background: var(--good); color: #fff; }
.feedback-tag.bad { background: var(--bad); color: #fff; }

.speaker-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #F1EAFB;
  color: #5B0FD6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.speaker-btn.pulse { animation: speakerPulse .6s ease; }
@keyframes speakerPulse { 0%{transform:scale(1);} 50%{transform:scale(1.18); background:#E1CFFA;} 100%{transform:scale(1);} }

.word {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1F1633;
}

.sentence {
  font-size: 0.82rem;
  font-style: italic;
  color: #756E82;
  max-width: 90%;
}

.mic-area { display: flex; flex-direction: column; align-items: center; gap: 8px; padding-top: 2px; }

.mic-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: #2F8FE0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 18px rgba(47, 143, 224, 0.4);
  transition: background .3s ease, box-shadow .3s ease;
}

.mic-btn.listening {
  background: #E0563A;
  box-shadow: 0 8px 18px rgba(224, 86, 58, 0.45);
}

.mic-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(47, 143, 224, 0.5);
  opacity: 0;
}

.mic-btn.listening .mic-ring {
  animation: micRing 1.4s ease-out infinite;
  border-color: rgba(224, 86, 58, 0.55);
}

.mic-ring.r2 { animation-delay: .4s !important; }

@keyframes micRing {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.9); opacity: 0; }
}

.mic-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #4A4258;
}

@media (prefers-reduced-motion: reduce) {
  .mic-ring, .speaker-btn.pulse { animation: none !important; }
}

/* ===== Section headers ===== */
.section-head { text-align: center; margin-bottom: 34px; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #D8C4FF;
  background: rgba(124, 63, 238, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 15px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.4rem, 5vw, 1.9rem);
}

/* ===== Reveal-on-scroll ===== */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .7s cubic-bezier(.16,.8,.3,1);
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===== Core loop ===== */
.loop-section {
  padding: 80px 0 64px;
  position: relative;
  border-top: 1px solid var(--border);
}

.loop-track {
  display: flex;
  align-items: stretch;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 4px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.loop-step {
  scroll-snap-align: center;
  flex: 0 0 76%;
  position: relative;
  background: linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.02));
  border-radius: var(--radius-md);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  border-top: 1px solid rgba(178, 103, 255, 0.4);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}

.loop-step:hover { border-color: var(--border-strong); transform: translateY(-3px); }

.step-num {
  position: absolute;
  top: 6px;
  right: 14px;
  font-size: 2.6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  pointer-events: none;
}

.loop-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124, 63, 238, 0.35), rgba(255, 61, 154, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #E9DFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.loop-step h3 { font-size: 1rem; margin-bottom: 6px; position: relative; z-index: 1; }
.loop-step p { font-size: 0.85rem; color: var(--text-low); line-height: 1.4; position: relative; z-index: 1; }

.loop-arrow {
  display: none;
}

@media (min-width: 860px) {
  .loop-track {
    overflow: visible;
    padding: 4px;
  }
  .loop-step { flex: 1; }
  .loop-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-2);
    flex: 0 0 auto;
    animation: arrowPulse 1.8s ease-in-out infinite;
  }
  .loop-arrow:nth-child(4) { animation-delay: .2s; }
  .loop-arrow:nth-child(6) { animation-delay: .4s; }
}

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); opacity: .55; }
  50% { transform: translateX(4px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .loop-arrow { animation: none !important; }
}

/* ===== Feature strip (benefits list) ===== */
.features { padding: 64px 0 64px; border-top: 1px solid var(--border); }

.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  max-width: 780px;
  margin: 0 auto;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--border);
}

.feature-row:last-child { border-bottom: none; }

.feature-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 63, 238, 0.35), rgba(255, 122, 69, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #E9DFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-copy h3 { font-size: 1.02rem; margin-bottom: 5px; line-height: 1.3; }
.feature-copy p { font-size: 0.88rem; color: var(--text-low); line-height: 1.45; }

@media (min-width: 700px) {
  .features-list { grid-template-columns: 1fr 1fr; column-gap: 40px; row-gap: 4px; }
  .feature-row { border-bottom: none; padding: 14px 4px; }
}

/* ===== Social proof ===== */
.proof { padding: 8px 0 64px; }

.proof-head { margin-bottom: 28px; }

.proof-head .section-title {
  font-size: clamp(1.35rem, 4.5vw, 1.85rem);
  max-width: 22em;
  margin-inline: auto;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.proof-card {
  background: linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(16px);
}

.proof-card:not(.proof-quote) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.proof-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: rgba(124, 63, 238, 0.22);
  color: #D8C4FF;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-stars { display: flex; justify-content: center; gap: 3px; color: var(--star); margin-bottom: 8px; }
.proof-big { font-size: 2rem; font-weight: 800; color: var(--text-hi); }
.proof-label { font-size: 0.85rem; color: var(--text-low); margin-top: 4px; }

.proof-quote { text-align: left; }
.quote-text { font-size: 0.98rem; font-style: italic; line-height: 1.5; color: var(--text-mid); margin-top: 10px; }
.quote-author { margin-top: 12px; font-size: 0.82rem; font-weight: 700; color: var(--text-low); }

@media (min-width: 760px) {
  .proof-grid { grid-template-columns: 1fr 1fr 1.4fr; align-items: stretch; }
}

/* ===== Secondary CTA band ===== */
.cta-band {
  position: relative;
  background:
    radial-gradient(ellipse 700px 400px at 15% 0%, rgba(255, 122, 69, 0.35), transparent 60%),
    radial-gradient(ellipse 700px 400px at 85% 100%, rgba(255, 61, 154, 0.3), transparent 60%),
    linear-gradient(135deg, var(--violet-deep) 0%, var(--brand) 100%);
  padding: 56px 0;
  text-align: center;
  overflow: hidden;
}

.cta-band-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 6vw, 2rem); }

.store-badges--band {
  margin-top: 10px;
  gap: 14px;
}

.store-badges--band .store-badge {
  padding: 18px 32px;
  border-radius: 14px;
  font-size: 1.05rem;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.store-badges--band .store-badge svg {
  width: 24px;
  height: 24px;
}

.store-badges--band .store-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.42);
}

/* ===== Footer ===== */
.footer { padding: 52px 0 36px; background: var(--bg-1); border-top: 1px solid var(--border); }

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.footer-tagline { color: var(--text-low); font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 8px 0 10px;
  text-align: center;
}

.footer-cta h2 {
  color: var(--text-hi);
  font-size: clamp(1.35rem, 5vw, 1.75rem);
}

.footer-cta p {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 28em;
}

.footer-cta-actions {
  justify-content: center;
  width: auto;
  margin-top: 4px;
}

.footer-cta-actions .btn-secondary--quiet {
  width: auto;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text-hi);
}

.store-badges { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

.store-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-strong);
  border: 1px solid var(--border-strong);
  color: var(--text-hi);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background .2s ease, border-color .2s ease;
}

.store-badge:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.3); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 4px;
}

.footer-links a {
  color: var(--text-low);
  font-size: 0.84rem;
  font-weight: 600;
  transition: color .2s ease;
}

.footer-links a:hover { color: var(--text-mid); }

.footer-fine { margin-top: 22px; color: var(--text-low); font-size: 0.78rem; }

/* ===== Legal pages ===== */
.legal-back {
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color .2s ease;
}

.legal-back:hover { color: var(--text-hi); }

.legal-page {
  padding: 48px 0 72px;
}

.legal-page-inner {
  max-width: 760px;
}

.legal-page-head {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-page-head h1 {
  font-size: clamp(1.85rem, 5vw, 2.4rem);
  margin-bottom: 10px;
}

.legal-effective {
  color: var(--text-low);
  font-size: 0.92rem;
  font-weight: 600;
}

.legal-content h2 {
  font-size: 1.15rem;
  margin: 32px 0 12px;
  color: var(--text-hi);
}

.legal-content p,
.legal-content li {
  color: var(--text-mid);
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-content p { margin-bottom: 14px; }

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 1.25em;
}

.legal-content li { margin-bottom: 8px; }

.legal-content a {
  color: var(--brand-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover { color: var(--text-hi); }

.legal-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 36px 0 20px;
}

.legal-meta {
  color: var(--text-low);
  font-size: 0.85rem;
}

.footer--legal {
  padding-top: 28px;
  padding-bottom: 28px;
}

.footer--legal .footer-fine { margin-top: 0; }
