/* =====================================================
   XHRIS CONSOLIDATED STYLESHEET
   All-in-one CSS for Super-Admin & Landing Pages
   ===================================================== */

/* =====================================================
   RESET & BASE
   ===================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: var(--snow);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  cursor: none;
}

/* =====================================================
   CSS VARIABLES (ROOT)
   ===================================================== */
:root {
  /* Primary Brand Colors */
  --flame: #E8420A;
  --flame-2: #FF6130;
  --flame-dark: #B33208;
  --flame-glow: rgba(232, 66, 10, 0.25);
  --flame-soft: rgba(232, 66, 10, 0.12);
  
  --ember: #C97A0A;
  --gold: #F0A320;
  --gold-soft: rgba(240, 163, 32, 0.12);
  
  /* Neutral Palette */
  --ink: #06090F;
  --navy: #0B1221;
  --navy-2: #101929;
  --navy-3: #16223A;
  --navy-4: #1E2C4A;
  
  --ash: #7A8FAD;
  --fog: #B0BECC;
  --snow: #EEF2F8;
  --white: #FFFFFF;
  
  /* System Colors */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;
  
  /* Semantic Tokens */
  --bg-primary: var(--ink);
  --bg-secondary: var(--navy);
  --bg-tertiary: var(--navy-2);
  --bg-elevated: var(--navy-3);
  
  --text-primary: var(--snow);
  --text-secondary: var(--fog);
  --text-tertiary: var(--ash);
  --text-accent: var(--flame);
  
  --border-light: rgba(255, 255, 255, 0.07);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-heavy: rgba(255, 255, 255, 0.18);
  --border-accent: var(--flame);
  
  --glow-flame: rgba(232, 66, 10, 0.18);
  --glow-flame-intense: rgba(232, 66, 10, 0.35);
  
  /* Typography */
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-flame: 0 8px 28px rgba(232, 66, 10, 0.28);
  --shadow-flame-intense: 0 12px 36px rgba(232, 66, 10, 0.4);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Spacing (8px system) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 56px;
  --space-9: 72px;
  --space-10: 96px;
}

/* =====================================================
   UTILITIES & GLOBAL STYLES
   ===================================================== */
::selection {
  background: var(--flame);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--flame);
  border-radius: var(--radius-full);
}

/* Grain Texture Overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =====================================================
   CUSTOM CURSOR
   ===================================================== */
#cursor,
#cur {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--flame);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  box-shadow: 0 0 20px var(--flame-glow);
}

#cursor-ring,
#cur-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(232, 66, 10, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.2s;
  box-shadow: 0 0 30px rgba(232, 66, 10, 0.2);
}

/* =====================================================
   LAYOUT & CONTAINERS
   ===================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
  z-index: 2;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 52px;
}

.sec {
  padding: 120px 0;
  position: relative;
}

section {
  padding: var(--space-10) 0;
  border-bottom: 1px solid var(--border-light);
}

/* Grid Systems */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.h1 { 
  font-family: var(--font-head); 
  font-size: clamp(72px, 12vw, 128px); 
  line-height: 0.88; 
  letter-spacing: 0.01em; 
}

.h2 { 
  font-family: var(--font-head); 
  font-size: clamp(48px, 8vw, 84px); 
  line-height: 0.92; 
  letter-spacing: 0.01em; 
}

.h3 { 
  font-family: var(--font-head); 
  font-size: clamp(36px, 6vw, 56px); 
  line-height: 1; 
}

.h4 { 
  font-family: var(--font-head); 
  font-size: 32px; 
  line-height: 1.1; 
}

.h5 { 
  font-family: var(--font-head); 
  font-size: 28px; 
  line-height: 1.2; 
}

.sh2 {
  font-family: var(--font-head);
  font-size: clamp(44px, 6.5vw, 84px);
  line-height: .92;
  letter-spacing: .01em;
  color: var(--snow);
  margin-bottom: 22px;
}

.body-large { 
  font-size: 18px; 
  font-weight: 300; 
  line-height: 1.75; 
}

.body-base { 
  font-size: 16px; 
  font-weight: 400; 
  line-height: 1.65; 
}

.body-small { 
  font-size: 14px; 
  font-weight: 400; 
  line-height: 1.6; 
}

.body-tiny { 
  font-size: 12px; 
  font-weight: 400; 
  line-height: 1.5; 
}

.ssub {
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--ash);
  max-width: 520px;
}

.mono { 
  font-family: var(--font-mono); 
}

.mono-small { 
  font-family: var(--font-mono); 
  font-size: 11px; 
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
}

.label { 
  font-size: 11px; 
  font-weight: 600; 
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
  color: var(--text-tertiary); 
}

.label-accent { 
  font-family: var(--font-mono); 
  font-size: 11px; 
  font-weight: 500; 
  letter-spacing: 0.18em; 
  text-transform: uppercase; 
  color: var(--flame); 
}

.tag {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 18px;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
nav,
.admin-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 22px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 9, 15, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-light);
  transition: padding 0.3s var(--transition-base);
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
}

.logo b {
  color: var(--flame);
  position: relative;
  display: inline-block;
  animation: flameFlicker 3s infinite;
}

@keyframes flameFlicker {
  0%, 100% { text-shadow: 0 0 10px rgba(232, 66, 10, 0.3); }
  50% { text-shadow: 0 0 20px rgba(232, 66, 10, 0.6); }
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
  cursor: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--flame);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--flame);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--flame);
  color: #fff;
  border-radius: 3px;
  text-decoration: none;
  cursor: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.nav-btn:hover {
  background: var(--flame-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(232, 66, 10, 0.4);
}

.admin-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(232, 66, 10, 0.1);
  border: 1px solid rgba(232, 66, 10, 0.28);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--flame);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.admin-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--flame-2);
}

/* =====================================================
   AUTH SECTION & CARDS
   ===================================================== */
.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-10) var(--space-6);
  position: relative;
  overflow: hidden;
}

/* Background Grid */
.grid-bg,
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(232, 66, 10, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 66, 10, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridSlide 20s linear infinite;
  z-index: 1;
}

@keyframes gridSlide {
  to { transform: translateY(48px); }
}

/* Glow Orbs */
.glow-orb,
.hero-glow1,
.hero-glow2 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--flame-glow) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.glow-orb-1,
.hero-glow1 {
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(232, 66, 10, 0.15) 0%, transparent 70%);
  animation-delay: -2s;
}

.glow-orb-2,
.hero-glow2 {
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 122, 10, 0.1) 0%, transparent 70%);
  animation-delay: -4s;
}

.glow-orb-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 66, 10, 0.05) 0%, transparent 70%);
  animation: pulseGlow 10s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Auth Card */
.auth-card {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 460px;
  background: rgba(11, 18, 33, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(232, 66, 10, 0.1);
  animation: cardAppear 0.6s var(--transition-bounce);
}

@keyframes cardAppear {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.auth-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-2xl) + 1px);
  background: linear-gradient(135deg, var(--flame), transparent 50%, var(--ember));
  opacity: 0.1;
  z-index: -1;
}

.auth-header {
  text-align: center;
  margin-bottom: var(--space-7);
}

.auth-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--flame), var(--flame-dark));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-size: 36px;
  color: var(--white);
  box-shadow: var(--shadow-flame);
  animation: iconGlow 3s infinite;
}

@keyframes iconGlow {
  0%, 100% { box-shadow: 0 8px 28px rgba(232, 66, 10, 0.4); }
  50% { box-shadow: 0 12px 36px rgba(232, 66, 10, 0.7); }
}

.auth-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  margin-bottom: var(--space-2);
  background: linear-gradient(135deg, var(--snow), var(--fog));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-subtitle {
  font-size: 15px;
  color: var(--text-tertiary);
  font-weight: 300;
}

/* Hero Section Specific */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 52px 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 66, 10, 0.1);
  border: 1px solid rgba(232, 66, 10, 0.28);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--flame-2);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .8s ease .15s both;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--flame);
  animation: blink 1.3s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .15; }
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(80px, 12vw, 158px);
  line-height: .88;
  letter-spacing: .01em;
  margin-bottom: 32px;
}

.hero-h1 .row {
  overflow: hidden;
  display: block;
}

.hero-h1 .row span {
  display: block;
  opacity: 0;
  transform: translateY(104%);
  animation: rowUp .9s cubic-bezier(.16,1,.3,1) both;
}

.hero-h1 .row:nth-child(1) span { animation-delay: .3s; }
.hero-h1 .row:nth-child(2) span { animation-delay: .44s; }
.hero-h1 .row:nth-child(3) span { animation-delay: .58s; }
.hero-h1 .hot { color: var(--flame); }

@keyframes rowUp {
  to { opacity: 1; transform: none; }
}

.hero-sub {
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--ash);
  max-width: 520px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp .9s ease .9s both;
}

.hero-acts {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s ease 1.08s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

/* =====================================================
   FORM ELEMENTS
   ===================================================== */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.input-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-left: var(--space-1);
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  font-size: 18px;
  transition: color var(--transition-fast);
  z-index: 2;
}

.input-field,
.cta-inp {
  width: 100%;
  padding: var(--space-4) var(--space-4) var(--space-4) 52px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.input-field:focus,
.cta-inp:focus {
  outline: none;
  border-color: var(--flame);
  background: rgba(232, 66, 10, 0.05);
  box-shadow: 0 0 0 4px var(--flame-soft);
}

.input-field:focus + .input-icon,
.cta-inp:focus + .input-icon {
  color: var(--flame);
}

.input-field::placeholder,
.cta-inp::placeholder {
  color: var(--text-tertiary);
  font-weight: 300;
  opacity: 0.7;
}

.password-toggle {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-tertiary);
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  transition: color var(--transition-fast);
}

.password-toggle:hover {
  color: var(--flame);
}

/* Options Row */
.options-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.remember-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-secondary);
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-heavy);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
}

.remember-checkbox input {
  display: none;
}

.remember-checkbox input:checked + .checkbox-custom {
  background: var(--flame);
  border-color: var(--flame);
}

.remember-checkbox input:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 12px;
}

.forgot-link {
  color: var(--flame);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-fast);
  position: relative;
}

.forgot-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--flame);
  transition: width var(--transition-base);
}

.forgot-link:hover::after {
  width: 100%;
}

/* OTP Input */
.otp-container {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  margin: var(--space-4) 0;
}

.otp-input {
  width: 52px;
  height: 64px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  font-family: 'DM Mono', monospace;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  color: var(--text-primary);
  transition: all var(--transition-base);
}

.otp-input:focus {
  outline: none;
  border-color: var(--flame);
  background: rgba(232, 66, 10, 0.05);
  box-shadow: 0 0 0 4px var(--flame-soft);
}

.otp-input:valid {
  border-color: var(--flame);
}

/* Timer */
.timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin: var(--space-4) 0;
  font-size: 14px;
  color: var(--text-tertiary);
}

.timer-value {
  font-family: 'DM Mono', monospace;
  font-size: 18px;
  font-weight: 500;
  color: var(--flame);
  background: rgba(232, 66, 10, 0.1);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--flame-glow);
}

.resend-link {
  color: var(--flame);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: opacity var(--transition-fast);
}

.resend-link.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Password Strength Meter */
.strength-meter {
  margin-top: var(--space-2);
}

.strength-bars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-1);
}

.strength-bar {
  height: 4px;
  flex: 1;
  background: var(--border-heavy);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.strength-bar.active {
  background: var(--flame);
}

.strength-text {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn,
.btn-fire,
.nav-btn {
  position: relative;
  padding: var(--space-4) var(--space-6);
  border: none;
  border-radius: var(--radius-lg);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-block;
}

.btn-primary,
.btn-fire {
  background: linear-gradient(135deg, var(--flame), var(--flame-dark));
  color: var(--white);
  box-shadow: var(--shadow-flame);
}

.btn-primary::before,
.btn-fire::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.btn-primary:hover,
.btn-fire:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-flame-intense);
}

.btn-primary:hover::before,
.btn-fire:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-heavy);
  color: var(--text-primary);
}

.btn-secondary:hover {
  border-color: var(--flame);
  color: var(--flame);
}

.btn-ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ash);
  text-decoration: none;
  cursor: none;
  transition: color .2s;
}

.btn-ghost-link:hover {
  color: var(--snow);
}

.btn-ghost-link svg {
  transition: transform .2s;
}

.btn-ghost-link:hover svg {
  transform: translateX(4px);
}

.btn-loading {
  position: relative;
  color: transparent;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =====================================================
   ALERTS & NOTIFICATIONS
   ===================================================== */
.alert {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: 14px;
  margin-bottom: var(--space-4);
  animation: slideIn 0.3s var(--transition-bounce);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #FCA5A5;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6EE7B7;
}

.alert-info {
  background: rgba(232, 66, 10, 0.1);
  border: 1px solid var(--flame-glow);
  color: var(--flame-2);
}

/* =====================================================
   CARDS & COMPONENTS
   ===================================================== */
.badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: rgba(232, 66, 10, 0.1);
  border: 1px solid rgba(232, 66, 10, 0.28);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--flame-2);
}

.card,
.fcard,
.fcard2 {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition-base);
}

.card:hover,
.fcard:hover,
.fcard2:hover {
  border-color: var(--flame);
  box-shadow: var(--shadow-flame);
}

/* Floating Cards */
.floats {
  position: absolute;
  right: 52px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s both;
}

.fcard {
  background: rgba(11, 18, 33, 0.92);
  backdrop-filter: blur(24px);
  min-width: 272px;
  max-width: 296px;
  position: relative;
  overflow: hidden;
}

.fcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 66, 10, 0.5), transparent);
}

.fcard:nth-child(1) { animation: float1 6s ease-in-out infinite; }
.fcard:nth-child(2) { margin-left: 20px; animation: float1 6s ease-in-out infinite; animation-delay: -2.2s; }
.fcard:nth-child(3) { animation: float1 6s ease-in-out infinite; animation-delay: -4.4s; }

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.fh {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}

.fav {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flame), var(--ember));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 15px;
  color: #fff;
}

.fname {
  font-size: 12px;
  font-weight: 600;
  color: var(--snow);
}

.ftime {
  font-size: 11px;
  color: var(--ash);
  margin-left: auto;
}

.fbody {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ash);
}

.fbody strong {
  color: var(--snow);
}

.ftag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(232, 66, 10, 0.15);
  border: 1px solid rgba(232, 66, 10, 0.3);
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--flame-2);
  margin-top: 8px;
}

/* Streak Badge */
.streak-badge,
.p-streak {
  background: linear-gradient(135deg, var(--flame), #7A1A00);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: inline-block;
  min-width: 140px;
  position: relative;
  overflow: hidden;
}

.streak-badge::after,
.p-streak::after {
  content: '🔥';
  position: absolute;
  right: var(--space-4);
  top: var(--space-2);
  font-size: 32px;
  opacity: 0.28;
}

.p-streak-n {
  font-family: var(--font-head);
  font-size: 58px;
  color: #fff;
  line-height: 1;
  display: block;
}

.p-streak-l {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* =====================================================
   MARQUEE
   ===================================================== */
.marquee-wrap {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: rgba(11, 18, 33, 0.6);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  gap: 72px;
  width: max-content;
  animation: roll 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes roll {
  to { transform: translateX(-50%); }
}

.mitem {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}

.mnum {
  font-family: var(--font-head);
  font-size: 30px;
  color: var(--flame);
  letter-spacing: .04em;
}

.mlabel {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ash);
}

.mdot {
  width: 1px;
  height: 28px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* =====================================================
   SECTIONS (Problem, How, Features, AI, Who, Africa, Testimonials)
   ===================================================== */
#problem {
  background: linear-gradient(180deg, var(--ink) 0%, var(--navy) 100%);
}

.prob-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 64px;
}

.pcard {
  background: var(--navy-2);
  padding: 40px 36px;
  transition: background .3s;
}

.pcard:hover {
  background: var(--navy-3);
}

.pct {
  font-family: var(--font-head);
  font-size: 78px;
  color: var(--flame);
  line-height: 1;
  margin-bottom: 10px;
}

.pstat {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ash);
}

.pstat strong {
  display: block;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--snow);
  margin-bottom: 5px;
}

/* How It Works */
#how {
  background: var(--navy);
}

.how-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}

.steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
}

.step:last-child {
  border-bottom: none;
}

.snum {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--flame);
  min-width: 30px;
  padding-top: 3px;
}

.stitle {
  font-size: 15px;
  font-weight: 600;
  color: var(--snow);
  margin-bottom: 5px;
}

.sdesc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ash);
  font-weight: 300;
}

/* Phone Mockup */
.phone-shell {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-glow-bg {
  position: absolute;
  width: 280px;
  height: 460px;
  background: radial-gradient(ellipse, rgba(232, 66, 10, 0.22) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.phone {
  width: 248px;
  background: var(--ink);
  border: 2px solid rgba(255, 255, 255, 0.11);
  border-radius: 38px;
  padding: 18px 14px;
  position: relative;
  z-index: 1;
  box-shadow: 0 48px 96px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.p-notch {
  width: 72px;
  height: 22px;
  background: var(--navy-2);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 18px;
}

.p-greet {
  text-align: center;
  margin-bottom: 14px;
}

.p-hi {
  font-size: 11px;
  color: var(--ash);
}

.p-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--snow);
}

.p-task {
  background: var(--navy-2);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 13px;
  margin-bottom: 10px;
}

.p-task-day {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--flame);
  margin-bottom: 5px;
}

.p-task-t {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ash);
}

.p-task-t strong {
  color: var(--snow);
}

.p-cta {
  background: rgba(232, 66, 10, 0.14);
  border: 1px solid rgba(232, 66, 10, 0.38);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--flame-2);
  animation: pulseBdr 2.2s ease infinite;
}

@keyframes pulseBdr {
  0%, 100% { border-color: rgba(232, 66, 10, 0.38); box-shadow: 0 0 0 0 rgba(232, 66, 10, 0); }
  50% { border-color: rgba(232, 66, 10, 0.75); box-shadow: 0 0 14px rgba(232, 66, 10, 0.22); }
}

/* Features */
#features {
  background: var(--ink);
}

.feat-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 72px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
}

.fcard2 {
  padding: 38px 30px;
}

.ficon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: rgba(232, 66, 10, 0.11);
  border: 1px solid rgba(232, 66, 10, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 18px;
}

.ftitle {
  font-size: 15px;
  font-weight: 600;
  color: var(--snow);
  margin-bottom: 8px;
}

.fdesc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ash);
  font-weight: 300;
}

/* AI Messages */
#ai {
  background: var(--navy);
}

.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.msgs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.msg {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--flame), var(--ember));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 15px;
  color: #fff;
}

.mbubble {
  background: var(--navy-2);
  border: 1px solid var(--border-light);
  border-radius: 4px 14px 14px 14px;
  padding: 13px 17px;
  flex: 1;
  max-width: 340px;
}

.mbubble.esc {
  border-color: rgba(232, 66, 10, 0.3);
  background: rgba(232, 66, 10, 0.06);
}

.mbubble.warn {
  border-color: rgba(201, 122, 10, 0.35);
  background: rgba(201, 122, 10, 0.06);
}

.mtype {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mtype.am { color: var(--gold); }
.mtype.nu { color: var(--flame-2); }
.mtype.wa { color: var(--flame); }
.mtype.re { color: #64B5F6; }

.mtxt {
  font-size: 13px;
  line-height: 1.62;
  color: var(--ash);
}

.mtxt strong {
  color: var(--snow);
}

/* Who It's For */
#who {
  background: var(--ink);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 64px;
}

.wcard {
  background: var(--navy-2);
  padding: 34px 26px;
  transition: background .3s;
}

.wcard:hover {
  background: var(--navy-3);
}

.wemo {
  font-size: 26px;
  margin-bottom: 13px;
  display: block;
}

.wtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--snow);
  margin-bottom: 5px;
}

.wdesc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ash);
  font-weight: 300;
}

/* Africa Section */
#africa {
  background: var(--navy);
  overflow: hidden;
  position: relative;
}

#africa::before {
  content: 'AFRICA';
  position: absolute;
  font-family: var(--font-head);
  font-size: 260px;
  color: rgba(255, 255, 255, 0.018);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.africa-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.africa-pts {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 36px;
}

.apt {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.aico {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(232, 66, 10, 0.1);
  border: 1px solid rgba(232, 66, 10, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.aptitle {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--snow);
  margin-bottom: 3px;
}

.apdesc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ash);
  font-weight: 300;
}

.africa-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.anum {
  background: var(--navy-2);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 26px 22px;
}

.anum-n {
  font-family: var(--font-head);
  font-size: 50px;
  color: var(--flame);
  line-height: 1;
  margin-bottom: 7px;
}

.anum-l {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ash);
  font-weight: 300;
}

/* Testimonials */
#testi {
  background: var(--ink);
}

.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 64px;
}

.tcard {
  background: var(--navy-2);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 30px;
  transition: border-color .3s;
}

.tcard:hover {
  border-color: rgba(232, 66, 10, 0.25);
}

.tstars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.tquote {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--ash);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 22px;
}

.tquote strong {
  color: var(--snow);
  font-style: normal;
}

.tauth {
  display: flex;
  align-items: center;
  gap: 11px;
}

.tav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.tname {
  font-size: 13px;
  font-weight: 600;
  color: var(--snow);
}

.trole {
  font-size: 11.5px;
  color: var(--ash);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
#cta {
  padding: 160px 0;
  background: var(--navy-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 50% at 50% 100%, rgba(232, 66, 10, 0.16) 0%, transparent 60%);
  pointer-events: none;
}

.cta-h2 {
  font-family: var(--font-head);
  font-size: clamp(64px, 10vw, 130px);
  line-height: .88;
  letter-spacing: .01em;
  color: var(--snow);
  margin-bottom: 26px;
}

.cta-h2 b {
  color: var(--flame);
}

.cta-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ash);
  max-width: 460px;
  margin: 0 auto 48px;
  font-weight: 300;
}

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 20px;
}

.cta-inp {
  flex: 1;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--snow);
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s;
  cursor: none;
}

.cta-inp::placeholder {
  color: var(--ash);
}

.cta-inp:focus {
  border-color: rgba(232, 66, 10, 0.5);
}

.cta-note {
  font-size: 12px;
  color: var(--ash);
  font-weight: 300;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  border-top: 1px solid var(--border-light);
  padding: 44px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
}

.flogo {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--snow);
  text-decoration: none;
}

.flogo b {
  color: var(--flame);
}

.flinks {
  display: flex;
  gap: 28px;
  list-style: none;
}

.flinks a {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color .2s;
}

.flinks a:hover {
  color: var(--snow);
}

.fcopy {
  font-size: 12px;
  color: var(--ash);
}

/* =====================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================== */
.sr {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s ease;
}

.sr.on {
  opacity: 1;
  transform: none;
}

.sr.d1 { transition-delay: .07s; }
.sr.d2 { transition-delay: .14s; }
.sr.d3 { transition-delay: .21s; }
.sr.d4 { transition-delay: .28s; }
.sr.d5 { transition-delay: .35s; }
.sr.d6 { transition-delay: .42s; }

.sr.left { transform: translateX(-28px); }
.sr.left.on { transform: none; }

.sr.right { transform: translateX(28px); }
.sr.right.on { transform: none; }

/* =====================================================
   PAGE LOADER
   ===================================================== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeOut 0.5s 1s forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    pointer-events: none;
  }
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  animation: pulseLogo 1.5s infinite;
}

.loader-logo b {
  color: var(--flame);
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--border-light);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar::after {
  content: '';
  display: block;
  width: 50%;
  height: 100%;
  background: var(--flame);
  animation: load 1s infinite;
}

@keyframes load {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* =====================================================
   SUCCESS ANIMATIONS
   ===================================================== */
.success-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.checkmark-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flame), var(--flame-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleCheck 0.5s var(--transition-bounce);
}

.checkmark {
  width: 40px;
  height: 20px;
  border-left: 4px solid var(--white);
  border-bottom: 4px solid var(--white);
  transform: rotate(-45deg) translate(4px, -4px);
  animation: drawCheck 0.3s 0.3s both;
}

@keyframes scaleCheck {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

@keyframes drawCheck {
  from { 
    width: 0;
    height: 0;
  }
  to { 
    width: 40px;
    height: 20px;
  }
}

/* =====================================================
   COLOR SWATCHES (for design system page)
   ===================================================== */
.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.color-swatch {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
}

.color-preview {
  height: 100px;
  position: relative;
}

.color-info {
  padding: var(--space-4);
}

.color-name {
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.color-hex {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
}

/* Mood Board */
.mood-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.mood-item {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  transition: all var(--transition-base);
}

.mood-item:hover {
  transform: translateY(-4px);
  border-color: var(--flame);
}

/* Font Samples */
.font-sample {
  margin: var(--space-6) 0;
  padding: var(--space-6);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.font-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* Component Showcase */
.component-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1024px) {
  .floats { display: none; }
  
  nav,
  .admin-nav {
    padding: 16px 24px;
  }
  
  .nav-links { display: none; }
  
  .wrap { padding: 0 24px; }
  
  .how-layout,
  .ai-layout,
  .africa-layout,
  .feat-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .phone-shell { order: -1; }
  .prob-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .tgrid { grid-template-columns: 1fr; }
  .africa-nums { grid-template-columns: 1fr 1fr; }
  
  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  #hero {
    padding: 100px 24px 60px;
  }
  
  .grid-2,
  .grid-3,
  .grid-4,
  .mood-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .auth-card {
    padding: var(--space-6) var(--space-4);
  }
  
  .auth-title {
    font-size: 40px;
  }
  
  .otp-container {
    gap: var(--space-1);
  }
  
  .otp-input {
    width: 44px;
    height: 56px;
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }
}

@media (max-width: 640px) {
  .feat-grid,
  .who-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .mood-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-form {
    flex-direction: column;
  }
  
  .africa-nums {
    grid-template-columns: 1fr;
  }
}
/* ── CTA SECTION (new) ── */
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.cta-main-btn {
  font-size: 18px;
  padding: 18px 48px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta-login-link {
  color: var(--ash);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.cta-login-link:hover { color: var(--flame); }
.cta-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.2s both;
}
.cstat { text-align: center; }
.cstat-n {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--flame);
  display: block;
  line-height: 1;
}
.cstat-l {
  font-size: 12px;
  color: var(--ash);
  display: block;
  margin-top: 4px;
}
.cstat-sep {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}
