/* ======================================================
   NightOwl Landing Page — Design System & Styles
   Version: 3.0
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;600;700;800&display=swap');

/* ─── Design Tokens ───────────────────────────────── */
:root {
  /* Backgrounds (Obsidian Refinement) */
  --bg-deep: #050505;
  --bg-elevated: #09090A;
  --bg-card: #0D0D0E;
  --glass-bg: rgba(13, 13, 14, 0.45);
  --glass-bg-strong: rgba(13, 13, 14, 0.85);

  /* Brand */
  --brand-amber: #F59E0B;
  --brand-gold: #FFC857;
  --brand-glow: #FBBF24;
  --brand-amber-10: rgba(245, 158, 11, 0.1);
  --brand-amber-20: rgba(245, 158, 11, 0.2);
  --brand-amber-30: rgba(245, 158, 11, 0.3);

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #A0AEC0;
  --text-muted: #718096;
  --text-dim: #4A5568;

  /* Status */
  --success: #20C997;
  --danger: #D00000;
  --heart: #EF4444;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-light: rgba(255, 255, 255, 0.08);
  --border-amber: rgba(245, 158, 11, 0.15);

  /* Spacing */
  --section-padding: 140px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

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

  /* Transitions */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --glow-amber: 0 0 60px rgba(245, 158, 11, 0.12);
  --glow-amber-strong: 0 0 100px rgba(245, 158, 11, 0.15);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.7);
}


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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at 50% 50%, #0D0D0E 0%, #050505 100%) fixed;
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

::selection {
  background: var(--brand-amber-30);
  color: var(--text-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--text-dim);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-amber);
}

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

/* ─── Utility ─────────────────────────────────────── */
.text-amber {
  color: var(--brand-amber);
}

.text-gold {
  color: var(--brand-gold);
}

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

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

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
}

.glass-strong {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--border-light);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─── Navigation ──────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}

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

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-logo .owl-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-amber);
  transition: width 0.3s var(--ease-out);
}

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

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

.nav-cta {
  padding: 10px 24px;
  background: var(--brand-amber);
  color: #000 !important;
  font-weight: 600 !important;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out) !important;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--brand-gold) !important;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.35);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

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

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

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(10, 10, 10, 1) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, var(--bg-deep) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--brand-amber);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 8s infinite;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: translateY(-20vh) scale(1);
  }
}

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

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--brand-amber-10);
  border: 1px solid var(--brand-amber-20);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-amber);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-amber);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero h1 {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--brand-amber) 0%, var(--brand-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--brand-amber);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.25);
}

.btn-primary:hover {
  background: var(--brand-gold);
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-secondary:hover {
  border-color: var(--brand-amber-30);
  background: var(--brand-amber-10);
  color: var(--brand-amber);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item .icon {
  font-size: 1.1rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  z-index: 2;
}

.phone-frame {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.1),
    0 20px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(245, 158, 11, 0.1);
}

.phone-frame img {
  width: 100%;
  display: block;
  border-radius: 36px;
}

.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  animation: phoneGlow 4s ease-in-out infinite alternate;
}

@keyframes phoneGlow {
  0% {
    opacity: 0.5;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* ─── Section Styles ──────────────────────────────── */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-amber);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--brand-amber);
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 700px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 64px;
}

.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ─── Features Section ────────────────────────────── */
.features {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 60%);
}


.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
}

.feature-block:nth-child(even) {
  direction: rtl;
}

.feature-block:nth-child(even)>* {
  direction: ltr;
}

.feature-content {
  max-width: 500px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-amber-10);
  border: 1px solid var(--brand-amber-20);
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.feature-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.feature-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.feature-phone {
  width: 260px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(245, 158, 11, 0.06);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}

.feature-phone:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, 0.15),
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(245, 158, 11, 0.1);
}

.feature-phone img {
  width: 100%;
  display: block;
}

/* Dual Phone Display */
.dual-phones {
  display: flex;
  gap: 20px;
  align-items: center;
}

.dual-phones .feature-phone {
  width: 200px;
}

.dual-phones .feature-phone:last-child {
  transform: translateY(30px);
}

.dual-phones .feature-phone:last-child:hover {
  transform: translateY(22px) scale(1.02);
}

/* ─── Divider Image Section ───────────────────────── */
.section-divider-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.section-divider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.section-divider-image::before,
.section-divider-image::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 150px;
  z-index: 1;
}

.section-divider-image::before {
  top: 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, transparent 100%);
}

.section-divider-image::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--bg-deep) 0%, transparent 100%);
}

/* ─── How It Works ────────────────────────────────── */
.how-it-works {
  background:
    radial-gradient(ellipse at 100% 50%, rgba(245, 158, 11, 0.05) 0%, transparent 60%);
}


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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-amber-20), var(--brand-amber), var(--brand-amber-20), transparent);
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s var(--ease-out);
}

.step-card:hover {
  background: var(--glass-bg-strong);
  border-color: var(--border-amber);
  transform: translateY(-4px);
}


.step-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-amber);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
  position: relative;
  z-index: 2;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── Stats Bar ───────────────────────────────────── */
.stats-bar {
  padding: 80px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(245, 158, 11, 0.03) 0%, transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 24px;
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--brand-amber);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── Testimonials ────────────────────────────────── */
.testimonials {
  background: var(--bg-deep);
}

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

.testimonial-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s var(--ease-out);
}

.testimonial-card:hover {
  border-color: var(--border-amber);
  transform: translateY(-4px);
  box-shadow: var(--glow-amber);
}

.testimonial-stars {
  color: var(--brand-amber);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--brand-amber-10);
  border: 1px solid var(--brand-amber-20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── Comparison Table ────────────────────────────── */
.comparison {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
    var(--bg-deep);
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  min-width: 700px;
}

.comparison-table thead th {
  padding: 24px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
}

.comparison-table thead th:first-child {
  text-align: left;
}

.comparison-table thead th.highlight-col {
  color: var(--brand-amber);
  background: var(--brand-amber-10);
  border-bottom-color: var(--brand-amber-20);
}

.comparison-table tbody td {
  padding: 18px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-primary);
}

.comparison-table tbody td.highlight-col {
  background: rgba(245, 158, 11, 0.03);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.check {
  color: var(--success);
  font-size: 1.1rem;
}

.cross {
  color: var(--text-dim);
  font-size: 1.1rem;
}

/* ─── CTA Section ─────────────────────────────────── */
.cta-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-deep) 0%, rgba(10, 10, 10, 0.5) 50%, var(--bg-deep) 100%);
}

.cta-content {
  position: relative;
  z-index: 2; /* Ensure it stays above gradients */
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: owlBounce 3s ease-in-out infinite;
}


@keyframes owlBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.cta-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.cta-section p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

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

.store-badge {
  height: 52px;
  transition: all 0.3s var(--ease-out);
  border-radius: var(--radius-sm);
  opacity: 0.9;
}

.store-badge:hover {
  opacity: 1;
  transform: translateY(-3px);
}

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


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

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color 0.3s;
}

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

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

.footer-bottom p {
  color: var(--text-dim);
  font-size: 0.8rem;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border-subtle);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-out);
}

.footer-socials a:hover {
  background: var(--brand-amber-10);
  color: var(--brand-amber);
  border-color: var(--brand-amber-20);
  transform: translateY(-2px);
}

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-description {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .feature-block:nth-child(even) {
    direction: ltr;
  }

  .feature-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .feature-icon {
    margin: 0 auto 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .section-title {
    font-size: 2.25rem;
  }
}

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

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.active a {
    font-size: 1.25rem;
    color: var(--text-primary);
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .phone-mockup {
    width: 220px;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-value {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section {
    padding: 100px 0;
  }

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

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

  .dual-phones .feature-phone {
    width: 160px;
  }

  .feature-phone {
    width: 220px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.875rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }
}

/* ─── Legal & Standalone Pages ────────────────────── */
.sub-hero {
  padding: 160px 0 80px;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(245, 158, 11, 0.05) 0%, transparent 70%),
    var(--bg-deep);
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.sub-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.legal-content {
  padding: 80px 0;
  background: transparent;
}


.legal-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.legal-card h2 {
  font-size: 1.75rem;
  margin: 40px 0 20px;
  color: var(--brand-amber);
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card h3 {
  font-size: 1.25rem;
  margin: 30px 0 16px;
  color: var(--text-primary);
}

.legal-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-card ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.legal-card li {
  margin-bottom: 12px;
}

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

.last-updated {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .sub-hero h1 {
    font-size: 2.25rem;
  }

  .legal-card {
    padding: 32px 24px;
  }
}

/* ──────────────────────────────────────────────────────
   AESTHETIC UPGRADES (v3.1)
   ────────────────────────────────────────────────────── */

/* ─── Global Background Particles ─── */
.bg-stellar-void {
  position: fixed;
  inset: 0;
  z-index: -1; /* Above body background, below content */
  overflow: hidden;
  pointer-events: none;
}


.stars-container {
  position: absolute;
  inset: -100px;
  width: calc(100% + 200px);
  height: calc(100% + 200px);
  background-repeat: repeat;
  background-size: 800px 800px;
  opacity: 0.45; /* High visibility for Soul Dust */
}


.stars-1 {
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #fff, transparent),
    radial-gradient(3px 3px at 150px 70px, var(--brand-amber), transparent),
    radial-gradient(1.5px 1.5px at 300px 450px, #fff, transparent),
    radial-gradient(4px 4px at 500px 120px, var(--brand-gold), transparent),
    radial-gradient(1.5px 1.5px at 700px 320px, #fff, transparent);
  animation: driftSlow 120s linear infinite;
}

.stars-2 {
  background-image: 
    radial-gradient(1.5px 1.5px at 100px 100px, #fff, transparent),
    radial-gradient(3.5px 3.5px at 400px 350px, var(--brand-amber), transparent),
    radial-gradient(2px 2px at 600px 600px, #fff, transparent),
    radial-gradient(3px 3px at 200px 500px, var(--brand-gold), transparent);
  animation: driftFaster 80s linear infinite;
  opacity: 0.25;
}


@keyframes driftSlow {
  from { transform: translateY(0); }
  to { transform: translateY(-800px); }
}

@keyframes driftFaster {
  from { transform: translateY(0); }
  to { transform: translateY(-1600px); }
}

/* ─── Themed SVG Icons ─── */
.themed-icon {
  width: 44px; /* Reduced for better proportion */
  height: 44px;
  stroke: var(--brand-amber);
  fill: none;
  stroke-width: 1.2; /* Thinner stroke for premium feel */
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.4s var(--ease-spring);
  display: block;
}

.feature-icon, .step-icon {
  width: 68px !important;
  height: 68px !important;
  background: var(--brand-amber-10) !important;
  border-radius: var(--radius-lg) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 24px !important;
  border: 1px solid var(--border-amber) !important;
  transition: all 0.3s var(--ease-out);
}

.step-card .step-icon {
    margin: 0 auto 32px !important; /* Center icon in step card */
}

.feature-block:hover .themed-icon,
.step-card:hover .themed-icon {
  stroke: var(--brand-gold);
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 10px var(--brand-amber-20));
}

.feature-block:hover .feature-icon,
.step-card:hover .step-icon {
    background: var(--brand-amber-20) !important;
    border-color: var(--brand-amber-30) !important;
    box-shadow: 0 0 30px var(--brand-amber-10);
}
