/* ===========================
   TAQWA — GLOBAL STYLES
   =========================== */

:root {
  --bg-dark:       #0d2818;
  --bg-mid:        #112d1e;
  --bg-card:       #163524;
  --bg-card-hover: #1c4530;
  --gold:          #c9a84c;
  --gold-light:    #e8c76d;
  --gold-dim:      #a0803a;
  --green-accent:  #2d7a4f;
  --green-bright:  #3da066;
  --text-primary:  #f5f0e8;
  --text-secondary:#c8bfa8;
  --text-muted:    #8a7f6a;
  --border:        rgba(201,168,76,.18);
  --border-strong: rgba(201,168,76,.35);
  --shadow:        0 8px 40px rgba(0,0,0,.5);
  --radius:        14px;
  --radius-lg:     22px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ──────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ── TYPOGRAPHY ─────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
  line-height: 1.25;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { color: var(--text-secondary); }

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

.arabic {
  font-family: 'Amiri', serif;
  direction: rtl;
  font-size: 1.3rem;
  color: var(--gold-light);
}

/* ── LAYOUT ─────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
}

.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 20px 0 48px;
}

/* ── GOLD GRADIENT TEXT ─────────────────── */
.text-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTON ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all .25s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--bg-dark);
  box-shadow: 0 4px 24px rgba(201,168,76,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,.5);
  color: var(--bg-dark);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,.1);
  transform: translateY(-2px);
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* ── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 0 24px;
  background: rgba(13,40,24,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.navbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  border: 1.5px solid var(--border-strong);
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text-secondary);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ───────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(45,122,79,.25) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201,168,76,.08) 0%, transparent 60%);
}

.hero-ornament {
  position: absolute;
  top: 80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.12);
  border: 1px solid var(--border-strong);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  margin-bottom: 12px;
}

.hero-tagline {
  font-family: 'Amiri', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
  font-style: italic;
}

.hero-desc {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-stat-label {
  font-size: .82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

.phone-wrap {
  position: relative;
  display: inline-block;
}

.phone-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse, rgba(201,168,76,.18) 0%, transparent 65%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: .6; transform: scale(1); }
  50%       { opacity: 1;  transform: scale(1.05); }
}

.phone-mockup {
  width: 260px;
  background: #0a1e12;
  border-radius: 44px;
  padding: 10px;
  border: 2px solid rgba(201,168,76,.4);
  box-shadow: 0 24px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.04) inset;
  position: relative;
  z-index: 2;
}

.dynamic-island {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,.07), 0 2px 10px rgba(0,0,0,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.dynamic-island::before {
  content: '';
  width: 8px; height: 8px;
  background: #1a1a1a;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.08);
  box-shadow: 0 0 6px rgba(80,180,255,.3);
}

.dynamic-island::after {
  content: '';
  width: 5px; height: 5px;
  background: #222;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
}

.phone-screen {
  background: var(--bg-dark);
  border-radius: 34px;
  overflow: hidden;
  height: 520px;
  position: relative;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px 4px;
  font-size: .65rem;
  color: var(--text-muted);
}

.phone-header {
  background: var(--bg-card);
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.phone-greeting {
  font-size: .72rem;
  color: var(--text-muted);
}

.phone-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
}

.phone-salah-card {
  margin: 12px;
  background: linear-gradient(135deg, var(--green-accent), var(--bg-card));
  border-radius: 12px;
  padding: 14px;
  border: 1px solid var(--border);
}

.phone-salah-title {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 4px;
}

.phone-salah-next {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--text-primary);
}

.phone-salah-time {
  font-size: .8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.phone-quran-card {
  margin: 0 12px 10px;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid var(--border);
}

.phone-quran-label {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.phone-arabic-verse {
  font-family: 'Amiri', serif;
  font-size: .95rem;
  direction: rtl;
  color: var(--gold-light);
  line-height: 1.6;
}

.phone-nav {
  display: flex;
  justify-content: space-around;
  padding: 10px 8px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: .55rem;
  color: var(--text-muted);
}

.phone-nav-item.active {
  color: var(--gold);
}

.phone-nav-icon { font-size: 1rem; }

/* Floating badge */
.float-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}

.float-badge:nth-child(2) { animation-delay: -2s; }

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

.float-badge-left {
  left: -60px;
  top: 130px;
}
.float-badge-right {
  right: -55px;
  top: 80px;
}
.float-badge-bottom {
  left: -55px;
  bottom: 90px;
  animation-delay: -1s;
}

.float-badge-icon { font-size: 1.3rem; }
.float-badge-text { font-size: .72rem; font-weight: 700; color: var(--text-primary); line-height: 1.3; }
.float-badge-sub  { font-size: .65rem; color: var(--text-muted); }

/* ── FEATURES ───────────────────────────── */
.features { background: var(--bg-mid); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
}

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}

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

.feature-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.feature-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.feature-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 12px;
  background: rgba(201,168,76,.1);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .72rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .06em;
}

/* ── SCREENSHOTS ────────────────────────── */
.screenshots { background: var(--bg-dark); }

.screenshots-track {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
}


/* Salat screen */
.salat-time-list { display: flex; flex-direction: column; gap: 8px; }
.salat-time-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: var(--bg-card);
  border-radius: 8px;
  font-size: .72rem;
  border: 1px solid var(--border);
}
.salat-time-item.next-prayer {
  background: linear-gradient(135deg, rgba(201,168,76,.2), rgba(201,168,76,.05));
  border-color: var(--gold-dim);
}
.salat-name { color: var(--text-primary); font-weight: 700; }
.salat-time { color: var(--gold); font-weight: 700; }

/* Quran screen */
.surah-list { display: flex; flex-direction: column; gap: 6px; }
.surah-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.surah-num {
  width: 26px; height: 26px;
  background: rgba(201,168,76,.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.surah-info { flex: 1; }
.surah-name-en { font-size: .7rem; font-weight: 700; color: var(--text-primary); }
.surah-name-ar { font-family: 'Amiri', serif; font-size: .85rem; color: var(--gold); direction: rtl; }
.surah-verses { font-size: .6rem; color: var(--text-muted); }

/* Dua screen */
.dua-list { display: flex; flex-direction: column; gap: 10px; }
.dua-card-mock {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 10px;
  border: 1px solid var(--border);
}
.dua-category { font-size: .6rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.dua-arabic-mock { font-family: 'Amiri', serif; font-size: .9rem; direction: rtl; color: var(--gold-light); text-align: right; line-height: 1.5; }
.dua-english-mock { font-size: .65rem; color: var(--text-secondary); margin-top: 4px; }

/* Tasbih screen */
.tasbih-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.tasbih-ring {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: transparent;
  border: 6px solid var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 0 2px var(--border-strong);
}
.tasbih-progress {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0%, var(--gold) 33%, transparent 33%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), black calc(100% - 5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 6px), black calc(100% - 5px));
}
.tasbih-count { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.tasbih-label { font-size: .65rem; color: var(--text-muted); font-family: 'Amiri', serif; }
.tasbih-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(201,168,76,.35);
}
.tasbih-total { font-size: .68rem; color: var(--text-secondary); }

/* Social screen */
.social-feed { display: flex; flex-direction: column; gap: 8px; }
.social-post {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 10px;
  border: 1px solid var(--border);
}
.social-post-header { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.social-avatar {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--green-accent), var(--gold-dim));
  border-radius: 50%;
  flex-shrink: 0;
}
.social-username { font-size: .65rem; color: var(--gold); font-weight: 700; }
.social-text { font-size: .68rem; color: var(--text-secondary); line-height: 1.5; }
.social-actions { display: flex; gap: 10px; margin-top: 6px; font-size: .6rem; color: var(--text-muted); }

/* ── DOWNLOAD ───────────────────────────── */
.download { background: var(--bg-mid); }

.download-box {
  background: linear-gradient(135deg, var(--bg-card), #0f2d1c);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-box::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 65%);
  pointer-events: none;
}

.download-ornament {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
  animation: pulse-glow 3s ease-in-out infinite;
}

.download-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.download-desc {
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.store-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-dark);
  border: 2px solid var(--border-strong);
  border-radius: 14px;
  padding: 14px 24px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all .25s;
  min-width: 180px;
}

.store-btn:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.08);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.store-btn-icon { font-size: 1.8rem; }

.store-btn-info { text-align: left; }
.store-btn-label { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.store-btn-name  { font-weight: 700; font-size: 1rem; color: var(--text-primary); }

/* ── FOOTER ─────────────────────────────── */
footer {
  background: #091a10;
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-brand-desc {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  margin: 14px 0 22px;
  max-width: 280px;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy { font-size: .85rem; color: var(--text-muted); }

.footer-arabic {
  font-family: 'Amiri', serif;
  font-size: 1rem;
  color: var(--gold);
  direction: rtl;
}

/* ── PRIVACY PAGE ───────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: var(--bg-mid);
  border-bottom: 1px solid var(--border);
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.prose h2 {
  font-size: 1.5rem;
  color: var(--gold);
  margin: 52px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.prose h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 28px 0 10px;
}

.prose p {
  color: var(--text-secondary);
  font-size: .97rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.prose ul, .prose ol {
  color: var(--text-secondary);
  font-size: .97rem;
  line-height: 1.85;
  padding-left: 22px;
  margin-bottom: 16px;
}

.prose li { margin-bottom: 8px; }

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

.prose .highlight-box {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px 0;
}

.prose .highlight-box p { margin: 0; }

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

.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 48px;
}

.toc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.toc ol {
  color: var(--text-secondary);
  font-size: .92rem;
  padding-left: 20px;
  margin: 0;
}

.toc li { margin-bottom: 6px; }
.toc a { color: var(--text-secondary); }
.toc a:hover { color: var(--gold); }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .waitlist-form { flex-direction: column; }
  .waitlist-input, .waitlist-btn { width: 100%; text-align: center; }
}

@media (max-width: 700px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 0; }
  .download-box { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .screenshots-track { gap: 16px; }
  .screenshot-frame:nth-child(2),
  .screenshot-frame:nth-child(4) { transform: none; }
}

@media (max-width: 480px) {
  .screenshot-frame { width: 160px; }
  .screenshot-inner { min-height: 320px; }
}

/* ── MOBILE MENU ────────────────────────── */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(13,40,24,.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 1rem;
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── PHONE SCREENSHOT (hero) ────────────── */
.phone-screenshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.phone-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 520px;
  color: var(--text-muted);
  border: 2px dashed var(--border-strong);
  border-radius: 34px;
  padding: 24px;
  text-align: center;
}

.phone-placeholder-icon { font-size: 2rem; }

.phone-placeholder-name {
  font-family: monospace;
  font-size: .78rem;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  padding: 4px 10px;
  border-radius: 6px;
}

.phone-placeholder-hint {
  font-size: .72rem;
  color: var(--text-muted);
}

/* ── SCREENSHOTS SECTION (real photos) ──── */
.screenshot-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.sc-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--gold);
  text-transform: uppercase;
}

.sc-phone {
  width: 190px;
  background: #0a1e12;
  border-radius: 36px;
  padding: 9px;
  border: 2px solid rgba(201,168,76,.4);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  transition: transform .3s;
  overflow: hidden;
}

.sc-phone:hover { transform: scale(1.04) translateY(-4px); }

.screenshot-frame:nth-child(2) .sc-phone { transform: translateY(20px); }
.screenshot-frame:nth-child(4) .sc-phone { transform: translateY(20px); }
.screenshot-frame:nth-child(2) .sc-phone:hover,
.screenshot-frame:nth-child(4) .sc-phone:hover { transform: translateY(14px) scale(1.04); }

.sc-phone img {
  width: 100%;
  border-radius: 28px;
  display: block;
  height: 360px;
  object-fit: cover;
  object-position: top;
}

.sc-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 360px;
  border: 2px dashed var(--border-strong);
  border-radius: 28px;
  color: var(--text-muted);
  padding: 20px;
  text-align: center;
}

.sc-placeholder svg { opacity: .5; color: var(--gold); }

.sc-placeholder span {
  font-family: monospace;
  font-size: .75rem;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  padding: 4px 10px;
  border-radius: 6px;
}

.sc-hint {
  text-align: center;
  margin-top: 40px;
  font-size: .85rem;
  color: var(--text-muted);
}

.sc-hint code {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: .82rem;
  color: var(--gold);
}

/* ── WAITLIST ───────────────────────────── */
.waitlist {
  background: var(--bg-mid);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.waitlist-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201,168,76,.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.waitlist::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(45,122,79,.16) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 85% 40%, rgba(201,168,76,.07) 0%, transparent 55%);
  pointer-events: none;
}

.waitlist-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.waitlist-verse {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.waitlist-verse-trans {
  font-size: .82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 28px;
}

.waitlist-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 32px;
}

.waitlist-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .82rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.waitlist-badge-dot {
  width: 8px; height: 8px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(61,160,102,.25);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(61,160,102,.25); }
  50%       { box-shadow: 0 0 0 6px rgba(61,160,102,.1); }
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.waitlist-input {
  flex: 1;
  background: var(--bg-card);
  border: 1.5px solid var(--border-strong);
  border-radius: 50px;
  padding: 14px 24px;
  font-family: 'Lato', sans-serif;
  font-size: .97rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  min-width: 0;
}

.waitlist-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}

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

.waitlist-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--bg-dark);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-family: 'Lato', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
  flex-shrink: 0;
}

.waitlist-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.4);
}

.waitlist-btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }

.waitlist-error {
  font-size: .85rem;
  color: #ff8a8a;
  margin-top: 12px;
  min-height: 20px;
}

.waitlist-note {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.waitlist-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: fadeInUp .5s ease forwards;
}

.waitlist-success.show { display: flex; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.waitlist-success-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--green-accent), var(--green-bright));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 32px rgba(45,122,79,.4);
}

/* ── ANIMATIONS ─────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s, transform .6s;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
