/* ============================================================
   CLIMR — styles.css
   ============================================================ */

/* Google Fonts imported via index.html link tag */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --bg:          #0D0D0D;
  --surface:     #1A1A0F;
  --surface-2:   #141414;
  --gold:        #FFD700;
  --amber:       #E6A817;
  --text:        #FFFFFF;
  --text-muted:  #B3B3B3;
  --success:     #4CAF50;
  --danger:      #E53935;
  --border:      rgba(255, 215, 0, 0.15);
  --border-hover:rgba(255, 215, 0, 0.6);
  --glow:        rgba(255, 215, 0, 0.12);
  --glow-strong: rgba(255, 215, 0, 0.25);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p { color: var(--text-muted); line-height: 1.7; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--amber); }

/* ── Section Label ─────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

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

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: #0D0D0D;
  box-shadow: 0 0 24px rgba(255, 215, 0, 0.3);
}
.btn-gold:hover {
  background: var(--amber);
  color: #0D0D0D;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
  transform: translateY(-2px);
}

.btn-store {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
}
.btn-store:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 215, 0, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(255,215,0,0.15);
}
.btn-store .store-icon {
  font-size: 1.3rem;
}
.btn-store .store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.btn-store .store-text small {
  font-size: 0.65rem;
  opacity: 0.7;
  font-weight: 400;
}
.btn-store .store-text span {
  font-size: 0.95rem;
  font-weight: 700;
}

/* ── Fade-in-up Animation ──────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up.delay-1 { transition-delay: 0.1s; }
.fade-in-up.delay-2 { transition-delay: 0.2s; }
.fade-in-up.delay-3 { transition-delay: 0.3s; }
.fade-in-up.delay-4 { transition-delay: 0.4s; }
.fade-in-up.delay-5 { transition-delay: 0.5s; }
.fade-in-up.delay-6 { transition-delay: 0.6s; }

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.05em;
  text-decoration: none;
}
.nav-logo .logo-bolt {
  font-size: 1.3rem;
  filter: drop-shadow(0 0 8px var(--gold));
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn { font-size: 1rem; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(255,215,0,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 20%, rgba(255,215,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,215,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.2s;
}
.hero-logo .bolt {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 12px var(--gold));
}

.hero-headline {
  color: var(--text);
  margin-bottom: 0.2em;
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards 0.4s;
  text-shadow: 0 0 60px rgba(255,215,0,0.08);
}

.hero-subheadline {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards 0.55s;
  text-shadow: 0 0 40px rgba(255,215,0,0.3);
}

.hero-body {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards 0.7s;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards 0.85s;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
  animation: fadeIn 1s ease forwards 1.5s;
}
.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(4px); }
}

/* ================================================================
   PROBLEM SECTION
   ================================================================ */
.problem {
  padding: 100px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.problem::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.problem-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.stat-card {
  background: rgba(13,13,13,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}
.stat-card:hover::before { opacity: 1; }
.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,215,0,0.08);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  text-shadow: 0 0 30px rgba(255,215,0,0.4);
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.problem-tagline {
  text-align: center;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
  opacity: 0.9;
}

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.how {
  padding: 100px 0;
  position: relative;
}

.how-header {
  text-align: center;
  margin-bottom: 5rem;
}

.steps-wrapper {
  position: relative;
}

.steps-line {
  position: absolute;
  top: 52px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--amber), var(--gold));
  opacity: 0.3;
  z-index: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.step-card {
  text-align: center;
  padding: 0 16px;
}

.step-icon-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 0 0 0 rgba(255,215,0,0);
}
.step-icon-wrap:hover {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(255,215,0,0.2);
}

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  background: var(--gold);
  color: #0D0D0D;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  color: var(--text);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ================================================================
   FEATURES
   ================================================================ */
.features {
  padding: 100px 0;
  background: var(--surface);
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.feature-card {
  background: rgba(13,13,13,0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(255,215,0,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255,215,0,0.1), 0 0 0 1px rgba(255,215,0,0.15);
}
.feature-card:hover::after { opacity: 1; }

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255,215,0,0.3));
}
.feature-card h3 {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================================================
   BADGES / MILESTONES
   ================================================================ */
.badges {
  padding: 100px 0;
  position: relative;
}

.badges-header {
  text-align: center;
  margin-bottom: 1rem;
}
.badges-header h2 {
  max-width: 640px;
  margin: 0 auto 1rem;
}
.badges-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3.5rem;
  letter-spacing: 0.05em;
}

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

.badge-card {
  background: linear-gradient(135deg, rgba(26,26,15,0.9) 0%, rgba(13,13,13,0.9) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.badge-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255,215,0,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.badge-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255,215,0,0.12);
}
.badge-card:hover::before { opacity: 1; }

.badge-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 16px rgba(255,215,0,0.4));
}
.badge-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.2rem;
  letter-spacing: 0.04em;
}
.badge-day {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.badge-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--surface);
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.testimonial-card {
  background: rgba(13,13,13,0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,215,0,0.08);
}

.quote-mark {
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  font-weight: 800;
  opacity: 0.3;
  display: block;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
  margin-top: -1rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-source {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* ================================================================
   APP MOCKUPS
   ================================================================ */
.app-mockups {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.app-mockups::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,215,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.mockups-header {
  text-align: center;
  margin-bottom: 5rem;
}

.phones-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  padding: 40px 0 20px;
}

/* Phone frame */
.phone {
  width: 220px;
  height: 440px;
  background: #111111;
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.phone:hover { transform: translateY(-6px); }
.phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #0D0D0D;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}

.phone.phone-center {
  height: 480px;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(255,215,0,0.15),
    0 0 120px rgba(255,215,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.08);
  border-color: rgba(255,215,0,0.25);
  transform: translateY(0);
}
.phone.phone-center:hover { transform: translateY(-8px); }

.phone-screen {
  position: absolute;
  inset: 24px 6px 6px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg);
}

/* ── Phone 1: Dashboard ──────────── */
.screen-dashboard {
  background: linear-gradient(180deg, #0D0D0D 0%, #111108 100%);
  padding: 16px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dash-greeting {
  font-size: 0.55rem;
  color: var(--text-muted);
  font-weight: 500;
}
.dash-level {
  font-size: 0.5rem;
  color: var(--gold);
  font-weight: 700;
  border: 1px solid var(--gold);
  padding: 2px 6px;
  border-radius: 10px;
}
.dash-streak {
  text-align: center;
  background: rgba(255,215,0,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 10px;
}
.dash-streak-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255,215,0,0.4);
}
.dash-streak-label {
  font-size: 0.5rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.dash-check-btn {
  background: var(--gold);
  color: #0D0D0D;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(255,215,0,0.3);
}
.dash-check-icon {
  font-size: 0.9rem;
}
.dash-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.dash-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  text-align: center;
}
.dash-stat-val {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
}
.dash-stat-lbl {
  font-size: 0.42rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dash-progress-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dash-progress-label {
  font-size: 0.45rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.dash-progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.dash-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--gold));
  border-radius: 2px;
}

/* ── Phone 2: Panic Mode ─────────── */
.screen-panic {
  background: linear-gradient(180deg, #1a0505 0%, #0D0D0D 100%);
  padding: 16px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.panic-header-label {
  font-size: 0.5rem;
  color: #E53935;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}
.panic-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.12em;
  text-align: center;
}
.panic-circle-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 4px 0;
}
.panic-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(230, 168, 23, 0.2);
  animation: panicPulse 4s ease-in-out infinite;
}
.panic-ring:nth-child(2) {
  inset: 10px;
  border-color: rgba(230, 168, 23, 0.4);
  animation-delay: 0.5s;
}
.panic-ring:nth-child(3) {
  inset: 20px;
  border-color: rgba(230, 168, 23, 0.7);
  animation-delay: 1s;
}
.panic-core {
  position: absolute;
  inset: 30px;
  background: radial-gradient(circle, var(--amber), #c47a00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: panicBreath 4s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(230,168,23,0.5);
}
.panic-core-text {
  font-size: 0.35rem;
  font-weight: 800;
  color: #0D0D0D;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

@keyframes panicPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.08); opacity: 1; }
}
@keyframes panicBreath {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}

.panic-instruction {
  font-size: 0.55rem;
  color: var(--amber);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
}
.panic-timer-label {
  font-size: 0.45rem;
  color: var(--text-muted);
  text-align: center;
}
.panic-steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.panic-step {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 5px 8px;
}
.panic-step-num {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(230,168,23,0.2);
  color: var(--amber);
  font-size: 0.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.panic-step.active .panic-step-num {
  background: var(--amber);
  color: #0D0D0D;
}
.panic-step-text {
  font-size: 0.45rem;
  color: var(--text-muted);
}
.panic-step.active .panic-step-text { color: var(--text); }

/* ── Phone 3: Ascension ──────────── */
.screen-ascension {
  background: linear-gradient(180deg, #0D0D0D 0%, #0a0a08 100%);
  padding: 16px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.asc-title {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.asc-subtitle {
  font-size: 0.42rem;
  color: var(--text-muted);
  margin-top: -4px;
}
.asc-current-badge {
  background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(230,168,23,0.05) 100%);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.asc-badge-icon { font-size: 1.8rem; }
.asc-badge-info {}
.asc-badge-name {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gold);
}
.asc-badge-day {
  font-size: 0.45rem;
  color: var(--amber);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.asc-badge-desc {
  font-size: 0.42rem;
  color: var(--text-muted);
  font-style: italic;
}
.asc-progress-section {}
.asc-prog-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.asc-prog-label {
  font-size: 0.45rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.asc-prog-val {
  font-size: 0.45rem;
  color: var(--gold);
  font-weight: 700;
}
.asc-prog-bar {
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.asc-prog-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--gold));
  border-radius: 3px;
}
.asc-badges-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.asc-mini-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 6px 4px;
  text-align: center;
}
.asc-mini-badge.earned {
  background: rgba(255,215,0,0.05);
  border-color: rgba(255,215,0,0.2);
}
.asc-mini-badge .mb-icon { font-size: 0.9rem; display: block; }
.asc-mini-badge .mb-name {
  font-size: 0.35rem;
  color: var(--text-muted);
  font-weight: 600;
}
.asc-mini-badge.earned .mb-name { color: var(--gold); }

/* ================================================================
   FINAL CTA
   ================================================================ */
.final-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,215,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  margin-bottom: 0.5rem;
}
.final-cta .sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.final-cta .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.final-cta .small-print {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}
.footer-logo .logo-bolt {
  filter: drop-shadow(0 0 6px var(--gold));
}
.footer-logo span { color: var(--gold); }

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-links .sep {
  color: var(--border);
  user-select: none;
}

.footer-right {
  text-align: right;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 0.25rem;
  opacity: 0.7;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ================================================================
   PRIVACY & TERMS PAGES
   ================================================================ */
.policy-page {
  padding-top: 100px;
  min-height: 100vh;
}

.policy-hero {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}
.policy-hero .section-label { margin-bottom: 1rem; }
.policy-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}
.policy-hero .updated {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 100px;
}

.policy-section {
  margin-bottom: 3rem;
}
.policy-section h2 {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.policy-section p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.policy-section ul {
  list-style: none;
  margin-bottom: 1rem;
  padding-left: 0;
}
.policy-section ul li {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.6;
}
.policy-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.6;
}
.policy-section strong {
  color: var(--text);
  font-weight: 600;
}
.policy-contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 1rem;
}
.policy-contact-box p {
  margin: 0;
}
.policy-contact-box a {
  color: var(--gold);
}

/* ================================================================
   RESPONSIVE — 768px
   ================================================================ */
@media (max-width: 768px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }

  /* Nav */
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { padding: 100px 24px 80px; }
  .hero-ctas { flex-direction: column; align-items: center; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Steps */
  .steps-line { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 48px; }
  .step-card { padding: 0 0; }

  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; }

  /* Badges */
  .badges-grid { grid-template-columns: 1fr 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Phones */
  .phones-wrapper {
    gap: 12px;
    overflow-x: auto;
    padding: 20px 12px;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
  }
  .phone { scroll-snap-align: center; flex-shrink: 0; }
  .phone.phone-center { height: 440px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-right { text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ================================================================
   RESPONSIVE — 480px
   ================================================================ */
@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .container { padding: 0 16px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Badges */
  .badges-grid { grid-template-columns: 1fr; }

  /* Phones */
  .phone { width: 190px; height: 390px; }
  .phone.phone-center { width: 190px; height: 390px; }

  .btn { padding: 12px 20px; font-size: 0.88rem; }
  .btn-store { padding: 12px 18px; }
}
