:root {
  color-scheme: light;
  --bg: #faf9fc;
  --bg-2: #f3f1f8;
  --card: #ffffff;
  --text: #0d0d0f;
  --text-2: #4a4a56;
  --muted: #7a7a88;
  --border: #e8e6ef;
  --accent: #7c40ff;
  --accent-soft: #ede8ff;
  --accent-deep: #6230e0;
  --purple-panel: #7c61e8;
  --shadow: 0 24px 60px rgba(13, 13, 15, 0.08);
  --radius: 24px;
  --radius-sm: 14px;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: 'Sora', var(--font);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  display: block;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  padding: 8px 16px;
  background: var(--text);
  color: #fff;
  border-radius: 8px;
}

.skip-link:focus {
  left: 8px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 252, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 24px rgba(13, 13, 15, 0.04);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.brand img {
  border-radius: 8px;
}

.nav {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}

.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  transition: color 0.15s ease;
}

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

.header-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--text);
  color: #fff;
  box-shadow: 0 10px 24px rgba(13, 13, 15, 0.15);
}

.btn-dark:hover {
  box-shadow: 0 14px 28px rgba(13, 13, 15, 0.2);
}

.btn-ghost {
  color: var(--text-2);
  font-weight: 600;
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-outline {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 12px 22px;
}

.btn-soft {
  background: var(--bg-2);
  color: var(--text);
}

.btn-light {
  background: #fff;
  color: var(--text);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-block {
  width: 100%;
}

[hidden] {
  display: none !important;
}

/* Hero */
.hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  text-align: center;
}

.cover-flow {
  position: relative;
  max-width: 920px;
  margin: 0 auto 48px;
  padding: 0 56px;
}

.cover-flow-stage {
  position: relative;
  height: 380px;
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-card {
  position: absolute;
  width: 200px;
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  text-align: left;
  box-shadow: 0 24px 56px rgba(13, 13, 15, 0.24);
  transform: rotateY(calc(var(--offset, 0) * 18deg))
    translateX(calc(var(--offset, 0) * 88px))
    translateZ(calc(var(--abs, 0) * -48px))
    scale(calc(1 - var(--abs, 0) * 0.08));
  opacity: calc(1 - var(--abs, 0) * 0.18);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  pointer-events: none;
}

.cover-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-card__shade {
  position: relative;
  z-index: 1;
  padding: 16px 14px;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 15, 0) 0%,
    rgba(13, 13, 15, 0.35) 35%,
    rgba(13, 13, 15, 0.82) 100%
  );
}

.cover-card.is-center {
  z-index: 5;
  box-shadow: 0 28px 60px rgba(13, 13, 15, 0.28);
}

.cover-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cover-card p {
  margin: 4px 0 0;
  font-size: 12px;
  opacity: 0.85;
}

.cover-tag {
  position: static;
  display: inline-block;
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

.c-odyssey {
  background: linear-gradient(160deg, #1a3a5c, #0d1f33);
}
.c-alchemist {
  background: linear-gradient(160deg, #e85d04, #dc2f02);
}
.c-atomic {
  background: linear-gradient(160deg, #7c40ff, #9b6aff);
}
.c-meditations {
  background: linear-gradient(160deg, #6b4c35, #3d2817);
}
.c-duke {
  background: linear-gradient(160deg, #9d4edd, #5a189a);
}
.c-war {
  background: linear-gradient(160deg, #2d6a4f, #1b4332);
}
.c-crime {
  background: linear-gradient(160deg, #c9184a, #800f2f);
}

.flow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  color: var(--text-2);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.flow-arrow-left {
  left: 0;
}
.flow-arrow-right {
  right: 0;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: 14ch;
  margin-inline: auto;
}

.hero-lead {
  margin: 0 auto 28px;
  max-width: 46ch;
  font-size: clamp(17px, 2.2vw, 19px);
  line-height: 1.6;
  color: var(--text-2);
}

/* Trust */
.trust {
  padding: 16px 24px 56px;
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item {
  position: relative;
  padding: 8px 12px;
}

.trust-wreath {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  color: #c8c4d4;
  opacity: 0.7;
}

.trust-item strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.trust-item span {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--muted);
}

/* Dual features */
.dual-features {
  padding: 72px 24px;
}

.dual-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.panel {
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.panel-purple {
  background: var(--purple-panel);
  color: #fff;
}

.panel-light {
  background: var(--bg-2);
}

.panel-visual {
  flex: 1;
  min-height: 320px;
  padding: 28px 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.panel-copy {
  padding: 28px 32px 32px;
}

.panel-copy h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.panel-copy p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.92;
}

.panel-light .panel-copy p {
  color: var(--text-2);
  opacity: 1;
}

.import-tabs {
  display: flex;
  gap: 6px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  margin-bottom: 24px;
}

.import-tab {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.75;
}

.import-tab.is-on {
  background: #fff;
  color: var(--purple-panel);
  opacity: 1;
}

.mini-phone {
  width: 200px;
  background: #111;
  border-radius: 28px 28px 0 0;
  padding: 8px 8px 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.2);
}

.mini-phone-screen {
  background: #fff;
  border-radius: 22px 22px 0 0;
  padding: 20px 16px 16px;
  color: var(--text);
  text-align: left;
}

.mini-chapter {
  margin: 0;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mini-title {
  margin: 4px 0 12px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
}

.mini-text {
  margin: 0 0 16px;
  font-size: 11px;
  line-height: 1.55;
  color: var(--text-2);
}

.mini-text mark {
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 2px;
  padding: 0 2px;
}

.mini-player {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.mini-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.mini-bar i {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
}

.book-stack {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
}

.stack-cover {
  position: absolute;
  width: 110px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(13, 13, 15, 0.18);
}

.stack-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stack-cover.s1 {
  background: linear-gradient(160deg, #9d0208, #6a040f);
  left: 0;
  top: 20px;
  transform: rotate(-12deg);
  z-index: 1;
}

.stack-cover.s2 {
  background: linear-gradient(160deg, #4cc9f0, #4361ee);
  left: 44px;
  top: 8px;
  z-index: 2;
}

.stack-cover.s3 {
  background: linear-gradient(160deg, #7c40ff, #9b6aff);
  left: 88px;
  top: 24px;
  transform: rotate(10deg);
  z-index: 3;
}

.voice-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(13, 13, 15, 0.08);
  margin-bottom: 8px;
}

.voice-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a227, #8b6914);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* Section heads */
.section-head {
  max-width: 1180px;
  margin: 0 auto 28px;
  padding: 0 24px;
}

.section-head-center {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Catalog scroll */
.catalog {
  padding: 72px 0;
  background: var(--bg-2);
}

.scroll-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px max(24px, calc((100vw - 1180px) / 2)) 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.scroll-row::-webkit-scrollbar {
  display: none;
}

.scroll-row.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.book-tile {
  flex: 0 0 168px;
  scroll-snap-align: start;
}

.book-cover {
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 12px 28px rgba(13, 13, 15, 0.12);
  overflow: hidden;
  background: var(--surface-2);
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bc1 {
  background: linear-gradient(160deg, #c9184a, #590d22);
}
.bc2 {
  background: linear-gradient(160deg, #2d6a4f, #081c15);
}
.bc3 {
  background: linear-gradient(160deg, #4cc9f0, #3a0ca3);
}
.bc4 {
  background: linear-gradient(160deg, #f4a261, #e76f51);
}
.bc5 {
  background: linear-gradient(160deg, #1a3a5c, #0d1f33);
}
.bc6 {
  background: linear-gradient(160deg, #7c40ff, #9b6aff);
}
.bc7 {
  background: linear-gradient(160deg, #6b4c35, #3d2817);
}

.book-tile h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.book-tile p {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* Genres */
.genres {
  padding: 72px 24px;
}

.genre-flow {
  position: relative;
  max-width: 760px;
  margin: 0 auto 32px;
  padding: 0 52px;
}

.genre-flow-stage {
  position: relative;
  height: 240px;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.genre-cover {
  position: absolute;
  width: 120px;
  height: 170px;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 40px rgba(13, 13, 15, 0.2);
  transform: rotateY(calc(var(--offset, 0) * 16deg))
    translateX(calc(var(--offset, 0) * 64px))
    scale(calc(1 - var(--abs, 0) * 0.06));
  opacity: calc(1 - var(--abs, 0) * 0.2);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.genre-cover__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.genre-cover__shade {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end center;
  padding: 12px;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 15, 0.05) 0%,
    rgba(13, 13, 15, 0.75) 100%
  );
  font-size: 11px;
  font-weight: 800;
}

.genre-cover.is-center {
  z-index: 5;
}

.g1 {
  background: linear-gradient(160deg, #5a189a, #240046);
}
.g2 {
  background: linear-gradient(160deg, #1d3557, #0b1320);
}
.g3 {
  background: linear-gradient(160deg, #2d6a4f, #1b4332);
}
.g4 {
  background: linear-gradient(160deg, #c9184a, #800f2f);
}
.g5 {
  background: linear-gradient(160deg, #3d405b, #1d1f2b);
}
.g6 {
  background: linear-gradient(160deg, #0077b6, #023e8a);
}
.g7 {
  background: linear-gradient(160deg, #bc6c25, #6f4e37);
}

.genre-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.genre-cover.is-center .genre-play,
.genre-cover.is-playable:hover .genre-play {
  opacity: 1;
}

.genre-pills {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pill {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  background: #fff;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.pill:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.pill-muted {
  color: var(--muted);
}

/* Listen section */
.listen {
  padding: 72px 24px;
  background: var(--bg-2);
}

.listen-scroll-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.listen-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.listen-scroll::-webkit-scrollbar {
  display: none;
}

.listen-card {
  flex: 0 0 min(280px, 82vw);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.listen-visual {
  min-height: 280px;
  padding: 24px;
}

.lc-orange .listen-visual {
  background: linear-gradient(160deg, #e76f51, #d62828);
  color: #fff;
}

.lc-gray .listen-visual {
  background: #eceaf2;
}

.lc-purple .listen-visual {
  background: linear-gradient(160deg, #7c40ff, #5a1fd6);
  color: #fff;
}

.listen-caption {
  margin: 0;
  padding: 18px 20px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: #fff;
}

.explore-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.explore-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-weight: 700;
}

.explore-label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.9;
}

.explore-row {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 14px;
  border-radius: 14px;
}

.explore-cover {
  width: 84px;
  height: 126px;
  border-radius: 8px;
  background: linear-gradient(160deg, #f4a261, #e9c46a);
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(13, 13, 15, 0.2);
}

.explore-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.explore-row strong {
  display: block;
  font-size: 15px;
  line-height: 1.3;
}

.explore-row span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  opacity: 0.85;
}

.voice-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.voice-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

.voice-row.is-on {
  background: #fff;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(13, 13, 15, 0.08);
}

.va {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.va1 {
  background: #9d4edd;
}
.va2 {
  background: #2d6a4f;
}
.va3 {
  background: #4361ee;
}
.va4 {
  background: #e85d04;
}

.voice-play {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: grid;
  place-items: center;
}

.prompt-mock p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
}

.prompt-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
  margin: 0 2px;
}

.prompt-mock strong {
  color: var(--accent-deep);
}

.reader-mock {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.reader-title {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
}

.reader-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.9;
  flex: 1;
}

.reader-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.reader-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-weight: 700;
}

/* Pricing */
.pricing {
  padding: 72px 24px;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding: 4px;
  background: var(--bg-2);
  border-radius: 999px;
  border: 1px solid var(--border);
}

.billing-opt {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.pricing-toggle.is-annual .billing-opt[data-billing='annual'],
.pricing-toggle:not(.is-annual) .billing-opt[data-billing='monthly'] {
  background: #fff;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(13, 13, 15, 0.06);
}

.save-badge {
  margin-left: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: #d8f5e4;
  color: #1b6b3a;
  font-size: 11px;
  font-weight: 800;
}

.pricing-grid {
  max-width: 880px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--bg-2);
  border: 1px solid var(--border);
}

.price-card-dark {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #d8f5e4;
  color: #1b6b3a;
  font-size: 11px;
  font-weight: 800;
}

.price-card h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
}

.price-sub {
  margin: 0 0 20px;
  font-size: 14px;
  opacity: 0.8;
}

.price-card-dark .price-sub {
  color: rgba(255, 255, 255, 0.75);
}

.price-amount {
  min-height: 92px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 6px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.price-strike {
  font-size: 22px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: line-through;
}

.price-card-dark .price-strike {
  color: rgba(255, 255, 255, 0.55);
}

.price-suffix {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.8;
}

.price-card-dark .price-suffix {
  color: rgba(255, 255, 255, 0.85);
}

.price-big {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-card-dark .price-big {
  color: #fff;
}

.price-note {
  font-size: 14px;
  opacity: 0.7;
}

.price-inapp {
  margin: -8px 0 16px;
  font-size: 12px;
  opacity: 0.65;
  text-align: center;
}

.price-features {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.price-features li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 14px;
  line-height: 1.45;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.price-card-dark .price-features li {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--accent);
}

.price-card-dark .price-features li::before {
  color: #9b6aff;
}

.pricing-foot {
  margin: 28px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px;
}

.faq h2 {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel > p {
  margin: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
  transition: padding 0.25s ease;
}

.faq-item.is-open .faq-panel > p {
  padding: 0 20px 18px;
}

.faq-panel a {
  color: var(--accent-deep);
  font-weight: 600;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}

.final-cta h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.final-cta p {
  margin: 0 0 28px;
  color: var(--text-2);
  font-size: 16px;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px 12px 16px;
  border-radius: 14px;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease;
}

.app-store-btn:hover {
  transform: translateY(-1px);
}

.app-store-btn small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.85;
}

.app-store-btn strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.1;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px 48px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.footer-inner p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.footer-inner nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

.footer-inner nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-deep);
}

/* Responsive */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .dual-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cover-flow-stage {
    height: 320px;
  }

  .cover-card {
    width: 156px;
    height: 234px;
  }

  .cover-flow {
    max-width: 100%;
    padding: 0 48px;
  }

  .flow-arrow {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 600px) {
  .header-actions .btn-ghost {
    display: none;
  }

  .hero {
    padding-top: 24px;
  }

  .panel-visual {
    min-height: 260px;
  }

  .genre-flow-stage {
    height: 200px;
  }

  .genre-cover {
    width: 96px;
    height: 140px;
  }
}

@media (min-width: 1040px) {
  .listen-scroll {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    overflow: visible;
    cursor: default;
  }

  .listen-card {
    flex: none;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
