/* ==========================================================================
   SweatPoints - Premium Brand Landing Page Stylesheet
   Theme: Dark Carbon / Raisin Black (#0b0d0c) with Electric Pale Lime (#d5ff5f)
   Typography: 'Plus Jakarta Sans' & 'Outfit'
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  --bg-primary: #0b0d0c;
  --bg-secondary: #111412;
  --card-bg: #151916;
  --card-bg-hover: #1c221e;
  --card-bg-active: linear-gradient(135deg, rgba(213, 255, 95, 0.05) 0%, rgba(21, 25, 22, 0.9) 100%);

  --accent-lime: #d5ff5f;
  --accent-lime-hover: #e2ff88;
  --accent-lime-glow: rgba(213, 255, 95, 0.35);
  --accent-lime-subtle: rgba(213, 255, 95, 0.12);

  --gold-primary: #ffd700;
  --gold-secondary: #ffa500;
  --gold-glow: rgba(255, 215, 0, 0.3);

  --xp-purple: #a855f7;
  --xp-purple-glow: rgba(168, 85, 247, 0.35);

  --streak-orange: #ff9f0a;
  --streak-glow: rgba(255, 159, 10, 0.4);

  --silver-light: #ffffff;
  --silver-mid: #a8b2bd;
  --silver-dark: #54606e;

  --text-primary: #f3f5f3;
  --text-secondary: #9da69e;
  --text-muted: #626b63;

  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-lime: rgba(213, 255, 95, 0.25);
  --border-active: rgba(213, 255, 95, 0.6);

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-numeric: 'Outfit', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: auto;
  /* Managed by Lenis */
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Lenis Smooth Scroll CSS --- */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* --- Typography Utilities --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
}

.num-font {
  font-family: var(--font-numeric);
}

.text-gradient-lime {
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(180deg, #ffe600 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-accent {
  color: var(--accent-lime);
}

/* --- Ambient Background Glow --- */
.ambient-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(213, 255, 95, 0.12) 0%, rgba(11, 13, 12, 0) 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.ambient-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 40%;
  right: -100px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, rgba(11, 13, 12, 0) 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
}

.ambient-glow-3 {
  position: absolute;
  width: 550px;
  height: 550px;
  bottom: 10%;
  left: -150px;
  background: radial-gradient(circle, rgba(255, 159, 10, 0.08) 0%, rgba(11, 13, 12, 0) 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
}

/* --- Container & Layout --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* --- Buttons & Action Components --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--accent-lime);
  color: #050706;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 20px var(--accent-lime-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  background-color: var(--accent-lime-hover);
  box-shadow: 0 8px 30px rgba(213, 255, 95, 0.5);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(213, 255, 95, 0.08);
  border: 1px solid var(--border-lime);
  color: var(--accent-lime);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-break: break-word;
}

.badge-tag .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-lime);
  box-shadow: 0 0 10px var(--accent-lime);
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {

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

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

/* --- Glassmorphism Cards --- */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  transition: var(--transition-normal);
  overflow: hidden;
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.glass-card.accent-border {
  border-color: var(--border-lime);
}

/* --- Awwwards-Level S-Coin Preloader Styling --- */
.sp-preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background-color: #0b0d0c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  will-change: transform;
}

.sp-loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.sp-coin-glow-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-glow-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, rgba(213, 255, 95, 0.2) 50%, transparent 70%);
  filter: blur(15px);
  animation: coinGlowPulse 2s infinite ease-in-out;
}

.sp-coin-3d {
  position: relative;
  z-index: 2;
  animation: coinFloat3D 2.5s infinite ease-in-out;
}

@keyframes coinGlowPulse {

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

  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

@keyframes coinFloat3D {

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

  50% {
    transform: translateY(-8px) rotateY(180deg);
  }
}

.sp-counter-num {
  font-family: var(--font-numeric);
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.sp-progress-track {
  width: 220px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.sp-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ffd700 0%, #d5ff5f 100%);
  border-radius: 9999px;
  box-shadow: 0 0 10px rgba(213, 255, 95, 0.8);
  transition: width 0.1s linear;
}

.sp-status-text {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --- FOUC Prevention Initial Hidden States --- */
.navbar,
.hero-badge,
#heroTitle,
.hero-description,
.hero-ctas,
.hero-pill-bar,
.hero-trust-bar,
.smartphone-frame {
  opacity: 0;
  visibility: hidden;
}

/* --- Header / Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition-fast);
}

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

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo-text {
  font-family: var(--font-numeric);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.brand-logo-text span {
  color: var(--accent-lime);
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

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

/* Dual Audience Switcher Pill in Header */
.audience-toggle-pill {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 4px;
  border-radius: var(--radius-full);
  position: relative;
}

.toggle-btn {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 2;
}

.toggle-btn.active {
  background: var(--accent-lime);
  color: #0b0d0c;
  box-shadow: 0 2px 10px var(--accent-lime-glow);
}

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

/* --- Hero Section --- */
.hero-section {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: 3.15rem;
  font-weight: 850;
  line-height: 1.1;
  margin: 20px 0 20px 0;
  letter-spacing: -1.2px;
}

/* SplitType animation wrappers */
.hero-title .word,
.hero-title .char {
  display: inline-block;
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* 4 Feature Pill Bar below CTAs (Reference Image 2) */
.hero-pill-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(20, 24, 21, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 16px 12px;
  width: 100%;
  margin-top: 24px;
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.hero-pill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-pill-item:last-child {
  border-right: none;
}

.hero-pill-item .pill-icon {
  font-size: 1.4rem;
  color: #ffd700;
  filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.3));
}

.hero-pill-item .pill-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: #9da69e;
  letter-spacing: -0.2px;
}

/* Gym Trust Logos Strip */
.hero-trust-bar {
  margin-top: 24px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

.hero-trust-bar .trust-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.hero-trust-bar .trust-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-trust-bar .trust-logos span {
  font-family: var(--font-numeric);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  opacity: 0.65;
  transition: var(--transition-fast);
}

.hero-trust-bar .trust-logos span:hover {
  opacity: 1;
  color: #fff;
}

/* --- Premium 3D Smartphone Mockup (Image 3 & Image 4) --- */
.hero-phone-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.phone-glow-ambient {
  position: absolute;
  width: 320px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(213, 255, 95, 0.22) 0%, rgba(168, 85, 247, 0.12) 40%, rgba(11, 13, 12, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.phone-3d-wrapper {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  transform: rotateY(-7deg) rotateX(4deg);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.smartphone-frame {
  width: 340px;
  background: #141715;
  border-radius: 44px;
  padding: 10px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.85),
    0 0 40px rgba(213, 255, 95, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.smartphone-screen {
  background: #0b0d0c;
  border-radius: 36px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Phone Notch / Dynamic Island */
.phone-notch {
  width: 90px;
  height: 18px;
  background: #000;
  border-radius: 20px;
  margin: 0 auto 4px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.camera-lens {
  width: 7px;
  height: 7px;
  background: #111;
  border-radius: 50%;
  border: 1px solid #222;
}

.speaker-grille {
  width: 24px;
  height: 3px;
  background: #222;
  border-radius: 2px;
}

/* App Header inside Phone */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-user-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-avatar-img {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--accent-lime);
  overflow: hidden;
}

.app-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-avatar-img .online-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background: #30d158;
  border-radius: 50%;
  border: 1.5px solid #000;
}

.app-user-meta .user-greeting {
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.app-user-meta .user-motto {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.app-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* App Stats Row */
.app-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.app-stat-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px 4px;
  text-align: center;
}

.app-stat-badge .emoji {
  font-size: 0.95rem;
}

.app-stat-badge .coin-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffd700;
  color: #000;
  font-weight: 900;
  font-size: 0.6rem;
  line-height: 16px;
  text-align: center;
}

.app-stat-badge .val {
  font-family: var(--font-numeric);
  font-weight: 900;
  font-size: 0.95rem;
  color: #fff;
  margin-top: 2px;
}

.app-stat-badge .lbl {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

/* App Card Layouts */
.app-card {
  background: #141715;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px;
  position: relative;
}

.mission-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #171b18 0%, #111412 100%);
  border: 1px solid rgba(213, 255, 95, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.tag-sm {
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--accent-lime);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.mission-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.mission-sub {
  font-size: 0.65rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.app-btn-accent {
  background: var(--accent-lime);
  color: #000;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 7px 12px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 12px var(--accent-lime-glow);
  transition: transform 0.2s ease;
}

.app-btn-accent:hover {
  transform: scale(1.04);
}

.mission-micro {
  font-size: 0.58rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Momentum Arc Gauge */
.momentum-arc-wrap {
  width: 68px;
  height: 68px;
  position: relative;
}

.momentum-arc-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.arc-content {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.arc-pct {
  font-family: var(--font-numeric);
  font-weight: 900;
  font-size: 0.85rem;
  color: #fff;
}

.arc-lbl {
  font-size: 0.45rem;
  color: var(--text-muted);
  font-weight: 800;
}

.fire-badge {
  background: rgba(255, 69, 0, 0.15);
  border: 1px solid rgba(255, 69, 0, 0.4);
  color: #ff5500;
  font-size: 0.55rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 4px;
  text-align: center;
}

/* Streak Card in App */
.streak-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.streak-card-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.streak-flame-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.streak-flame-left .big-flame {
  font-size: 1.2rem;
}

.streak-num {
  font-family: var(--font-numeric);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--accent-lime);
}

.streak-num span {
  font-size: 0.65rem;
  color: var(--text-primary);
}

.pb-tag {
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.58rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text-secondary);
}

.streak-days-row {
  display: flex;
  justify-content: space-between;
}

.day-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.55rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.day-dot.done {
  background: rgba(213, 255, 95, 0.15);
  border-color: var(--accent-lime);
  color: var(--accent-lime);
}

.streak-ftr {
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
  color: var(--text-muted);
}

.streak-ftr .link-btn {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

/* Rank Card in App */
.rank-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rank-card-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shield-icon {
  font-size: 1.1rem;
}

.rank-meta .rank-name {
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
}

.rank-meta .rank-xp-num {
  font-size: 0.58rem;
  color: var(--xp-purple);
  font-weight: 700;
}

.rank-progress-bg {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 3px 0;
  overflow: hidden;
}

.rank-progress-fill {
  height: 100%;
  background: var(--xp-purple);
  border-radius: 2px;
}

.rank-sub {
  font-size: 0.55rem;
  color: var(--text-muted);
}

.rank-card-right {
  text-align: right;
}

.pct-big {
  font-family: var(--font-numeric);
  font-size: 0.95rem;
  font-weight: 900;
  color: #fff;
}

.pct-lbl {
  font-size: 0.52rem;
  color: var(--text-muted);
  font-weight: 700;
}


.checkin-btn {
  margin-top: 14px;
  width: 100%;
  padding: 12px;
  background: var(--accent-lime);
  color: #0b0d0c;
  font-weight: 800;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.checkin-btn:hover {
  background: var(--accent-lime-hover);
  transform: scale(1.01);
}

/* Floating Reward Toast Notification */
.reward-toast {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #111a13;
  border: 1px solid var(--accent-lime);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-lime);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: var(--transition-bounce);
}

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

/* --- Section Titles & Layouts --- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px auto;
}

.section-title {
  font-size: 2.5rem;
  margin: 16px 0 18px 0;
  letter-spacing: -1px;
}

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

.section-padding {
  padding: 100px 0;
  position: relative;
}

/* --- The Four Economies Section --- */
.economies-nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.tab-pill:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.tab-pill.active {
  background: var(--card-bg);
  border-color: var(--accent-lime);
  color: var(--accent-lime);
  box-shadow: 0 4px 20px rgba(213, 255, 95, 0.15);
}

.tab-content-panel {
  display: none;
}

.tab-content-panel.active {
  display: block;
  animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tab Display Grid */
.economy-display-card {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.economy-details h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.economy-details p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.feature-list li svg {
  color: var(--accent-lime);
  flex-shrink: 0;
}

/* Economy Visualizers (Inside Tab Cards) */
.visualizer-box {
  background: rgba(11, 13, 12, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Cashback Calculator Widget */
.cashback-demo-box {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
}

.slider-group {
  margin-top: 14px;
}

.slider-group label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.custom-range {
  width: 100%;
  accent-color: var(--accent-lime);
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

/* XP Level Bar Visualizer */
.xp-level-meter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.xp-bar-bg {
  width: 100%;
  height: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.xp-bar-fill {
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, #a855f7 0%, #d5ff5f 100%);
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Streak Motivation Banner Visualizer */
.streak-banner-demo {
  background: rgba(255, 159, 10, 0.1);
  border: 1px dashed var(--streak-orange);
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.streak-banner-demo p {
  font-style: italic;
  font-size: 0.88rem;
  color: #ffe6a5;
  margin: 0;
}

/* Rank Shield Grid Visualizer */
.rank-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.rank-badge-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.rank-badge-item:hover,
.rank-badge-item.active {
  border-color: var(--border-lime);
  background: rgba(213, 255, 95, 0.05);
}

.rank-badge-item .title {
  font-size: 0.75rem;
  font-weight: 800;
}

/* --- Habit Hierarchy Section --- */
.habit-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}

.primary-habit-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, rgba(213, 255, 95, 0.06) 0%, var(--card-bg) 100%);
  border: 1px solid var(--border-lime);
}

.supporting-habits-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.habit-sub-card {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.habit-info-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.habit-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.05);
}

.habit-reward-tag {
  font-family: var(--font-numeric);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-lime);
  background: rgba(213, 255, 95, 0.1);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

/* Interactive Habit Sim Buttons */
.log-habit-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.log-habit-btn:hover {
  background: var(--accent-lime);
  color: #0b0d0c;
  border-color: var(--accent-lime);
}

/* --- Dual Value Proposition Cards Section (Reference Image 3) --- */
.dual-section-wrapper {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 100px 0;
}

.dual-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.dual-card {
  border-radius: 28px;
  padding: 36px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.dual-card:hover {
  transform: translateY(-4px);
}

.card-members {
  background: linear-gradient(145deg, rgba(21, 26, 22, 0.95) 0%, rgba(13, 16, 14, 0.98) 100%);
  border: 1px solid rgba(213, 255, 95, 0.28);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(213, 255, 95, 0.15);
}

.card-members:hover {
  box-shadow: 0 20px 50px rgba(213, 255, 95, 0.15);
  border-color: rgba(213, 255, 95, 0.5);
}

.card-owners {
  background: linear-gradient(145deg, rgba(23, 18, 29, 0.95) 0%, rgba(13, 11, 17, 0.98) 100%);
  border: 1px solid rgba(168, 85, 247, 0.28);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(168, 85, 247, 0.15);
}

.card-owners:hover {
  box-shadow: 0 20px 50px rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.5);
}

.dual-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.pill-tag-lime {
  color: var(--accent-lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pill-tag-purple {
  color: var(--xp-purple);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.dual-card-title {
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: #ffffff;
  margin-bottom: 20px;
}

.dual-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.dual-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #c4cdc5;
  font-weight: 500;
}

.list-lime .chk {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(213, 255, 95, 0.15);
  color: var(--accent-lime);
  font-size: 0.7rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.list-purple .chk {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.15);
  color: var(--xp-purple);
  font-size: 0.7rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-lime-action {
  background: var(--accent-lime);
  color: #000;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px var(--accent-lime-glow);
  transition: transform 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.btn-lime-action:hover {
  transform: translateY(-2px);
  background: #e2ff88;
}

.btn-purple-action {
  background: var(--xp-purple);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px var(--xp-purple-glow);
  transition: transform 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.btn-purple-action:hover {
  transform: translateY(-2px);
  background: #b86bf8;
}

/* Dual Card Mockup Screen Previews */
.dual-card-mockup {
  width: 200px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.preview-phone-screen {
  background: #0f1210;
  border: 1px solid rgba(213, 255, 95, 0.2);
  border-radius: 20px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.preview-phone-screen .preview-hdr .lbl {
  font-size: 0.62rem;
  color: var(--text-muted);
}

.preview-phone-screen .preview-hdr .val {
  font-family: var(--font-numeric);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--accent-lime);
}

.preview-days-grid {
  display: flex;
  gap: 3px;
}

.preview-days-grid .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.52rem;
  font-weight: 800;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-days-grid .dot.done {
  background: rgba(213, 255, 95, 0.2);
  color: var(--accent-lime);
  border: 1px solid var(--accent-lime);
}

.preview-rank-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 8px;
}

.preview-rank-box .r-name {
  font-size: 0.68rem;
  font-weight: 800;
  color: #fff;
}

.preview-rank-box .r-bar-bg {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 4px 0;
  overflow: hidden;
}

.preview-rank-box .r-bar-fill {
  width: 72%;
  height: 100%;
  background: var(--accent-lime);
}

.preview-rank-box .r-pct {
  font-size: 0.58rem;
  color: var(--text-muted);
  text-align: right;
  font-weight: 700;
}

.preview-rewards-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.58rem;
  color: var(--text-muted);
}

.preview-dash-screen {
  background: #120e17;
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 20px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.preview-dash-screen .dash-title {
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
}

.preview-dash-screen .dash-title span {
  font-size: 0.55rem;
  color: var(--text-muted);
}

.dash-widget {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 8px;
}

.dash-widget.highlight {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.08);
}

.dash-widget .w-hdr {
  font-size: 0.58rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

.dash-widget .w-hdr .up {
  color: #30d158;
  font-weight: 800;
}

.dash-widget .w-val {
  font-family: var(--font-numeric);
  font-size: 0.9rem;
  font-weight: 900;
  color: #fff;
}

.mini-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 18px;
  margin-top: 4px;
}

.mini-bar-chart span {
  flex: 1;
  background: var(--xp-purple);
  border-radius: 2px;
}

@media (max-width: 992px) {
  .dual-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* --- ROI / Earnings Interactive Calculator --- */
.calculator-box {
  padding: 48px;
  background: linear-gradient(135deg, rgba(21, 25, 22, 0.95) 0%, rgba(17, 20, 18, 0.95) 100%);
  border: 1px solid var(--border-lime);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.calc-results-panel {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 16px;
}

.calc-stat-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.calc-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.calc-val {
  font-family: var(--font-numeric);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-lime);
}

/* --- Leaderboard & Social Proof Section --- */
.leaderboard-table-card {
  padding: 32px;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.lb-table {
  width: 100%;
  border-collapse: collapse;
}

.lb-table th {
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.lb-table td {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.95rem;
}

.lb-rank-num {
  font-family: var(--font-numeric);
  font-weight: 800;
  width: 40px;
}

.lb-user {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

/* --- FAQ Accordion --- */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--accent-lime);
  color: #0b0d0c;
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
}

/* --- Footer Section --- */
.site-footer {
  background: #070908;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px 0;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --- Sticky Bottom Conversion Bar --- */
.sticky-cta-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: rgba(17, 20, 18, 0.92);
  border: 1px solid var(--border-lime);
  backdrop-filter: blur(20px);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta-bar.visible {
  transform: translateX(-50%) translateY(0);
}

.sticky-text {
  font-size: 0.88rem;
  font-weight: 700;
}

/* --- Modals & Overlays --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--card-bg);
  border: 1px solid var(--border-lime);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  text-align: left;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.form-input {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-lime);
  box-shadow: 0 0 10px var(--accent-lime-subtle);
}

.sp-status-text {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  max-width: 85vw;
  margin: 0 auto;
  text-align: center;
  word-break: break-word;
}

/* --- Mobile Hamburger Button & Fullscreen Gaming App Menu --- */
.hamburger-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(213, 255, 95, 0.08);
  border: 1px solid rgba(213, 255, 95, 0.3);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 10001;
  margin-left: auto;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger-btn:hover {
  background: rgba(213, 255, 95, 0.18);
  border-color: var(--accent-lime);
  box-shadow: 0 0 15px rgba(213, 255, 95, 0.3);
}

.hamburger-btn .bar {
  width: 22px;
  height: 2px;
  background-color: var(--accent-lime);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger-btn.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger-btn.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Fullscreen Gaming Overlay */
.mobile-nav-overlay {
  display: none;
}

.mobile-nav-fullscreen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #070908;
  z-index: 10000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.35s ease;
  box-sizing: border-box;
}

.mobile-nav-fullscreen.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mob-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.mob-glow-orb.orb-lime {
  top: -50px;
  right: -50px;
  width: 240px;
  height: 240px;
  background: rgba(213, 255, 95, 0.15);
}

.mob-glow-orb.orb-gold {
  bottom: -50px;
  left: -50px;
  width: 260px;
  height: 260px;
  background: rgba(255, 215, 0, 0.12);
}

.mobile-nav-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-close-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.mobile-close-btn:hover {
  background: var(--accent-lime);
  color: #000000;
  border-color: var(--accent-lime);
  box-shadow: 0 0 15px rgba(213, 255, 95, 0.4);
}

.mobile-nav-body {
  position: relative;
  z-index: 2;
  margin: 36px 0;
}

.mobile-menu-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease;
}

.mobile-nav-link .nav-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-lime);
  background: rgba(213, 255, 95, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(213, 255, 95, 0.25);
}

.mobile-nav-link .nav-label {
  font-size: 1.65rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.mobile-nav-link:hover .nav-label {
  color: var(--accent-lime);
  text-shadow: 0 0 15px rgba(213, 255, 95, 0.5);
}

.mobile-nav-link:hover {
  transform: translateX(8px);
}

.mobile-nav-footer {
  position: relative;
  z-index: 2;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-mobile-cta {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
}

.mobile-system-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
}

.mobile-system-status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #30d158;
  box-shadow: 0 0 10px #30d158;
}

/* --- Bounded Sticky Bottom Conversion Bar --- */
.sticky-cta-bar {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  width: auto;
  max-width: calc(100vw - 32px);
  margin: 0 auto;
  box-sizing: border-box;
  z-index: 99;
  background: rgba(18, 22, 19, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-lime);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100px);
}

.sticky-cta-bar.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.sticky-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-actions .btn-primary,
.sticky-actions .btn-secondary {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* --- Comprehensive Responsive Media Queries --- */
@media (max-width: 992px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative !important;
  }

  .ambient-glow-1,
  .ambient-glow-2,
  .ambient-glow-3 {
    display: none !important;
  }

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

  .hamburger-btn {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 10002 !important;
    margin-left: auto !important;
    width: 44px !important;
    height: 44px !important;
    flex-shrink: 0 !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: left;
  }

  .hero-phone-container {
    max-width: 360px;
    margin: 0 auto;
    overflow: hidden;
  }

  .dual-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }

  .hero-section {
    overflow: hidden !important;
    max-width: 100vw !important;
  }

  .badge-tag,
  .hero-badge {
    font-size: 0.62rem !important;
    padding: 4px 10px !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 12px !important;
    white-space: normal !important;
    max-width: 100% !important;
    line-height: 1.35 !important;
    display: inline-flex !important;
  }

  .hero-title {
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
    letter-spacing: -0.4px !important;
    margin: 12px 0 !important;
    max-width: 100% !important;
    word-break: break-word !important;
  }

  .hero-title .word,
  .hero-title .char {
    display: inline !important;
    white-space: normal !important;
  }

  .hero-description {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
    max-width: 100% !important;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    padding: 12px 18px !important;
    font-size: 0.88rem !important;
  }

  .section-title {
    font-size: 1.6rem !important;
    margin: 10px 0 12px 0 !important;
  }

  .section-subtitle {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }

  .section-header {
    margin-bottom: 28px !important;
  }

  .economy-display-card {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 24px;
  }

  .economy-details h3 {
    font-size: 1.45rem !important;
  }

  .dual-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 20px;
  }

  .dual-card-title {
    font-size: 1.45rem !important;
  }

  .dual-card-mockup {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

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

  .modal-card {
    max-width: 92vw;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px 18px;
  }
}

@media (max-width: 640px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-pill-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-pill-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 8px;
  }

  .hero-pill-item:nth-child(3),
  .hero-pill-item:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .hero-trust-bar .trust-logos {
    gap: 10px;
    font-size: 0.78rem;
    flex-wrap: wrap;
  }

  .economies-nav-tabs {
    flex-direction: column;
    width: 100%;
  }

  .tab-pill {
    width: 100%;
    justify-content: center;
  }

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