/* ============================================================
   Haven Dating — Website Styles
   Design: Dark theme with golden accents (trumprx.gov-inspired)
   Font: Inter (Google Fonts)
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Colors */
  --bg-primary: #0a0e17;
  --bg-secondary: #0f1320;
  --bg-tertiary: #141925;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);

  --gold-primary: #D4A843;
  --gold-light: #E8C56D;
  --gold-dark: #B8912E;
  --gold-glow: rgba(212, 168, 67, 0.3);

  --text-primary: #FFFFFF;
  --text-secondary: #B0B8C8;
  --text-muted: #6B7280;
  --text-gold: #D4A843;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #D4A843 0%, #E8C56D 50%, #D4A843 100%);
  --gradient-gold-text: linear-gradient(135deg, #E8C56D 0%, #D4A843 50%, #B8912E 100%);
  --gradient-dark: linear-gradient(180deg, #0a0e17 0%, #0f1320 100%);
  --gradient-card: linear-gradient(135deg, rgba(212, 168, 67, 0.08) 0%, rgba(212, 168, 67, 0.02) 100%);
  --gradient-glow: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 168, 67, 0.06), transparent 40%);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --container-max: 1200px;
  --container-narrow: 800px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 150ms var(--ease-out-quart);
  --transition-base: 300ms var(--ease-out-quart);
  --transition-slow: 600ms var(--ease-out-expo);
  --transition-reveal: 800ms var(--ease-out-expo);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}


/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
}

.text-gold {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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


/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: var(--section-padding) 0;
  position: relative;
}


/* ── Announcement Bar ──────────────────────────────────────── */
.announcement-bar {
  background: var(--gradient-gold);
  color: #0a0e17;
  text-align: center;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.announcement-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.announcement-bar span {
  position: relative;
  z-index: 1;
}

.announcement-bar a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-bar a:hover {
  opacity: 0.8;
}


/* ── Header / Navigation ──────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 16px 0;
  transition: all var(--transition-base);
}

.header--scrolled {
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}

.header.has-announcement {
  top: 40px;
}

.header--scrolled.has-announcement {
  top: 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  z-index: 91;
}

.header__logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gradient-gold);
  color: #0a0e17;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 20px;
  z-index: 91;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.hero__glow--1 {
  top: -200px;
  right: -200px;
  background: var(--gold-primary);
}

.hero__glow--2 {
  bottom: -300px;
  left: -200px;
  background: #4F46E5;
  opacity: 0.08;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 600px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34D399;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero__title {
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: wordReveal 0.8s var(--ease-out-expo) forwards;
}

.hero__title .word:nth-child(1) { animation-delay: 0.1s; }
.hero__title .word:nth-child(2) { animation-delay: 0.2s; }
.hero__title .word:nth-child(3) { animation-delay: 0.3s; }
.hero__title .word:nth-child(4) { animation-delay: 0.4s; }
.hero__title .word:nth-child(5) { animation-delay: 0.5s; }

.hero__subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-gold);
  color: #0a0e17;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--gold-glow);
}

.btn--secondary {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
}

.btn--secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-primary);
}

.btn svg {
  width: 20px;
  height: 20px;
}

/* Hero Phone Mockup */
.hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  position: relative;
  width: 300px;
  animation: float 6s ease-in-out infinite;
}

.phone-mockup__frame {
  position: relative;
  background: #1a1a2e;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 120px var(--gold-glow);
}

.phone-mockup__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #0a0e17;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-mockup__screen {
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
}

.phone-mockup__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating decorative elements */
.hero__float {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: float 8s ease-in-out infinite;
}

.hero__float--1 {
  width: 60px;
  height: 60px;
  top: 20%;
  right: -10%;
  background: var(--gradient-gold);
  opacity: 0.15;
  animation-delay: -2s;
  filter: blur(1px);
}

.hero__float--2 {
  width: 40px;
  height: 40px;
  bottom: 30%;
  right: 5%;
  background: var(--gold-primary);
  opacity: 0.1;
  animation-delay: -4s;
  animation-duration: 10s;
  filter: blur(1px);
}

.hero__float--3 {
  width: 24px;
  height: 24px;
  top: 30%;
  left: 55%;
  background: #E8C56D;
  opacity: 0.12;
  animation-delay: -1s;
  animation-duration: 7s;
}


/* ── Statement Section (trumprx.gov "overcharged" style) ─── */
.statement {
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--border-light));
}

.statement__text {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto;
}

.statement__text strong {
  color: var(--text-primary);
  font-weight: 700;
}

.statement__text em {
  color: var(--gold-primary);
  font-style: normal;
  font-weight: 700;
}


/* ── Features Section ──────────────────────────────────────── */
.features {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 67, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}


/* ── Music Section (Spotlight) ─────────────────────────────── */
.music-section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.music-section__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.music-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.music-section__content h2 {
  margin-bottom: 20px;
}

.music-section__content p {
  margin-bottom: 24px;
}

.music-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.music-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.music-feature__check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 67, 0.15);
  border-radius: 50%;
  margin-top: 2px;
}

.music-feature__check svg {
  width: 14px;
  height: 14px;
  color: var(--gold-primary);
}

.music-feature span {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.music-section__visual {
  display: flex;
  justify-content: center;
}

.music-phone {
  width: 280px;
}


/* ── Screenshots Section ───────────────────────────────────── */
.screenshots {
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.screenshots__track {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.screenshot-item {
  width: 260px;
  flex-shrink: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-base);
}

.screenshot-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px var(--gold-glow);
}

.screenshot-item img {
  width: 100%;
  height: auto;
}


/* ── Pricing Section (Haven Gold) ──────────────────────────── */
.pricing {
  padding: var(--section-padding) 0;
  position: relative;
}

.pricing__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.pricing-card--featured {
  border-color: var(--gold-primary);
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.08) 0%, rgba(212, 168, 67, 0.02) 100%);
}

.pricing-card--featured::before {
  content: 'Best Value';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: #0a0e17;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
}

.pricing-card__icon img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
}

.pricing-card h3 {
  margin-bottom: 8px;
}

.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card__savings {
  font-size: 0.85rem;
  color: #34D399;
  font-weight: 600;
  margin-bottom: 24px;
  min-height: 20px;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__features li svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}


/* ── FAQ Section ───────────────────────────────────────────── */
.faq {
  padding: var(--section-padding) 0;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  gap: 16px;
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--gold-primary);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base);
}

.faq-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item__answer p {
  padding-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.7;
}


/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
  padding: var(--section-padding) 0;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
}

.cta-section .hero__actions {
  justify-content: center;
  position: relative;
}


/* ── Footer ────────────────────────────────────────────────── */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer__logo img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 168, 67, 0.1);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
}

.footer__column h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer__column ul li {
  margin-bottom: 12px;
}

.footer__column ul li a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer__column ul li a:hover {
  color: var(--gold-primary);
}

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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


/* ── Scroll Reveal Animations ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-reveal), transform var(--transition-reveal);
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--scale {
  transform: scale(0.95);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }


/* ── Keyframe Animations ──────────────────────────────────── */
@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


/* ── Legal Pages (Terms & Privacy) ─────────────────────────── */
.legal-page {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.legal-page .container {
  max-width: 800px;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.legal-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

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

.legal-content a:hover {
  color: var(--gold-light);
}

.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}


/* ── Responsive Design ─────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .phone-mockup {
    width: 240px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .music-section .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .music-section__visual {
    order: -1;
  }

  .music-features {
    align-items: center;
  }

  .footer .container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .announcement-bar {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .header__nav {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 23, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 90;
  }

  .header__nav.open {
    transform: translateX(0);
  }

  .header__nav a {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .screenshots__track {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 24px;
    justify-content: flex-start;
  }

  .screenshot-item {
    scroll-snap-align: center;
    width: 220px;
  }

  .footer .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .phone-mockup {
    width: 200px;
  }

  .statement__text {
    font-size: 1.15rem;
  }
}
