/* ── Reset & Custom Properties ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #208ccb;
  --blue-light:  #4aadd8;
  --blue-dark:   #1570a0;
  --pink:        #e81e60;
  --pink-light:  #f0487f;
  --bg:          #FFFFFF;
  --bg-alt:      #F4F6FB;
  --surface:     #EEF1F8;
  --surface-2:   #E2E6F4;
  --text-1:      #0D0F1C;
  --text-2:      #3D4468;
  --text-3:      #7A82A8;
  --divider:     #E0E3F0;
  --card-bg:     #FFFFFF;
  --card-border: rgba(0,0,0,0.07);
  --card-shadow: 0 2px 16px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.04);
  --phone-border: rgba(0,0,0,0.10);
  --phone-shadow: 0 20px 60px rgba(0,0,0,0.13), 0 4px 16px rgba(0,0,0,0.07);
  --radius-sm:   12px;
  --radius-md:   18px;
  --radius-lg:   24px;
  --radius-full: 9999px;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --transition:  0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:          #09090f;
    --bg-alt:      #0f1018;
    --surface:     #1a1b28;
    --surface-2:   #22243a;
    --text-1:      #F0F2FA;
    --text-2:      #9AA2C0;
    --text-3:      #606887;
    --divider:     #1e2033;
    --card-bg:     #14151f;
    --card-border: rgba(255,255,255,0.07);
    --card-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
    --phone-border: rgba(255,255,255,0.12);
    --phone-shadow: 0 32px 80px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.06);
  }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
strong { color: var(--text-1); }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .screenshots-track { animation: none !important; }
}

/* ── Accessibility ───────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  padding: 12px 20px; background: var(--blue); color: #fff;
  font-weight: 700; border-radius: var(--radius-sm); font-size: 15px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
a:focus-visible, button:focus-visible { border-radius: var(--radius-sm); }

/* ── Scroll Reveal ────────────────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity var(--transition), transform var(--transition); }
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="100"] { transition-delay: 0.1s; }
[data-reveal][data-reveal-delay="150"] { transition-delay: 0.15s; }
[data-reveal][data-reveal-delay="200"] { transition-delay: 0.2s; }

/* ── Utilities ────────────────────────────────────────────────────────────── */
.text-blue { color: var(--blue); }
.text-gradient {
  background: linear-gradient(90deg, var(--blue) 0%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Layout containers ────────────────────────────────────────────────────── */
.container {
  max-width: 1100px; margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: flex; align-items: center; gap: clamp(32px, 5vw, 64px);
}
.container--center {
  max-width: 860px; margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px); text-align: center;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-full);
  font-family: var(--font); font-size: clamp(14px, 2vw, 16px); font-weight: 600;
  cursor: pointer; border: none; white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 20px rgba(32,140,203,0.30);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 8px 28px rgba(32,140,203,0.42); }

.btn-ghost {
  background: var(--surface); color: var(--text-2);
  border: 1px solid var(--divider);
}
.btn-ghost:hover { background: var(--surface-2); color: var(--text-1); }

.btn-play {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--radius-md);
  background: #208ccb; background: var(--blue);
  color: #fff !important; font-family: var(--font); font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(32,140,203,0.30);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-play:hover { background: #1570a0; background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(32,140,203,0.42); }
.btn-play--sm { padding: 10px 20px; font-size: 14px; box-shadow: none; }
.btn-play--sm:hover { box-shadow: 0 4px 16px rgba(32,140,203,0.30); }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(255,255,255,0);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--divider);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
@media (prefers-color-scheme: dark) {
  .nav.scrolled { background: rgba(9,9,15,0.88); }
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 36px; width: auto; display: block; }

.nav-links {
  display: none;
  list-style: none; gap: 8px;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  padding: 6px 12px; border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover { color: var(--text-1); background: var(--surface); }

.nav-play-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: var(--radius-full);
  background: #208ccb; background: var(--blue);
  color: #fff !important; font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav-play-btn:hover { background: #1570a0; background: var(--blue-dark); transform: scale(1.04); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(56px, 10vw, 100px) clamp(16px, 4vw, 48px) clamp(48px, 8vw, 80px);
  overflow: hidden; text-align: center;
}
.hero-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px; border-radius: 50%; pointer-events: none;
  background:
    radial-gradient(ellipse at 40% 40%, rgba(32,140,203,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 65% 55%, rgba(232,30,96,0.07) 0%, transparent 50%);
}

.hero-badge {
  display: inline-block; padding: 6px 14px; border-radius: var(--radius-full);
  background: rgba(32,140,203,0.10); color: var(--blue);
  border: 1px solid rgba(32,140,203,0.22);
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(40px, 8vw, 80px); font-weight: 900; line-height: 1.04;
  letter-spacing: clamp(-2px, -0.04em, -1px); color: var(--text-1); margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px); color: var(--text-2); line-height: 1.75;
  max-width: 520px; margin: 0 auto 36px;
}
.hero-sub strong { color: var(--text-1); font-weight: 700; }

.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 32px;
}

.server-strip {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-top: 4px;
}
.server-label { font-size: 13px; color: var(--text-3); font-weight: 500; }
.server-chip {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-full);
  background: var(--surface); color: var(--text-2);
  font-size: 12px; font-weight: 600; border: 1px solid var(--divider);
}

.hero-phone {
  margin-top: 48px; display: flex; justify-content: center;
}

@media (min-width: 900px) {
  .hero {
    text-align: left;
    display: grid; grid-template-columns: 1fr auto;
    align-items: center; gap: 48px;
    max-width: 1100px; margin: 0 auto;
  }
  .hero-badge   { display: block; width: fit-content; }
  .hero-sub     { margin-left: 0; }
  .hero-cta     { justify-content: flex-start; }
  .server-strip { justify-content: flex-start; }
  .hero-phone   { margin-top: 0; }
  .hero-glow    { display: none; }
  .hero-content { padding: clamp(56px, 10vw, 100px) 0; }
}

/* ── Phone Frame ─────────────────────────────────────────────────────────── */
.phone-frame {
  position: relative;
  width: 260px; aspect-ratio: 9/19.5;
  border-radius: 40px;
  border: 1.5px solid var(--phone-border);
  background: var(--card-bg);
  overflow: hidden;
  box-shadow: var(--phone-shadow);
}
.phone-frame--small { width: 180px; border-radius: 28px; }
.phone-frame--xs    { width: 150px; border-radius: 24px; }

.phone-screen {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0; z-index: 1;
}
.phone-fallback {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: var(--card-bg); color: var(--text-3); font-size: 12px;
}
.phone-fallback-logo { width: 48px; height: 48px; opacity: 0.4; }

/* ── Trust strip ─────────────────────────────────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider);
  background: var(--bg-alt); padding: 14px clamp(16px, 4vw, 48px);
}
.trust-strip-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px clamp(16px, 3vw, 32px);
  font-size: clamp(13px, 1.5vw, 15px); font-weight: 600; color: var(--text-2);
}
.trust-icon { font-size: 18px; flex-shrink: 0; }
.trust-divider { width: 1px; height: 32px; background: var(--divider); flex-shrink: 0; }

@media (max-width: 600px) {
  .trust-divider { display: none; }
  .trust-item { padding: 8px 12px; font-size: 12px; }
}

/* ── Section common ──────────────────────────────────────────────────────── */
.section-badge {
  display: inline-block; padding: 5px 12px; border-radius: var(--radius-full);
  background: rgba(232,30,96,0.08); color: var(--pink);
  border: 1px solid rgba(232,30,96,0.20);
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 18px;
}
.section-badge--blue {
  background: rgba(32,140,203,0.10); border-color: rgba(32,140,203,0.22); color: var(--blue);
}

.feature-title {
  font-size: clamp(26px, 4vw, 48px); font-weight: 800;
  letter-spacing: clamp(-1px, -0.025em, -0.5px); line-height: 1.1;
  color: var(--text-1); margin-bottom: 18px;
}
.feature-title--center { text-align: center; }

.feature-desc {
  font-size: clamp(15px, 2vw, 17px); color: var(--text-2); line-height: 1.8;
  margin-bottom: 28px; max-width: 480px;
}
.feature-desc--center { text-align: center; margin: 0 auto 36px; }

.feature-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px;
}
.feature-list li {
  font-size: clamp(14px, 1.8vw, 16px); color: var(--text-2);
  display: flex; gap: 10px; align-items: flex-start;
}

/* ── Feature sections ────────────────────────────────────────────────────── */
.feature-section { padding: clamp(60px, 8vw, 110px) 0; background: var(--bg); }
.feature-alt     { background: var(--bg-alt); }
.feature-dark {
  background: #181D2A; color: #E8EAF0;
}
@media (prefers-color-scheme: dark) {
  .feature-section { background: var(--bg); }
  .feature-alt     { background: var(--bg-alt); }
  .feature-dark    { background: #070810; }
}

.feature-section .container { flex-direction: column; gap: 40px; }
.feature-text { flex: 1; }
.feature-phones { display: flex; gap: 20px; align-items: flex-end; justify-content: center; }
.feature-phone-center { display: flex; justify-content: center; }
.phone-float-1 { transform: rotate(-4deg) translateY(-16px); }
.phone-float-2 { transform: rotate(3deg) translateY(8px); }

@media (min-width: 768px) {
  .feature-section .container { flex-direction: row; gap: clamp(32px, 5vw, 64px); }
  .feature-section.reverse .container { flex-direction: row-reverse; }
}

/* Feature-dark text overrides */
.feature-dark .feature-title { color: #E8EAF0; }
.feature-dark .feature-desc  { color: #A0A8C8; }
.feature-dark .feature-list li { color: #A0A8C8; }

/* ── Colour swatches ─────────────────────────────────────────────────────── */
.color-swatches { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.swatch {
  width: 30px; height: 30px; border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18); transition: transform 0.2s ease; cursor: default;
}
.swatch:hover { transform: scale(1.2); }
.swatch--more {
  background: var(--surface-2); color: var(--text-2);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── Scrobble chip ───────────────────────────────────────────────────────── */
.scrobble-services { display: flex; flex-wrap: wrap; gap: 10px; }
.scrobble-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: var(--radius-full);
  background: var(--surface); border: 1px solid var(--divider);
  font-size: 14px; font-weight: 600; color: var(--text-1);
}
.scrobble-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ── Smart Discovery section ─────────────────────────────────────────────── */
.discovery-section {
  position: relative;
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--bg-alt); overflow: hidden;
}
.discovery-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; pointer-events: none;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(32,140,203,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 50%, rgba(232,30,96,0.07) 0%, transparent 50%);
}
.discovery-container {
  max-width: 1100px; margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px); text-align: center;
}
.discovery-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 20px; margin-top: 48px; text-align: left;
}
.discovery-card {
  background: var(--card-bg); border: 1px solid var(--divider); border-radius: var(--radius-lg);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.discovery-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.dc-mix      { border-top: 3px solid var(--blue); }
.dc-discover { border-top: 3px solid #7b6dc4; }
.dc-moods    { border-top: 3px solid var(--pink); }

.dc-icon  { font-size: 36px; line-height: 1; }
.dc-badge {
  display: inline-block; padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; width: fit-content;
}
.dc-badge--blue   { background: rgba(32,140,203,0.12); color: var(--blue-dark); border: 1px solid rgba(32,140,203,0.22); }
.dc-badge--purple { background: rgba(123,109,196,0.12); color: #6053a8;         border: 1px solid rgba(123,109,196,0.22); }
.dc-badge--pink   { background: rgba(232,30,96,0.10);  color: var(--pink);      border: 1px solid rgba(232,30,96,0.20); }
@media (prefers-color-scheme: dark) {
  .dc-badge--blue   { color: var(--blue-light); }
  .dc-badge--purple { color: #a89ee0; }
  .dc-badge--pink   { color: var(--pink-light); }
}

.discovery-card h3 { font-size: 20px; font-weight: 800; color: var(--text-1); margin: 0; }
.discovery-card p  { font-size: 14px; color: var(--text-2); line-height: 1.7; margin: 0; flex: 1; }

.dc-tracklist { display: flex; flex-direction: column; gap: 0; margin-top: 4px; }
.dc-track {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--divider);
}
.dc-track:last-child { border-bottom: none; }
.dc-track--more { opacity: 0.5; }
.dc-track-num  { font-size: 12px; color: var(--text-3); width: 16px; flex-shrink: 0; }
.dc-track-art  { width: 32px; height: 32px; border-radius: 6px; flex-shrink: 0; }
.dc-ta-1 { background: linear-gradient(135deg, #1a6b9a, #2e9fd4); }
.dc-ta-2 { background: linear-gradient(135deg, #7b4b00, #c47a00); }
.dc-ta-3 { background: linear-gradient(135deg, #6b1a1a, #b03030); }
.dc-track-info { display: flex; flex-direction: column; gap: 1px; overflow: hidden; flex: 1; }
.dc-track-title  { font-size: 13px; font-weight: 600; color: var(--text-1); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dc-track-artist { font-size: 11px; color: var(--text-3); }

.dc-albums { display: flex; gap: 10px; align-items: flex-end; margin-top: 4px; }
.dc-album-item { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.dc-album-art { width: 100%; aspect-ratio: 1; border-radius: 10px; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.dca-1 { background: linear-gradient(135deg, #1a5276, #2874a6); }
.dca-2 { background: linear-gradient(135deg, #4a235a, #7d3c98); }
.dca-3 { background: linear-gradient(135deg, #1e4620, #388e3c); }
.dc-album-age { font-size: 10px; color: var(--text-3); text-align: center; line-height: 1.3; }
.dc-age--never { color: var(--blue); font-weight: 600; }

.dc-mood-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.mood-chip {
  display: inline-block; padding: 6px 14px; border-radius: var(--radius-full);
  background: var(--surface); border: 1px solid var(--divider);
  font-size: 13px; font-weight: 600; color: var(--text-2); cursor: default; user-select: none;
}
.mood-chip--active { background: rgba(32,140,203,0.12); border-color: rgba(32,140,203,0.28); color: var(--blue); }

@media (min-width: 640px) {
  .discovery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Audiobook visual card ───────────────────────────────────────────────── */
.ab-card {
  width: 300px; max-width: 100%;
  background: var(--card-bg); border: 1px solid var(--divider);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--card-shadow);
}
.ab-header {
  display: flex; gap: 14px; padding: 20px 18px;
  background: linear-gradient(135deg, rgba(32,140,203,0.08) 0%, rgba(232,30,96,0.06) 100%);
  border-bottom: 1px solid var(--divider);
}
.ab-cover {
  width: 72px; height: 72px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, #1a5276, #7d3c98);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.ab-meta { overflow: hidden; display: flex; flex-direction: column; justify-content: center; gap: 3px; }
.ab-title  { font-size: 15px; font-weight: 700; color: var(--text-1); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ab-author { font-size: 13px; color: var(--text-2); }
.ab-badge  {
  display: inline-block; margin-top: 4px;
  padding: 2px 8px; border-radius: var(--radius-full);
  background: rgba(32,140,203,0.10); border: 1px solid rgba(32,140,203,0.20);
  font-size: 11px; font-weight: 700; color: var(--blue); width: fit-content;
}
.ab-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 12px; }
.ab-row { display: flex; align-items: center; justify-content: space-between; }
.ab-chapter { font-size: 13px; color: var(--text-2); font-weight: 500; }
.ab-time { font-size: 13px; color: var(--text-3); }
.ab-progress-wrap { display: flex; flex-direction: column; gap: 6px; }
.ab-progress-bar {
  width: 100%; height: 6px; border-radius: 3px;
  background: var(--surface-2); overflow: hidden;
}
.ab-progress-fill { height: 100%; border-radius: 3px; background: var(--blue); }
.ab-pct { font-size: 11px; color: var(--text-3); text-align: right; }
.ab-controls { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 4px 0; }
.ab-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: background 0.2s ease;
}
.ab-btn:hover { background: var(--surface-2); }
.ab-btn-play {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff; box-shadow: 0 4px 16px rgba(32,140,203,0.30);
}
.ab-chapter-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--divider); padding-top: 12px; }
.ab-chapter-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--divider);
}
.ab-chapter-row:last-child { border-bottom: none; }
.ab-ch-num  { font-size: 11px; color: var(--text-3); width: 20px; flex-shrink: 0; }
.ab-ch-name { font-size: 13px; color: var(--text-2); flex: 1; }
.ab-ch-active { color: var(--blue); font-weight: 600; }
.ab-ch-time { font-size: 11px; color: var(--text-3); flex-shrink: 0; }

/* ── Feature grid ────────────────────────────────────────────────────────── */
.features-grid-section { padding: clamp(60px, 8vw, 110px) 0; background: var(--bg); }
.features-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 16px; margin-top: 48px;
}
.feature-card {
  background: var(--card-bg); border-radius: var(--radius-md);
  padding: clamp(18px, 2.5vw, 26px) clamp(16px, 2.5vw, 22px);
  border: 1px solid var(--divider); box-shadow: var(--card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.10); }
.feature-card-icon { font-size: 30px; margin-bottom: 12px; }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--text-1); }
.feature-card p  { font-size: 14px; color: var(--text-2); line-height: 1.65; }

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Screenshots ─────────────────────────────────────────────────────────── */
.screenshots-section { padding: clamp(60px, 8vw, 110px) 0; background: var(--bg-alt); overflow: hidden; }
.screenshots-carousel {
  margin-top: 48px; overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.screenshots-track {
  display: flex; gap: 24px; width: max-content;
  animation: scroll-carousel 32s linear infinite;
}
.screenshots-track:hover { animation-play-state: paused; }
@keyframes scroll-carousel {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.screenshot-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.screenshot-label { font-size: 13px; font-weight: 600; color: var(--text-3); letter-spacing: 0.5px; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-section {
  padding: clamp(60px, 8vw, 110px) 0; background: var(--bg);
}
.faq-list {
  max-width: 720px; margin: 48px auto 0;
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--divider); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--card-shadow);
}
.faq-item { border-bottom: 1px solid var(--divider); background: var(--card-bg); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: clamp(15px, 2vw, 16px); font-weight: 600;
  color: var(--text-1); text-align: left;
  transition: background 0.15s ease;
}
.faq-question:hover { background: var(--surface); }
.faq-question[aria-expanded="true"] { color: var(--blue); background: rgba(32,140,203,0.05); }

.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer { padding: 0 24px 20px; }
.faq-answer p { font-size: 15px; color: var(--text-2); line-height: 1.75; }

/* ── Download CTA ─────────────────────────────────────────────────────────── */
.download-section {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  background: linear-gradient(135deg, rgba(32,140,203,0.08) 0%, rgba(232,30,96,0.06) 100%),
              var(--bg-alt);
  overflow: hidden;
}
@media (prefers-color-scheme: dark) {
  .download-section {
    background: linear-gradient(135deg, rgba(32,140,203,0.14) 0%, rgba(232,30,96,0.10) 100%),
                var(--bg-alt);
  }
}
.download-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 80%, rgba(32,140,203,0.10) 0%, transparent 60%);
}
.download-title { font-size: clamp(36px, 6vw, 72px) !important; margin-bottom: 24px !important; }
.download-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px;
}
.download-chip {
  padding: 8px 18px; border-radius: var(--radius-full);
  background: var(--card-bg); border: 1px solid var(--divider);
  font-size: 15px; font-weight: 600; color: var(--text-2);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-alt); border-top: 1px solid var(--divider);
  padding: 48px clamp(16px, 4vw, 32px);
}
.footer-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.footer-logo-img { height: 32px; width: auto; display: block; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 14px; color: var(--text-2); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--blue); }
.footer-coffee img { border-radius: 8px; transition: transform 0.2s ease; }
.footer-coffee img:hover { transform: scale(1.05); }
.footer-copy { font-size: 13px; color: var(--text-3); text-align: center; }

/* ── Sticky mobile CTA ───────────────────────────────────────────────────── */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  padding: 12px 16px 16px;
  background: var(--bg);
  border-top: 1px solid var(--divider);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  opacity: 0; transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.mobile-cta-bar.visible { opacity: 1; transform: none; pointer-events: auto; }
.mobile-cta-label { font-size: 14px; font-weight: 600; color: var(--text-1); }
.mobile-cta-sub   { font-size: 12px; color: var(--text-3); }

@media (min-width: 640px) { .mobile-cta-bar { display: none; } }

/* Body pad so sticky CTA doesn't cover last content */
@media (max-width: 639px) { body { padding-bottom: 80px; } }
