/* ───────────────────────────────────────────────────
   DeepSoul — Landing Page Styles
   Dark mystical theme · Modern macOS-inspired aesthetic
   ─────────────────────────────────────────────────── */

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

:root {
  --bg: #08061A;
  --bg-card: rgba(12, 10, 36, 0.65);
  --bg-card-hover: rgba(18, 14, 50, 0.8);
  --border: rgba(124, 58, 237, 0.12);
  --border-hover: rgba(124, 58, 237, 0.3);
  --text: #F0EDFF;
  --text-muted: rgba(240, 237, 255, 0.65);
  --text-subtle: rgba(240, 237, 255, 0.4);
  --accent: #A78BFA;
  --accent-bright: #C4B5FD;
  --accent-button: #7C3AED;
  --accent-button-hover: #6D28D9;
  --glow-purple: rgba(124, 58, 237, 0.15);
  --glow-purple-strong: rgba(124, 58, 237, 0.35);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(59, 130, 246, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(96, 165, 250, 0.1), transparent),
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(124, 58, 237, 0.08), transparent);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

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

/* ─── Ambient Background Glows ─── */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.bg-glow--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.22), rgba(59, 130, 246, 0.08) 50%, transparent 70%);
  top: -200px;
  left: -100px;
  animation: glow-drift-1 20s ease-in-out infinite;
}

.bg-glow--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18), rgba(96, 165, 250, 0.06) 50%, transparent 70%);
  top: 40%;
  right: -150px;
  animation: glow-drift-2 25s ease-in-out infinite;
}

.bg-glow--3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.15), rgba(59, 130, 246, 0.08) 50%, transparent 70%);
  bottom: -100px;
  left: 30%;
  animation: glow-drift-3 18s ease-in-out infinite;
}

.bg-glow--4 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14), transparent 70%);
  top: 15%;
  left: 50%;
  animation: glow-drift-4 22s ease-in-out infinite;
}

@keyframes glow-drift-1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(60px, 40px); }
}

@keyframes glow-drift-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, -30px); }
}

@keyframes glow-drift-3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -50px); }
}

@keyframes glow-drift-4 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 60px); }
}

/* ─── Typography Helpers ─── */
.text--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Section Shared ─── */
.section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--glow-purple);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section__subtitle {
  margin-top: 16px;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(8, 6, 30, 0.75) 0%, rgba(15, 18, 55, 0.7) 40%, rgba(20, 30, 75, 0.6) 70%, rgba(10, 12, 45, 0.75) 100%);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border-bottom: 1px solid rgba(96, 165, 250, 0.12);
  box-shadow: 0 4px 30px rgba(37, 99, 235, 0.08), 0 1px 0 rgba(124, 58, 237, 0.06) inset;
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--accent), #60A5FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__logo-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 12px;
}

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

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.nav__cta {
  background: var(--accent-button);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s;
}

.nav__cta:hover {
  background: var(--accent-button-hover);
  transform: translateY(-1px);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  min-height: 100vh;
  padding: 120px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero__content {
  flex: 1;
  max-width: 520px;
}

.hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--glow-purple);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.hero__title--accent {
  background: linear-gradient(135deg, var(--accent), #60A5FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn__icon {
  width: 20px;
  height: 20px;
}

.btn--primary {
  background: var(--accent-button);
  color: #fff;
  border: 1px solid rgba(124, 58, 237, 0.4);
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.3);
}

.btn--primary:hover {
  background: var(--accent-button-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(124, 58, 237, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: var(--glow-purple);
}

.btn--large {
  padding: 18px 36px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}

/* ─── Phone Frame ─── */
.hero__phone {
  flex-shrink: 0;
}

.phone-frame {
  position: relative;
  width: 280px;
  background: linear-gradient(145deg, rgba(20, 16, 52, 0.9), rgba(12, 10, 36, 0.95));
  border-radius: 40px;
  border: 2px solid var(--border);
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px var(--glow-purple);
}

.phone-frame__notch {
  width: 120px;
  height: 28px;
  background: var(--bg);
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-frame__screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 12, 42, 1), rgba(8, 6, 26, 1));
}

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

.phone-frame__screen--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.phone-frame__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-subtle);
  font-size: 14px;
  font-weight: 500;
}

.phone-frame__screen:not(.phone-frame__screen--placeholder) .phone-frame__placeholder {
  display: none;
}

.phone-frame__img:not([style*="display: none"]) ~ .phone-frame__placeholder {
  display: none;
}

.phone-frame__placeholder-sub {
  font-size: 11px;
  color: var(--text-subtle);
  text-align: center;
  opacity: 0.6;
}

/* Small phone frames */
.phone-frame--small {
  width: 220px;
  border-radius: 32px;
  padding: 10px;
}

.phone-frame--small .phone-frame__notch {
  width: 90px;
  height: 22px;
  border-radius: 0 0 14px 14px;
  top: 10px;
}

.phone-frame--small .phone-frame__screen {
  border-radius: 22px;
}

.phone-frame--featured {
  transform: scale(1.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 100px var(--glow-purple-strong);
}

/* ─── Social Proof Strip ─── */
.proof {
  position: relative;
  z-index: 1;
  padding: 0 0 40px;
  margin-top: -40px;
}

.proof__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 32px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.proof__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.proof__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--glow-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.proof__icon svg {
  width: 22px;
  height: 22px;
}

.proof__icon [data-lucide] {
  width: 22px;
  height: 22px;
}

.proof__value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

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

.proof__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── How It Works ─── */
.how {
  position: relative;
  z-index: 1;
  padding: 100px 0 120px;
}

.how__steps {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.how__step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.how__step:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.how__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-button);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.how__connector {
  display: none;
}

.how__step-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.how__step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Features ─── */
.features {
  position: relative;
  z-index: 1;
  padding: 100px 0 120px;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card__icon svg,
.feature-card__icon [data-lucide] {
  width: 24px;
  height: 24px;
}

.feature-card__icon[style*="--accent: #A78BFA"] {
  background: rgba(167, 139, 250, 0.12);
  color: #A78BFA;
}

.feature-card__icon[style*="--accent: #34D399"] {
  background: rgba(52, 211, 153, 0.12);
  color: #34D399;
}

.feature-card__icon[style*="--accent: #60A5FA"] {
  background: rgba(96, 165, 250, 0.12);
  color: #60A5FA;
}

.feature-card__icon[style*="--accent: #FBBF24"] {
  background: rgba(251, 191, 36, 0.12);
  color: #FBBF24;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Spotlight Sections (Sanctuary / Soul Coins) ─── */
.spotlight {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.spotlight__layout {
  display: flex;
  align-items: center;
  gap: 56px;
}

.spotlight__layout--reverse {
  flex-direction: row-reverse;
}

.spotlight__text {
  flex: 1;
}

.spotlight__desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 32px;
}

.spotlight__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spotlight__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.spotlight__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spotlight__detail-icon svg,
.spotlight__detail-icon [data-lucide] {
  width: 20px;
  height: 20px;
}

.spotlight__detail-icon[style*="--accent: #A78BFA"] {
  background: rgba(167, 139, 250, 0.12);
  color: #A78BFA;
}

.spotlight__detail-icon[style*="--accent: #34D399"] {
  background: rgba(52, 211, 153, 0.12);
  color: #34D399;
}

.spotlight__detail-icon[style*="--accent: #FBBF24"] {
  background: rgba(251, 191, 36, 0.12);
  color: #FBBF24;
}

.spotlight__detail-icon[style*="--accent: #60A5FA"] {
  background: rgba(96, 165, 250, 0.12);
  color: #60A5FA;
}

.spotlight__detail strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.spotlight__detail span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.spotlight__visual {
  flex-shrink: 0;
}

/* ─── Screenshots ─── */
.screenshots {
  position: relative;
  z-index: 1;
  padding: 80px 0 120px;
}

.screenshots__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

/* ─── Download CTA ─── */
.download {
  position: relative;
  z-index: 1;
  padding: 60px 0 120px;
}

.download__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  position: relative;
  padding: 64px 48px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.download__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%);
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  pointer-events: none;
}

.download__text {
  position: relative;
  flex: 1;
  max-width: 460px;
}

.download__logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 6px 30px rgba(124, 58, 237, 0.25);
}

.download__title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.download__subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.download__note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-subtle);
}

.download__phone {
  position: relative;
  flex-shrink: 0;
}

.download__hero-logo {
  flex-shrink: 0;
  position: relative;
}

.download__hero-logo-img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 48px;
  box-shadow:
    0 12px 50px rgba(124, 58, 237, 0.35),
    0 0 100px rgba(96, 165, 250, 0.15);
}

/* ─── Footer ─── */
.footer {
  position: relative;
  z-index: 1;
  padding: 0 24px 40px;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
}

.footer__links {
  display: flex;
  gap: 28px;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__divider {
  height: 1px;
  background: var(--border);
}

.footer__copy {
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--text-subtle);
}

/* ─── Privacy / Terms Blocks ─── */
.privacy {
  padding: 40px 0;
}

.privacy h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.privacy__updated {
  font-size: 13px;
  color: var(--text-subtle);
  margin-bottom: 20px;
}

.privacy h4 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--accent-bright);
}

.privacy p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.privacy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy a:hover {
  color: var(--accent-bright);
}

/* ─── Responsive ─── */

/* Tablet */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 48px;
    padding-top: 100px;
  }

  .hero__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__subtitle {
    max-width: 480px;
  }

  .hero__buttons {
    justify-content: center;
  }

  .proof__row {
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
  }

  .proof__divider {
    width: 60px;
    height: 1px;
  }

  .how__steps {
    flex-direction: column;
    gap: 16px;
  }

  .spotlight__layout,
  .spotlight__layout--reverse {
    flex-direction: column;
    text-align: center;
  }

  .spotlight__text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .spotlight__details {
    text-align: left;
  }

  .spotlight__desc {
    max-width: 520px;
  }

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

  .screenshots__row {
    gap: 16px;
  }

  .phone-frame--small {
    width: 180px;
  }

  .phone-frame--featured {
    transform: scale(1.05);
  }

  .download__card {
    flex-direction: column;
    text-align: center;
    padding: 48px 28px;
    gap: 40px;
  }

  .download__text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .section__inner {
    padding: 0 16px;
  }

  /* Nav */
  .nav {
    padding: 10px 16px;
  }

  .nav__links a:not(.nav__cta) {
    display: none;
  }

  .nav__cta {
    padding: 7px 16px;
    font-size: 13px !important;
  }

  .nav__logo {
    font-size: 18px;
    gap: 8px;
  }

  .nav__logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  /* Hero */
  .hero {
    padding: 90px 16px 48px;
    min-height: auto;
    gap: 36px;
  }

  .hero__badge {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  .hero__title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .hero__subtitle {
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

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

  .phone-frame {
    width: 240px;
  }

  /* Proof */
  .proof {
    margin-top: -16px;
    padding: 0 0 32px;
  }

  .proof__row {
    gap: 16px;
    padding: 20px 16px;
    border-radius: var(--radius-md);
  }

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

  .proof__value {
    font-size: 14px;
  }

  .proof__label {
    font-size: 12px;
  }

  /* How It Works */
  .how {
    padding: 48px 0 64px;
  }

  .section__header {
    margin-bottom: 36px;
  }

  .section__badge {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 14px;
  }

  .section__title {
    font-size: 26px;
  }

  .section__subtitle {
    font-size: 15px;
    margin-top: 12px;
  }

  .how__step {
    padding: 24px 20px;
  }

  .how__number {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 16px;
  }

  .how__step-content h3 {
    font-size: 16px;
  }

  .how__step-content p {
    font-size: 13px;
  }

  /* Spotlights */
  .spotlight {
    padding: 48px 0;
  }

  .spotlight__desc {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .spotlight__detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .spotlight__detail strong {
    font-size: 14px;
  }

  .spotlight__detail span {
    font-size: 13px;
  }

  .phone-frame--small {
    width: 220px;
  }

  .phone-frame--featured {
    transform: scale(1);
  }

  /* Features */
  .features {
    padding: 48px 0 64px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .feature-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 16px;
  }

  .feature-card h3 {
    font-size: 16px;
  }

  .feature-card p {
    font-size: 13px;
  }

  /* Screenshots */
  .screenshots {
    padding: 48px 0 64px;
  }

  .screenshots__row {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  /* Download CTA */
  .download {
    padding: 32px 0 64px;
  }

  .download__card {
    padding: 36px 20px;
    border-radius: var(--radius-lg);
    gap: 32px;
  }

  .download__title {
    font-size: 28px;
  }

  .download__subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .download__hero-logo-img {
    width: 180px;
    height: 180px;
    border-radius: 36px;
  }

  .btn--large {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer {
    padding: 0 16px 32px;
  }

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

  .footer__brand {
    justify-content: center;
  }

  .footer__links {
    gap: 20px;
    justify-content: center;
  }

  /* Privacy */
  .privacy h3 {
    font-size: 20px;
  }

  .privacy h4 {
    font-size: 15px;
    margin-top: 20px;
  }

  .privacy p {
    font-size: 13px;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .hero__title {
    font-size: 28px;
  }

  .section__title {
    font-size: 23px;
  }

  .phone-frame {
    width: 210px;
  }

  .phone-frame--small {
    width: 200px;
  }

  .download__hero-logo-img {
    width: 150px;
    height: 150px;
    border-radius: 30px;
  }

  .download__title {
    font-size: 24px;
  }
}

/* ─── Animations ─── */
@media (prefers-reduced-motion: no-preference) {
  .feature-card,
  .how__step {
    animation: fade-up 0.6s ease both;
  }

  .how__step:nth-child(1) { animation-delay: 0.1s; }
  .how__step:nth-child(2) { animation-delay: 0.2s; }
  .how__step:nth-child(3) { animation-delay: 0.3s; }

  .feature-card:nth-child(1) { animation-delay: 0.1s; }
  .feature-card:nth-child(2) { animation-delay: 0.2s; }
  .feature-card:nth-child(3) { animation-delay: 0.3s; }
  .feature-card:nth-child(4) { animation-delay: 0.4s; }

  .screenshots__row .phone-frame:nth-child(1) { animation-delay: 0.15s; }
  .screenshots__row .phone-frame:nth-child(2) { animation-delay: 0.3s; }
  .screenshots__row .phone-frame:nth-child(3) { animation-delay: 0.45s; }

  .proof__item {
    animation: fade-up 0.5s ease both;
  }
  .proof__item:nth-child(1) { animation-delay: 0.1s; }
  .proof__item:nth-child(3) { animation-delay: 0.2s; }
  .proof__item:nth-child(5) { animation-delay: 0.3s; }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Legal Pages (Privacy, Terms) ─── */
.legal {
  padding: 140px 0 80px;
}

.legal__content {
  max-width: 720px;
  margin: 0 auto;
}

.legal__title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal__updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.legal__content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--accent-bright);
}

.legal__content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal__content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__content a:hover {
  color: var(--accent-bright);
}

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

/* ─── Scroll Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.how__step.reveal:nth-child(2) { transition-delay: 0.1s; }
.how__step.reveal:nth-child(3) { transition-delay: 0.2s; }

.feature-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.feature-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.feature-card.reveal:nth-child(4) { transition-delay: 0.24s; }
.feature-card.reveal:nth-child(5) { transition-delay: 0.32s; }

.screenshots__row .phone-frame.reveal:nth-child(2) { transition-delay: 0.12s; }
.screenshots__row .phone-frame.reveal:nth-child(3) { transition-delay: 0.24s; }

.proof__item.reveal:nth-child(3) { transition-delay: 0.1s; }
.proof__item.reveal:nth-child(5) { transition-delay: 0.2s; }

/* Disable motion for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
