:root {
  --purple-900: #1c0a2f;
  --purple-800: #2a0f3f;
  --purple-700: #6b46c1;
  --purple-600: #7c3aed;
  --gold-500: #f59e0b;
  --gold-400: #fbbf24;
  --gold-300: #fcd34d;
  --gray-100: #f7f7fb;
  --gray-500: #6b7280;
  --text: #ebe9f7;
  --muted: #c4c2d8;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max-width: 1160px;
}

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

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.15), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(247, 223, 99, 0.08), transparent 22%),
    #0e0a18;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(52px, 9vw, 90px) 0;
}

.hero {
  position: relative;
  padding: clamp(22px, 6vw, 72px) 0 clamp(50px, 10vw, 90px);
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  overflow: hidden;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 30%, rgba(124, 58, 237, 0.35), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(252, 211, 77, 0.25), transparent 35%),
    radial-gradient(circle at 70% 80%, rgba(108, 18, 138, 0.35), transparent 45%);
  filter: blur(18px);
  opacity: 0.75;
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-tagline {
  font-size: 13px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.link {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: #1c0a2f;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(251, 191, 36, 0.45);
}

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.btn.ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn.full {
  width: 100%;
  justify-content: center;
}

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

.hero-copy h1 {
  font-size: clamp(26px, 5vw, 42px);
  line-height: 1.12;
  margin: 10px 0 12px;
  word-break: break-word;
}

.lede {
  color: var(--muted);
  max-width: 620px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 12px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.metric {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.metric strong {
  display: block;
  font-size: 18px;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 380px;
  max-width: 520px;
  margin: 0 auto;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.5;
}

.orb-one {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--gold-400), transparent 60%);
  top: -40px;
  right: -30px;
}

.orb-two {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--purple-600), transparent 55%);
  bottom: -80px;
  left: -60px;
}

.sparkles {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.7;
}

.story-card {
  position: relative;
  z-index: 1;
  padding: clamp(16px, 4vw, 20px);
  background: linear-gradient(145deg, rgba(28, 10, 47, 0.9), rgba(22, 6, 36, 0.9));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  width: min(100%, 520px);
  margin: 0 auto;
}

.glass {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card-top {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.pill-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: #1c0a2f;
  border: none;
}

.card-main {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(12px, 3vw, 16px);
  background: rgba(255, 255, 255, 0.03);
}

.card-title {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.card-title .app-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.card-title .title {
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 700;
  margin: 2px 0;
}

.card-title .subtitle {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.voice-wave {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 6px;
  margin: 10px 0 6px;
}

.voice-wave span {
  display: block;
  height: 26px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  animation: pulse 1.4s ease-in-out infinite;
}

.voice-wave span:nth-child(2) {
  animation-delay: 0.1s;
}
.voice-wave span:nth-child(3) {
  animation-delay: 0.2s;
}
.voice-wave span:nth-child(4) {
  animation-delay: 0.3s;
}
.voice-wave span:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scaleY(0.5);
    opacity: 0.65;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.snippet {
  color: var(--muted);
  margin: 8px 0 0;
  font-size: 13.5px;
}

.card-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.foot-item {
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.foot-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.section.alt {
  background: #0c0816;
}

.section-head {
  max-width: 720px;
}

.section-head h2 {
  margin: 8px 0 10px;
  font-size: clamp(24px, 4vw, 32px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--gold-300);
  font-weight: 700;
  font-size: 12px;
  margin: 0;
}

.feature-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.feature-card {
  padding: clamp(14px, 3vw, 18px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
  margin: 8px 0 6px;
  font-size: clamp(18px, 3.8vw, 21px);
}

.feature-card p {
  color: var(--muted);
}

.icon-dot {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.9), rgba(28, 10, 47, 0.9));
  color: var(--gold-300);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.how-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: clamp(12px, 3vw, 16px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-900));
  font-weight: 800;
}

.how-card {
  padding: clamp(16px, 4vw, 20px);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(28, 10, 47, 0.95));
  border: 1px solid var(--border);
  border-radius: 22px;
}

.how-top h3 {
  margin: 8px 0 6px;
}

.how-top .small {
  color: var(--muted);
}

.audio-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin: 12px 0;
}

.audio-bars span {
  display: block;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  animation: pulse 1.2s ease-in-out infinite;
}

.audio-bars span:nth-child(2) {
  animation-delay: 0.05s;
}
.audio-bars span:nth-child(3) {
  animation-delay: 0.1s;
}
.audio-bars span:nth-child(4) {
  animation-delay: 0.15s;
}
.audio-bars span:nth-child(5) {
  animation-delay: 0.2s;
}
.audio-bars span:nth-child(6) {
  animation-delay: 0.25s;
}

.list {
  padding-left: 18px;
  color: var(--muted);
  margin: 0;
}

.audio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.audio-card {
  padding: clamp(14px, 3vw, 18px);
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.audio-card h3 {
  margin: 8px 0 6px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.wide .inline {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.cta {
  background: radial-gradient(circle at 10% 50%, rgba(124, 58, 237, 0.15), transparent 35%),
    radial-gradient(circle at 90% 40%, rgba(252, 211, 77, 0.18), transparent 35%),
    #0e0a18;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-decoration: none;
  min-width: 190px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.store-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}

.store-badge small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.3px;
}

.store-badge span {
  font-weight: 700;
  display: block;
}

.cta-card {
  padding: clamp(14px, 3vw, 18px);
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
}

.cta-card h3 {
  margin: 8px 0 10px;
}

.footer {
  padding: 38px 24px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  color: var(--muted);
}

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

.footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.fineprint {
  margin: 0;
  font-size: 13px;
}

.reduce-motion * {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .how-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .nav-actions {
    width: 100%;
    justify-content: center;
  }
  .nav-actions .btn {
    padding: 10px 14px;
    font-size: 14px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy {
    margin: 0 auto;
    max-width: 640px;
  }
  .hero-metrics {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .story-card {
    margin: 0 auto;
    max-width: 520px;
  }
  .section {
    padding: 64px 0;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 18px 0 60px;
  }
  .nav {
    gap: 10px;
  }
  .brand-icon {
    width: 40px;
    height: 40px;
  }
  .nav-actions .btn {
    padding: 11px 14px;
    font-size: 14px;
  }
  .hero-copy h1 {
    font-size: clamp(26px, 6vw, 32px);
    line-height: 1.1;
  }
  .lede {
    font-size: 14.5px;
  }
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn.primary {
    box-shadow: 0 10px 24px rgba(251, 191, 36, 0.35);
  }
  .hero-metrics {
    gap: 10px;
  }
  .metric {
    text-align: center;
    padding: 12px;
  }
  .feature-grid,
  .audio-grid {
    grid-template-columns: 1fr;
  }
  .feature-card,
  .audio-card {
    border-radius: 14px;
  }
  .steps {
    gap: 12px;
  }
  .step {
    grid-template-columns: 1fr;
  }
  .step-number {
    width: 40px;
    height: 40px;
    margin-bottom: 4px;
  }
  .cta-inner {
    gap: 18px;
  }
  .store-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .store-badge {
    justify-content: center;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 14px 0 52px;
  }
  .container {
    padding: 0 14px;
  }
  .brand-name {
    font-size: 16px;
  }
  .brand-tagline {
    font-size: 12px;
  }
  .section {
    padding: 54px 0;
  }
  .card-footer {
    grid-template-columns: 1fr;
  }
  .cta-card,
  .audio-card,
  .feature-card {
    padding: 14px;
  }
  .store-badge {
    min-width: unset;
    width: 100%;
  }
  .hero-copy h1 {
    font-size: clamp(24px, 6.5vw, 30px);
  }
  .story-card {
    padding: 16px;
  }
  .card-main {
    padding: 14px;
  }
  .card-title .title {
    font-size: 16px;
  }
  .voice-wave span {
    height: 18px;
  }
  .btn {
    padding: 12px 14px;
  }
}

@media (max-width: 400px) {
  .hero {
    padding: 12px 0 46px;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-actions .btn {
    width: 100%;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
  }
  .metric strong {
    font-size: 16px;
  }
  .story-card {
    max-width: 100%;
  }
  .store-badge {
    padding: 10px 12px;
  }
}

