/* ================================================================
   AstroSamay — site.css
   Cosmic dark theme · Gold #F2C94C · Orange #FF9F43
   Fonts: Poppins · Inter · Mukta (Devanagari)
================================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --bg:           #0B0C10;
  --bg-alt:       #0F1018;
  --card:         #141620;
  --card-hover:   #181b2a;
  --indigo:       #1F1B3A;
  --indigo-light: #2D2D3A;
  --gold:         #F2C94C;
  --orange:       #FF9F43;
  --green:        #27AE60;
  --red:          #EB5757;
  --white:        #FAFAFA;
  --mist:         #E0E0E0;
  --subtle:       rgba(250,250,250,0.55);
  --border:       rgba(242,201,76,0.12);
  --border-dim:   rgba(255,255,255,0.08);
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    20px;
  --shadow-gold:  0 0 40px rgba(242,201,76,0.15);
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-deva:    'Mukta', system-ui, sans-serif;
  --max-w:        1100px;
  --section-py:   96px;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--mist);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

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

/* ── Star canvas ────────────────────────────────────────────── */
#star-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Layout helpers ─────────────────────────────────────────── */
.container {
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

section {
  padding-block: var(--section-py);
  position: relative;
  z-index: 1;
}

.bg-alt {
  background-color: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.section-head p {
  color: var(--subtle);
  font-size: 1rem;
  margin-top: 14px;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--subtle); }

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

.text-gradient {
  background: linear-gradient(120deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.devanagari {
  font-family: var(--font-deva);
}

/* ── Tag pill ───────────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(242,201,76,0.1);
  border: 1px solid rgba(242,201,76,0.25);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #0B0C10;
  box-shadow: 0 4px 20px rgba(242,201,76,0.3);
}

.btn-primary:hover {
  background: #f7d76a;
  box-shadow: 0 6px 28px rgba(242,201,76,0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(242,201,76,0.45);
}

.btn-outline:hover {
  background: rgba(242,201,76,0.08);
  border-color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--subtle);
  border: 1.5px solid var(--border-dim);
}

.btn-ghost:hover:not([disabled]) {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.btn-sm  { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg  { padding: 14px 28px; font-size: 1rem; }

/* ── Language toggle ────────────────────────────────────────── */
.lang-btn {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--subtle);
  transition: all 0.2s;
}

.lang-btn.active,
.lang-btn:hover {
  background: rgba(242,201,76,0.12);
  color: var(--gold);
}

/* Language content visibility */
.hi-text,
.hi-inline {
  display: none;
}

body.lang-hi .en-text,
body.lang-hi .en-inline {
  display: none;
}

body.lang-hi .hi-text {
  display: block;
}

body.lang-hi .hi-inline {
  display: inline;
}

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(11,12,16,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.site-nav.scrolled {
  border-bottom-color: var(--border-dim);
  background: rgba(11,12,16,0.95);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
  width: min(var(--max-w), 100% - 3rem);
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.nav-wordmark em {
  font-style: normal;
  font-weight: 400;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 8px;
  flex: 1;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--subtle);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.2s;
}

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

.nav-links a:hover::after {
  width: 100%;
}

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

.lang-toggle {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  padding: 3px;
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--mist);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding-top: calc(72px + 72px);
  padding-bottom: var(--section-py);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at 50% 0%, rgba(242,201,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero-text .tag {
  margin-bottom: 24px;
}

.hero-text h1 {
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ── Waitlist form ──────────────────────────────────────────── */
.waitlist-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border-dim);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.waitlist-form input[type="email"]::placeholder {
  color: rgba(224,224,224,0.35);
}

.waitlist-form input[type="email"]:focus {
  border-color: rgba(242,201,76,0.5);
  background: rgba(255,255,255,0.08);
}

.waitlist-form.success input {
  border-color: var(--green);
}

/* ── Store badges ───────────────────────────────────────────── */
.store-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dim);
  cursor: default;
  transition: border-color 0.2s;
}

.store-badge:hover {
  border-color: rgba(255,255,255,0.15);
}

.store-badge-inner {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.store-badge .sub {
  font-size: 0.65rem;
  color: var(--subtle);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.store-badge .name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-display);
}

/* ── Phone mockup ───────────────────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-wrap {
  position: relative;
}

.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at 50% 50%, rgba(242,201,76,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: 260px;
  height: 540px;
  background: #0B0C10;
  border-radius: 40px;
  border: 2px solid rgba(242,201,76,0.3);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 40px 80px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-pill {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  z-index: 10;
}

.phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── Ticker strip ───────────────────────────────────────────── */
.ticker-strip {
  background: rgba(242,201,76,0.06);
  border-top: 1px solid rgba(242,201,76,0.12);
  border-bottom: 1px solid rgba(242,201,76,0.12);
  overflow: hidden;
  padding-block: 12px;
  position: relative;
  z-index: 1;
}

.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker 40s linear infinite;
  will-change: transform;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-inner:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-inline: 28px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(242,201,76,0.2);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(242,201,76,0.08);
}

/* ── Differentiator grid ────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin-inline: auto;
}

.diff-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1.5px solid;
}

.diff-card.them {
  background: rgba(235,87,87,0.04);
  border-color: rgba(235,87,87,0.18);
}

.diff-card.us {
  background: rgba(242,201,76,0.05);
  border-color: rgba(242,201,76,0.3);
  position: relative;
  overflow: hidden;
}

.diff-card.us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(242,201,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.diff-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.them-label { color: rgba(235,87,87,0.7); }
.us-label   { color: var(--gold); }

.diff-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.them-price { color: rgba(235,87,87,0.6); }
.us-price   { color: var(--gold); }

.diff-price-note {
  font-size: 0.82rem;
  color: var(--subtle);
  margin-bottom: 24px;
}

.diff-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.diff-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--mist);
}

.icon-no  { color: var(--red);   font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.icon-yes { color: var(--green); font-size: 1rem; font-weight: 700; flex-shrink: 0; }

/* ── Features grid ──────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  text-align: center;
}

.feat-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  color: var(--gold);
}

.feat-icon svg {
  width: 2.4rem;
  height: 2.4rem;
  filter: drop-shadow(0 0 10px rgba(242,201,76,0.35));
}

.feat-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.feat-card p {
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ── Steps ──────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(50% - 33%);
  width: 66%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  pointer-events: none;
}

.step {
  text-align: center;
  padding: 8px;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(242,201,76,0.1);
  border: 2px solid rgba(242,201,76,0.3);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 24px rgba(242,201,76,0.1);
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testi-text {
  color: rgba(250,250,250,0.8);
  font-size: 0.9rem;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #0B0C10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.testi-rashi {
  font-size: 0.78rem;
  color: var(--subtle);
  margin-top: 2px;
}

/* ── Pricing ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 780px;
  margin-inline: auto;
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1.5px solid;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pricing-card.free {
  background: rgba(242,201,76,0.05);
  border-color: rgba(242,201,76,0.35);
  position: relative;
  overflow: hidden;
}

.pricing-card.free::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(242,201,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card.pro {
  background: var(--card);
  border-color: var(--border-dim);
}

.pricing-card.lifetime {
  background: rgba(255,159,67,0.04);
  border-color: rgba(255,159,67,0.3);
}

.pricing-card.lifetime::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,159,67,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.pricing-badge.popular {
  background: rgba(242,201,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(242,201,76,0.3);
}

.pricing-badge.soon {
  background: rgba(255,255,255,0.06);
  color: var(--subtle);
  border: 1px solid var(--border-dim);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.pricing-price .amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.pricing-price .period {
  font-size: 0.88rem;
  color: var(--subtle);
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--subtle);
  margin-top: 0;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--mist);
}

.chk {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.off {
  color: var(--subtle);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.pricing-card .btn {
  display: flex;
  justify-content: center;
}

/* ── Blog ───────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242,201,76,0.2);
}

.blog-thumb {
  background: linear-gradient(135deg, var(--indigo), rgba(242,201,76,0.06));
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.blog-thumb-glyph {
  font-size: 3rem;
}

.blog-thumb-tag {
  position: absolute;
  bottom: 12px;
  left: 16px;
  background: rgba(11,12,16,0.7);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--subtle);
  letter-spacing: 0.03em;
}

.blog-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-top: 2px;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--subtle);
  line-height: 1.6;
  flex: 1;
}

.blog-read {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 8px;
  transition: gap 0.2s;
  display: inline-block;
}

.blog-card:hover .blog-read {
  text-decoration: underline;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  max-width: 740px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-display);
  background: var(--card);
  transition: background 0.2s, color 0.2s;
}

.faq-q:hover {
  background: var(--card-hover);
  color: var(--gold);
}

.faq-q[aria-expanded="true"] {
  color: var(--gold);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  background: rgba(31,27,58,0.4);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-a.open {
  max-height: 300px;
  padding: 0 28px 22px;
}

.faq-a p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(224,224,224,0.8);
  padding-top: 4px;
}

/* ── CTA section ────────────────────────────────────────────── */
.cta-section {
  padding-block: 100px;
  text-align: center;
  position: relative;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 0%, rgba(242,201,76,0.07) 0%, transparent 60%);
  border-top: 1px solid var(--border-dim);
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1rem;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.cta-form-wrap {
  max-width: 480px;
  margin-inline: auto;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--border-dim);
  padding-top: 60px;
}

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

.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--subtle);
  max-width: 260px;
}

.footer-col h5 {
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(224,224,224,0.5);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(224,224,224,0.35);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(224,224,224,0.5);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: rgba(242,201,76,0.1);
  border-color: rgba(242,201,76,0.3);
  color: var(--gold);
}

/* ── Scroll-reveal animations ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── Toast notification ─────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: #1b2a1b;
  border: 1.5px solid rgba(39,174,96,0.4);
  color: #6fcf97;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), opacity 0.4s;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  :root { --section-py: 72px; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-text .tag { margin-inline: auto; }
  .hero-text p { max-width: 560px; margin-inline: auto; }

  .waitlist-form {
    justify-content: center;
  }

  .store-badges {
    justify-content: center;
  }

  .diff-grid,
  .pricing-grid {
    max-width: 600px;
    grid-template-columns: 1fr;
  }

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

  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

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

  .steps-grid::before { display: none; }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root { --section-py: 56px; }

  .nav-links, .nav-actions { display: none; }

  .nav-burger { display: flex; margin-left: auto; }

  /* Mobile nav open state */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(11,12,16,0.98);
    backdrop-filter: blur(16px);
    padding: 20px 24px 32px;
    gap: 16px;
    border-bottom: 1px solid var(--border-dim);
    z-index: 998;
  }

  .nav-actions.mobile-open {
    display: flex;
    flex-direction: row;
    position: fixed;
    top: calc(60px + var(--mobile-nav-h, 200px));
    left: 0;
    right: 0;
    background: rgba(11,12,16,0.98);
    backdrop-filter: blur(16px);
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--border-dim);
    z-index: 998;
  }

  .phone-frame {
    width: 220px;
    height: 460px;
  }

  .features-grid,
  .steps-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-form input[type="email"] {
    min-width: unset;
    width: 100%;
  }

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

  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
  }
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(242,201,76,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(242,201,76,0.5); }

/* ── Selection ──────────────────────────────────────────────── */
::selection {
  background: rgba(242,201,76,0.25);
  color: var(--white);
}
