:root {
  color-scheme: light;
  --bg: #f7f6fb;
  --bg-2: #edf1ff;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --line: rgba(12, 22, 40, 0.12);
  --muted: #4c5668;
  --text: #0b1220;
  --accent: #2f7cff;
  --accent-2: #ff8a5c;
  --accent-3: #6b5cff;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow: 0 28px 70px rgba(24, 32, 52, 0.18);
  --shadow-soft: 0 18px 44px rgba(24, 32, 52, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background: radial-gradient(circle at 8% 0%, rgba(111, 177, 255, 0.25), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(255, 171, 130, 0.2), transparent 40%),
    linear-gradient(180deg, var(--bg) 0%, #f8f7fc 35%, #f4f3fb 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.22'/%3E%3C/svg%3E");
  opacity: 0.08;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.65) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.65) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.05;
  z-index: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

button {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #0b1220;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
  z-index: 999;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(47, 124, 255, 0.45);
  outline-offset: 3px;
}

.page {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
  scroll-margin-top: 120px;
}

.section::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(920px, 90%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 124, 255, 0.22), transparent);
  transform: translateX(-50%);
  opacity: 0.6;
}

.cta::after {
  display: none;
}

section[data-contrast='soft'] {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.6), rgba(232, 238, 255, 0.6));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4.6rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn.primary {
  background: linear-gradient(120deg, rgba(47, 124, 255, 0.95), rgba(255, 138, 92, 0.95));
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(47, 124, 255, 0.28);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(47, 124, 255, 0.32);
}

.btn.ghost {
  border-color: rgba(12, 22, 40, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
}

.btn.ghost:hover {
  border-color: rgba(12, 22, 40, 0.35);
  transform: translateY(-2px);
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 16px;
  border: 1px solid rgba(47, 124, 255, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, #f2f5ff 100%);
  box-shadow: 0 16px 34px rgba(47, 124, 255, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 52px;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 16px rgba(47, 124, 255, 0.2);
}

.badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-store-badge .badge-text {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(12, 22, 40, 0.55);
}

.app-store-badge strong {
  font-size: 1rem;
  color: var(--text);
}

.app-store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 124, 255, 0.45);
  box-shadow: 0 20px 40px rgba(47, 124, 255, 0.26);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(47, 124, 255, 0.14), rgba(255, 138, 92, 0.18));
  color: #1f2f54;
  font-size: 0.82rem;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(250, 251, 255, 0.9);
  border-bottom: 1px solid rgba(12, 22, 40, 0.08);
}

.site-header.is-scrolled {
  box-shadow: 0 18px 40px rgba(24, 32, 52, 0.12);
  background: rgba(250, 251, 255, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.1rem;
}

.logo img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(47, 124, 255, 0.25);
}

.logo span small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 500;
  color: rgba(12, 22, 40, 0.7);
}

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

.site-nav a.is-active {
  color: #1b2c4d;
  position: relative;
}

.site-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 124, 255, 0.6), rgba(255, 138, 92, 0.6));
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(12, 22, 40, 0.2);
  padding: 8px 12px;
  border-radius: 999px;
}

.hero {
  padding: 130px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(47, 124, 255, 0.28), transparent 70%);
  top: -260px;
  right: -160px;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 138, 92, 0.25), transparent 70%);
  bottom: -240px;
  left: -140px;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy p {
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 18px;
}

.hero-note {
  font-size: 0.95rem;
  color: #3f4a5d;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 22, 40, 0.12);
  box-shadow: var(--shadow-soft);
}

.stat-value {
  font-weight: 700;
  color: #1b2c4d;
  font-size: 1rem;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}

.trust-pill {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(47, 124, 255, 0.2);
  background: rgba(47, 124, 255, 0.08);
  font-size: 0.74rem;
  color: #234070;
}

.hero-visual {
  position: relative;
}

.hero-panel {
  position: absolute;
  inset: 20px;
  border-radius: calc(var(--radius-xl) + 12px);
  background: linear-gradient(135deg, rgba(47, 124, 255, 0.12), rgba(255, 138, 92, 0.12));
  border: 1px solid rgba(47, 124, 255, 0.15);
  z-index: 0;
}

.studio-shell {
  background: var(--surface);
  border: 1px solid rgba(12, 22, 40, 0.12);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 1;
}

.studio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.pill {
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(107, 92, 255, 0.12);
  color: #3a2f7a;
  font-weight: 600;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #1f6f54;
}

.status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #32c98e;
  box-shadow: 0 0 12px rgba(50, 201, 142, 0.5);
}

.topic-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  background: rgba(12, 22, 40, 0.06);
  border: 1px solid rgba(12, 22, 40, 0.08);
  color: #2a3650;
}

.builder {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.builder-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(12, 22, 40, 0.04);
  border: 1px solid rgba(12, 22, 40, 0.08);
  font-size: 0.9rem;
}

.builder-row span {
  color: var(--muted);
}

.audio-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(47, 124, 255, 0.08);
  border: 1px solid rgba(47, 124, 255, 0.2);
}

.audio-title {
  font-weight: 600;
  color: var(--text);
}

.audio-sub {
  font-size: 0.85rem;
  color: #5a6782;
}

.equalizer {
  display: grid;
  grid-auto-flow: column;
  gap: 4px;
  align-items: end;
  height: 42px;
}

.equalizer span {
  width: 5px;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f7cff, #6b5cff);
  transform-origin: bottom;
  animation: equalize 1.2s ease-in-out infinite;
  animation-delay: var(--delay, 0ms);
}

@keyframes equalize {
  0%,
  100% {
    transform: scaleY(0.35);
  }
  50% {
    transform: scaleY(1);
  }
}

.floating-card {
  position: absolute;
  right: -40px;
  bottom: -28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 22, 40, 0.12);
  border-radius: 18px;
  padding: 14px 18px;
  font-size: 0.85rem;
  box-shadow: var(--shadow-soft);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.floating-card strong {
  color: var(--text);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-glow {
  position: absolute;
  inset: auto 0 -160px 0;
  height: 240px;
  background: radial-gradient(circle at 50% 0%, rgba(47, 124, 255, 0.2), transparent 65%);
  z-index: 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.section-title p {
  max-width: 460px;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.screen-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 22, 40, 0.12);
  padding: 20px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screen-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 24px 55px rgba(47, 124, 255, 0.18);
}

.screen-card:nth-child(2):hover {
  transform: translateY(-6px) rotate(0.5deg);
}

.screen-meta {
  display: flex;
  gap: 8px;
}

.screen-tag {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(47, 124, 255, 0.1);
  color: #1f3a70;
  border: 1px solid rgba(47, 124, 255, 0.2);
}

.screen-card img {
  border-radius: 18px;
  border: 1px solid rgba(12, 22, 40, 0.1);
  background: #f4f6ff;
}

.screen-card figcaption {
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(12, 22, 40, 0.12);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 124, 255, 0.4);
  box-shadow: 0 18px 50px rgba(47, 124, 255, 0.18);
}

.card h3 {
  margin: 14px 0 10px;
}

.card-tag {
  display: inline-flex;
  margin-top: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(12, 22, 40, 0.06);
  color: #34425d;
}

.icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(47, 124, 255, 0.14);
  display: grid;
  place-items: center;
}

.icon svg {
  width: 18px;
  height: 18px;
  stroke: #2f7cff;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.demo-frame {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 22, 40, 0.12);
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.demo-steps {
  display: grid;
  gap: 16px;
  position: relative;
  padding-left: 6px;
}

.demo-steps::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(47, 124, 255, 0.15);
}

.demo-step {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(12, 22, 40, 0.1);
  background: rgba(240, 244, 255, 0.7);
  transition: border-color 0.25s ease, background 0.25s ease;
  position: relative;
}

.demo-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(47, 124, 255, 0.25);
  color: #2f7cff;
  font-weight: 700;
  font-size: 0.7rem;
  margin-bottom: 10px;
}

.demo-step h3 {
  margin: 8px 0 6px;
}

.demo-step.is-active {
  border-color: rgba(47, 124, 255, 0.45);
  background: rgba(47, 124, 255, 0.12);
}

.demo-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, rgba(47, 124, 255, 0.95), rgba(255, 138, 92, 0.9));
}

.demo-frame.is-playing .demo-progress {
  animation: demo-progress 6s linear infinite;
}

@keyframes demo-progress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.demo-copy ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
}

.demo-copy ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(47, 124, 255, 0.9);
  display: inline-block;
  margin-right: 8px;
}

.audio-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(12, 22, 40, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.audio-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.audio-chip {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(47, 124, 255, 0.12);
  color: #1f3a70;
  border: 1px solid rgba(47, 124, 255, 0.2);
}

.audio-card audio {
  width: min(360px, 100%);
  height: 42px;
  border-radius: 999px;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.format-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(235, 240, 255, 0.8));
  border: 1px solid rgba(12, 22, 40, 0.12);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.format-card::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 124, 255, 0.18), transparent 70%);
  top: -70px;
  right: -40px;
}

.format-card h3 {
  margin-bottom: 10px;
}

.format-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.format-time,
.format-tone {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(12, 22, 40, 0.06);
  color: #32415d;
  border: 1px solid rgba(12, 22, 40, 0.1);
}

.format-card p {
  margin-bottom: 16px;
}

.format-card .chip {
  background: rgba(47, 124, 255, 0.12);
  border-color: rgba(47, 124, 255, 0.3);
  color: #1f3a70;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.insight-card {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 22, 40, 0.12);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.insight-card ul {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.insight-card li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.insight-card li::before {
  content: '';
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: rgba(255, 138, 92, 0.85);
}

.library-stack {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.mini-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(12, 22, 40, 0.1);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
}

.mini-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  margin-bottom: 6px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.trust-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 22, 40, 0.12);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
}

.trust-footer {
  margin-top: 24px;
}

.privacy-strip {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.privacy-pill {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  background: rgba(47, 124, 255, 0.1);
  color: #1f3a70;
  border: 1px solid rgba(47, 124, 255, 0.2);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.quote-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(12, 22, 40, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 14px;
}

.quote-card p {
  color: var(--text);
}

.quote-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: #1f3a70;
  background: rgba(47, 124, 255, 0.12);
  border: 1px solid rgba(47, 124, 255, 0.22);
}

.quote-card cite {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: normal;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.faq-item {
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid rgba(12, 22, 40, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary:hover {
  color: #1f3a70;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: #2f7cff;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  margin-top: 12px;
}

.cta {
  padding: 80px 0;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(47, 124, 255, 0.25), transparent 65%);
}

.cta-card {
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(47, 124, 255, 0.18);
  box-shadow: var(--shadow);
  max-width: 760px;
}

.cta h2 {
  margin-bottom: 18px;
}

.cta p {
  max-width: 560px;
  margin: 0 auto 24px;
}

.cta-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-note a {
  color: #1f3a70;
  font-weight: 600;
}

.cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #32c98e;
  box-shadow: 0 0 10px rgba(50, 201, 142, 0.4);
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(12, 22, 40, 0.08);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

.footer-links a[href='#top'] {
  font-weight: 600;
  color: #1f3a70;
}

.page-hero {
  padding: 120px 0 40px;
}

.page-hero p {
  max-width: 640px;
}

.content-section {
  padding: 40px 0 80px;
}

.content-section h2 {
  margin-bottom: 16px;
}

.content-section ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 16px 0 24px;
}

.content-section ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 138, 92, 0.85);
  display: inline-block;
  margin-right: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .screens-grid,
  .demo-grid,
  .feature-grid,
  .formats-grid,
  .trust-grid,
  .social-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-title {
    align-items: flex-start;
  }

  .hero {
    padding-top: 110px;
  }

  .floating-card {
    position: static;
    margin-top: 18px;
  }
}

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

  .site-nav.is-open {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    gap: 16px;
    background: rgba(248, 250, 255, 0.96);
    padding: 18px 24px 24px;
    border-bottom: 1px solid rgba(12, 22, 40, 0.12);
    box-shadow: 0 20px 40px rgba(24, 32, 52, 0.12);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100%, calc(100% - 2rem));
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .audio-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    backdrop-filter: blur(12px);
  }
}

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

  .equalizer span,
  .demo-frame.is-playing .demo-progress,
  .floating-card,
  .reveal {
    animation: none;
    transition: none;
  }
}
