/* ═══════════════════════════════════════════════════════════
   ENGAGEX — Premium Dark UI · Liquid Glass · Prime Color
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  /* Prime Colors */
  --violet:        #7C3AED;
  --violet-light:  #A78BFA;
  --violet-deep:   #4C1D95;
  --blue:          #2563EB;
  --blue-light:    #60A5FA;
  --blue-mid:      #3B82F6;
  --cyan:          #0EA5E9;
  --pink:          #BE185D;
  --pink-light:    #EC4899;
  --amber:         #F59E0B;
  --emerald:       #10B981;

  /* Prime Gradient */
  --grad-prime:   linear-gradient(135deg, #7C3AED 0%, #2563EB 60%, #0EA5E9 100%);
  --grad-violet:  linear-gradient(135deg, #4C1D95, #7C3AED);
  --grad-blue:    linear-gradient(135deg, #1E40AF, #2563EB);
  --grad-pink:    linear-gradient(135deg, #9D174D, #EC4899);
  --grad-glow:    linear-gradient(135deg, rgba(124,58,237,0.3), rgba(37,99,235,0.2));

  /* Dark Base */
  --bg-base:       #06040F;
  --bg-surface:    #0C0818;
  --bg-elevated:   #120F20;
  --bg-card:       #160F2A;
  --bg-card2:      rgba(255,255,255,0.03);

  /* Glass */
  --glass-bg:      rgba(255,255,255,0.04);
  --glass-border:  rgba(255,255,255,0.09);
  --glass-shine:   rgba(255,255,255,0.07);

  /* Text */
  --text-primary:  #F5F3FF;
  --text-secondary:#C4B5FD;
  --text-muted:    rgba(255,255,255,0.4);
  --text-faint:    rgba(255,255,255,0.22);

  /* Layout */
  --radius-sm:     10px;
  --radius-md:     18px;
  --radius-lg:     26px;
  --radius-xl:     36px;
  --radius-full:   9999px;

  /* Type */
  --font-head:    'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --t-snappy:     0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --t-smooth:     0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --t-spring:     0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-elastic:    0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--violet); border-radius: 99px; }

/* SVG Filters */
.svg-filters { position: absolute; width: 0; height: 0; pointer-events: none; }

/* ═══════════════════════════════════════════════════════════
   AMBIENT SCENE
   ═══════════════════════════════════════════════════════════ */

/* Noise grain overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

.ambient-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

#starCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: nebulaDrift ease-in-out infinite alternate;
}

.nebula-1 {
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.22) 0%, rgba(37,99,235,0.1) 50%, transparent 100%);
  top: -200px; left: -200px;
  animation-duration: 18s;
}

.nebula-2 {
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.18) 0%, rgba(14,165,233,0.08) 50%, transparent 100%);
  bottom: -150px; right: -200px;
  animation-duration: 14s;
  animation-delay: -6s;
}

.nebula-3 {
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(190,24,93,0.12) 0%, rgba(124,58,237,0.08) 50%, transparent 100%);
  top: 40%; left: 25%;
  animation-duration: 20s;
  animation-delay: -12s;
  opacity: 0.7;
}

.nebula-4 {
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.08) 0%, transparent 70%);
  top: 60%; right: 15%;
  animation-duration: 16s;
  animation-delay: -3s;
  opacity: 0.6;
}

@keyframes nebulaDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}

.aurora {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50vh;
  background: linear-gradient(
    180deg,
    rgba(124,58,237,0.06) 0%,
    rgba(37,99,235,0.04) 40%,
    transparent 100%
  );
  mask-image: linear-gradient(180deg, black 0%, transparent 100%);
  animation: auroraShift 8s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0%   { opacity: 0.7; transform: scaleX(1); }
  100% { opacity: 1; transform: scaleX(1.05); }
}

.grid-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
}

/* ═══════════════════════════════════════════════════════════
   GLASS COMPONENTS
   ═══════════════════════════════════════════════════════════ */

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════ */

.grad-text {
  background: var(--grad-prime);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.28);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 20px;
}

.light-eyebrow {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}

.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.section-p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 64px;
}

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

/* ═══════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 130px 0;
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding var(--t-smooth), background var(--t-smooth);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(6, 4, 15, 0.8);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid rgba(124,58,237,0.15);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-gem {
  filter: drop-shadow(0 0 12px rgba(124,58,237,0.6));
  transition: filter var(--t-smooth);
}

.nav-brand:hover .brand-gem { filter: drop-shadow(0 0 20px rgba(124,58,237,0.9)); }

.brand-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #C4B5FD, #93C5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 9px 15px;
  border-radius: var(--radius-full);
  transition: color var(--t-snappy), background var(--t-snappy);
}

.nav-item:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }

.nav-download {
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--violet-light) !important;
  font-weight: 600;
  transition: all var(--t-smooth) !important;
}

.nav-download:hover {
  background: rgba(124,58,237,0.28) !important;
  border-color: rgba(167,139,250,0.5) !important;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(124,58,237,0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 200;
}

.toggle-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--violet-light);
  border-radius: 2px;
  transition: var(--t-smooth);
}

.nav-toggle.open .toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open .toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 0 0 60px;
}

.hero-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 28px 60px;
}

/* Hero Left */
.hero-left { flex: 1; max-width: 580px; }

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--radius-full);
  padding: 8px 18px 8px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--violet-light);
  margin-bottom: 28px;
}

.chip-pulse {
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
  animation: chipPulse 2.5s ease infinite;
}

@keyframes chipPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.title-gradient {
  display: block;
  background: var(--grad-prime);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
}

.title-plain { display: block; }

.word-1, .word-2 { display: inline-block; }
.word-1 { animation: wordFloat 5s ease-in-out infinite; }
.word-2 { animation: wordFloat 5s ease-in-out infinite 0.4s; }

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

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
}

/* CTA Buttons */
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }

.cta-prime {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  overflow: hidden;
  isolation: isolate;
}

.cta-prime-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-prime);
  z-index: -1;
  transition: opacity var(--t-smooth);
}

.cta-prime::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-prime);
  filter: brightness(1.3);
  opacity: 0;
  transition: opacity var(--t-smooth);
  z-index: -1;
}

.cta-prime:hover::after { opacity: 1; }
.cta-prime:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(124,58,237,0.5); }
.cta-prime:active { transform: translateY(-1px); }

.cta-shine {
  position: absolute;
  top: -50%; left: -80%;
  width: 50%; height: 200%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(15deg);
  animation: shineSweep 4s ease-in-out infinite 2s;
}

@keyframes shineSweep {
  0%   { left: -80%; }
  30%  { left: 130%; }
  100% { left: 130%; }
}

.cta-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--t-smooth);
  backdrop-filter: blur(12px);
}

.cta-ghost:hover {
  background: rgba(124,58,237,0.12);
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(124,58,237,0.2);
  color: var(--violet-light);
}

/* Metrics */
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.metric-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  backdrop-filter: blur(16px);
  transition: var(--t-smooth);
}

.metric-pill:hover { border-color: rgba(124,58,237,0.3); background: rgba(124,58,237,0.06); }

.metric-icon {
  width: 36px; height: 36px;
  background: rgba(124,58,237,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--violet-light);
  font-size: 0.9rem;
}

.metric-body { display: flex; flex-direction: column; }

.metric-val {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--grad-prime);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.metric-tag {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.metric-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.06);
}

/* ── Hero Right — Phone Universe ── */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-universe {
  position: relative;
  width: 340px;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbital rings */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.12);
  pointer-events: none;
}

.ring-1 { width: 320px; height: 320px; animation: ringRotate 20s linear infinite; }
.ring-2 { width: 430px; height: 430px; border-style: dashed; border-color: rgba(37,99,235,0.08); animation: ringRotate 30s linear infinite reverse; }
.ring-3 { width: 530px; height: 530px; border-color: rgba(255,255,255,0.04); animation: ringRotate 40s linear infinite; }

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Halo */
.phone-halo {
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(124,58,237,0.35) 0%, rgba(37,99,235,0.15) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  animation: haloPulse 4s ease-in-out infinite alternate;
}

@keyframes haloPulse {
  0%   { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 1; }
}

/* Device Frame */
.device-frame {
  position: relative;
  width: 240px;
  height: 500px;
  background: linear-gradient(160deg, #1a0d35, #0d1435);
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(124,58,237,0.35),
    0 0 0 2px rgba(0,0,0,0.6),
    0 40px 80px rgba(0,0,0,0.7),
    0 0 80px rgba(124,58,237,0.15),
    inset 0 1px 1px rgba(255,255,255,0.08);
  animation: deviceFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
  z-index: 5;
}

@keyframes deviceFloat {
  0%, 100% { transform: translateY(0) rotateY(-8deg) rotateX(3deg); }
  50%       { transform: translateY(-14px) rotateY(-8deg) rotateX(3deg); }
}

.device-edge-light {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.6), transparent);
  border-radius: 99px;
}

.device-notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 18px;
  background: #030108;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}

.device-screen {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #0f0820, #08122a);
  border-radius: 32px;
  overflow: hidden;
}

/* App UI Inside Phone */
.appui { height: 100%; display: flex; flex-direction: column; }

.appui-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 44px 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.appui-logo-text {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--grad-prime);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.appui-header-actions { display: flex; gap: 8px; }

.appui-icon-btn {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  position: relative;
}

.notif-dot {
  position: absolute;
  top: 4px; right: 4px;
  width: 5px; height: 5px;
  background: #EC4899;
  border-radius: 50%;
  border: 1px solid #030108;
}

.appui-hero-card {
  margin: 10px;
  background: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(37,99,235,0.4));
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 14px;
  padding: 12px;
}

.ahc-label { font-size: 0.6rem; font-weight: 700; color: rgba(255,255,255,0.65); margin-bottom: 4px; }
.ahc-title { font-size: 0.82rem; font-weight: 800; color: white; margin-bottom: 2px; }
.ahc-sub   { font-size: 0.6rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.ahc-cta   { font-size: 0.62rem; font-weight: 700; color: #C4B5FD; }

.appui-section-title {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  padding: 8px 12px 6px;
}

.appui-products { padding: 0 10px; display: flex; flex-direction: column; gap: 6px; }

.app-prod {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 8px;
}

.ap-img {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: white; flex-shrink: 0;
}

.purple-grad { background: linear-gradient(135deg, #7C3AED, #2563EB); }
.pink-grad   { background: linear-gradient(135deg, #BE185D, #7C3AED); }

.ap-info { flex: 1; }
.ap-name  { font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.85); }
.ap-price { font-size: 0.58rem; color: var(--violet-light); font-weight: 600; }
.ap-stars { font-size: 0.55rem; color: #F59E0B; }

.appui-navbar {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 8px 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.3);
}

.appnav-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; font-size: 0.55rem; color: rgba(255,255,255,0.3);
}

.appnav-item i { font-size: 0.85rem; }
.active-appnav { color: var(--violet-light) !important; }

.appnav-plus {
  width: 32px; height: 32px;
  background: var(--grad-prime);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.75rem;
  box-shadow: 0 4px 14px rgba(124,58,237,0.5);
}

/* Floating Cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 10px 16px 10px 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 0.5px rgba(255,255,255,0.06) inset;
  white-space: nowrap;
  z-index: 10;
}

.fc-top { top: 30px;  right: -90px; animation: fcFloat 4s ease-in-out infinite; }
.fc-mid { top: 190px; left: -100px; animation: fcFloat 4s ease-in-out infinite 1.3s; }
.fc-bot { bottom: 80px; right: -90px; animation: fcFloat 4s ease-in-out infinite 2.6s; }

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

.fc-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}

.fc-yellow { background: rgba(245,158,11,0.15); color: #F59E0B; }
.fc-purple { background: rgba(124,58,237,0.2);  color: var(--violet-light); }
.fc-green  { background: rgba(16,185,129,0.15); color: #10B981; }

.fc-title { font-size: 0.75rem; font-weight: 700; color: var(--text-primary); }
.fc-sub   { font-size: 0.65rem; color: var(--text-muted); }

/* Orbit Dots */
.orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--grad-prime);
  box-shadow: 0 0 10px rgba(124,58,237,0.6);
}

.od-1 { animation: orbit1 8s linear infinite; }
.od-2 { animation: orbit2 12s linear infinite reverse; opacity: 0.6; }
.od-3 { animation: orbit3 16s linear infinite; width: 6px; height: 6px; opacity: 0.4; }

@keyframes orbit1 {
  from { transform: rotate(0deg) translateX(160px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(160px) rotate(-360deg); }
}
@keyframes orbit2 {
  from { transform: rotate(60deg) translateX(215px) rotate(-60deg); }
  to   { transform: rotate(420deg) translateX(215px) rotate(-420deg); }
}
@keyframes orbit3 {
  from { transform: rotate(120deg) translateX(265px) rotate(-120deg); }
  to   { transform: rotate(480deg) translateX(265px) rotate(-480deg); }
}

/* Scroll Cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-faint);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  animation: cueAppear 1s ease 2.5s both;
  z-index: 5;
}

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

.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(124,58,237,0.35);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px; height: 6px;
  background: var(--violet-light);
  border-radius: 99px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(8px); opacity: 0; }
  61%       { transform: translateY(0); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   AOS ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

[data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(-40px);
}
[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"] {
  transform: translateX(40px);
}
[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.88);
}
[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════
   FEATURE CARDS
   ═══════════════════════════════════════════════════════════ */

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

.feat-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 36px 28px 32px;
  overflow: hidden;
  transition: transform var(--t-smooth), border-color var(--t-smooth), box-shadow var(--t-smooth);
}

.feat-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(124,58,237,0.35);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4), 0 0 40px rgba(124,58,237,0.12);
}

.feat-glow {
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  filter: blur(50px);
  top: -40px; left: -20px;
  opacity: 0;
  transition: opacity var(--t-smooth);
  pointer-events: none;
}

.feat-card:hover .feat-glow { opacity: 1; }

.glow-purple { background: rgba(124,58,237,0.5); }
.glow-blue   { background: rgba(37,99,235,0.5); }
.glow-pink   { background: rgba(190,24,93,0.5); }
.glow-amber  { background: rgba(245,158,11,0.5); }

.feat-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.icon-purple { background: rgba(124,58,237,0.15); color: var(--violet-light); border: 1px solid rgba(124,58,237,0.25); }
.icon-blue   { background: rgba(37,99,235,0.15); color: var(--blue-light);   border: 1px solid rgba(37,99,235,0.25); }
.icon-pink   { background: rgba(190,24,93,0.15); color: var(--pink-light);   border: 1px solid rgba(190,24,93,0.25); }
.icon-amber  { background: rgba(245,158,11,0.15); color: var(--amber);       border: 1px solid rgba(245,158,11,0.25); }

.feat-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}

.feat-card p {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative; z-index: 1;
}

.feat-arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 32px; height: 32px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--violet-light);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity var(--t-smooth), transform var(--t-smooth);
}

.feat-card:hover .feat-arrow { opacity: 1; transform: scale(1); }

/* ═══════════════════════════════════════════════════════════
   PLATFORM MODELS
   ═══════════════════════════════════════════════════════════ */

.models-stack { display: flex; flex-direction: column; gap: 32px; }

.model-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: border-color var(--t-smooth), box-shadow var(--t-smooth);
}

.model-row:hover {
  border-color: rgba(124,58,237,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 60px rgba(124,58,237,0.06);
}

.row-reverse { grid-template-columns: 1fr 340px; }
.row-reverse .model-visual { order: 2; }
.row-reverse .model-body-content { order: 1; }

/* Model Visual */
.model-visual {
  position: relative;
  height: 260px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.mv-purple { background: linear-gradient(135deg, rgba(76,29,149,0.4), rgba(124,58,237,0.2)); border: 1px solid rgba(124,58,237,0.2); }
.mv-blue   { background: linear-gradient(135deg, rgba(30,64,175,0.4), rgba(37,99,235,0.2)); border: 1px solid rgba(37,99,235,0.2); }
.mv-pink   { background: linear-gradient(135deg, rgba(157,23,77,0.4), rgba(190,24,93,0.2)); border: 1px solid rgba(190,24,93,0.2); }

.mv-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124,58,237,0.25), transparent 65%);
  animation: mvGlowPulse 3s ease-in-out infinite alternate;
}

.mv-blue .mv-glow { background: radial-gradient(circle at 50% 50%, rgba(37,99,235,0.25), transparent 65%); }
.mv-pink .mv-glow { background: radial-gradient(circle at 50% 50%, rgba(190,24,93,0.25), transparent 65%); }

@keyframes mvGlowPulse {
  0%   { opacity: 0.6; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}

.mv-number {
  position: absolute;
  top: 16px; left: 20px;
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
}

.mv-icon-cluster { position: relative; width: 100px; height: 100px; z-index: 2; }

.mvc-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #5B21B6, #7C3AED);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: white;
  box-shadow: 0 10px 30px rgba(124,58,237,0.45);
  z-index: 3;
}

.mvc-satellite {
  position: absolute;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--violet-light);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.s1 { top: -5px; right: -20px; animation: satFloat 3s ease-in-out infinite; }
.s2 { bottom: 10px; right: -30px; animation: satFloat 3s ease-in-out infinite 0.8s; }
.s3 { top: 50%; left: -30px; transform: translateY(-50%); animation: satFloat 3s ease-in-out infinite 1.6s; }
.s4 { bottom: -10px; left: 0; animation: satFloat 3s ease-in-out infinite 2.4s; }

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

.s3 { transform: translateY(-50%) !important; }
@keyframes satFloat3 {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 5px)); }
}
.s3 { animation: satFloat3 3s ease-in-out infinite 1.6s !important; }

/* Model Body */
.model-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.badge-purple { background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.25); color: var(--violet-light); }
.badge-blue   { background: rgba(37,99,235,0.12);  border: 1px solid rgba(37,99,235,0.25);  color: var(--blue-light); }
.badge-pink   { background: rgba(190,24,93,0.12);  border: 1px solid rgba(190,24,93,0.25);  color: var(--pink-light); }

.model-body-content h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.model-body-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.model-flow { display: flex; flex-direction: column; gap: 0; }

.mf-step {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

.mfs-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--grad-prime);
  box-shadow: 0 0 10px rgba(124,58,237,0.5);
  flex-shrink: 0;
}

.mf-line {
  width: 1px; height: 20px;
  background: linear-gradient(to bottom, rgba(124,58,237,0.4), rgba(37,99,235,0.2));
  margin-left: 4px;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */

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

.hiw-track {
  position: absolute;
  top: 60px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.3), rgba(37,99,235,0.3), transparent);
  pointer-events: none;
}

.hiw-step {
  position: relative;
  z-index: 1;
}

.hiw-step-number {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--violet-light);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  opacity: 0.7;
}

.hiw-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-smooth), border-color var(--t-smooth), box-shadow var(--t-smooth);
}

.hiw-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124,58,237,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(124,58,237,0.1);
}

.hiw-card-glow {
  position: absolute;
  top: -30px; left: -30px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--glow-color, rgba(124,58,237,0.3));
  filter: blur(50px);
  opacity: 0;
  transition: opacity var(--t-smooth);
}

.hiw-card:hover .hiw-card-glow { opacity: 1; }

.hiw-icon-wrap {
  width: 60px; height: 60px;
  background: var(--icon-bg, linear-gradient(135deg,#4C1D95,#7C3AED));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 22px;
  position: relative;
  box-shadow: 0 8px 24px rgba(124,58,237,0.35);
}

.hiw-icon-ring {
  position: absolute;
  inset: -6px;
  border: 1px dashed;
  border-color: rgba(124,58,237,0.25);
  border-radius: 22px;
  animation: iconRingRotate 8s linear infinite;
}

@keyframes iconRingRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hiw-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.hiw-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.hiw-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.hiw-tags span {
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--violet-light);
}

/* ═══════════════════════════════════════════════════════════
   REWARDS SECTION
   ═══════════════════════════════════════════════════════════ */

.rewards-layout {
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  gap: 24px;
  align-items: center;
}

.rewards-earn-panel, .rewards-use-panel {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 32px;
  height: 100%;
}

.rp-header { margin-bottom: 24px; }

.rp-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.rp-title i { color: var(--violet-light); }

.earn-rows { display: flex; flex-direction: column; gap: 12px; }

.earn-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 14px;
  transition: var(--t-smooth);
}

.earn-row:hover { border-color: rgba(124,58,237,0.2); transform: translateX(4px); }

.er-icon {
  width: 42px; height: 42px;
  background: var(--cb);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c);
  font-size: 1rem;
  flex-shrink: 0;
}

.er-body { flex: 1; }
.er-body strong { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); display: block; margin-bottom: 2px; }
.er-body p { font-size: 0.75rem; color: var(--text-muted); margin: 0; }

.er-badge {
  background: var(--grad-prime);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 800;
  color: white;
  white-space: nowrap;
}

/* Wallet Card */
.rewards-wallet-card {
  position: relative;
  background: linear-gradient(145deg, #1a0d35, #08122a);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 28px;
  padding: 32px 28px;
  overflow: hidden;
  text-align: center;
}

.rwc-glow {
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(124,58,237,0.5) 0%, transparent 65%);
  filter: blur(30px);
  pointer-events: none;
  animation: rwcGlow 3s ease-in-out infinite alternate;
}

@keyframes rwcGlow {
  0%   { opacity: 0.6; transform: translateX(-50%) scale(0.9); }
  100% { opacity: 1;   transform: translateX(-50%) scale(1.1); }
}

.rwc-tier-badge {
  display: inline-block;
  background: linear-gradient(135deg, #92400E, #F59E0B);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #1a0d00;
  margin-bottom: 20px;
}

.rwc-amount-label { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-bottom: 6px; }

.rwc-amount {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--grad-prime);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}

.rwc-progress-wrap { margin-bottom: 6px; }

.rwc-progress-bar {
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 8px;
}

.rwc-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-prime);
  border-radius: 99px;
  transition: width 2s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

.rwc-progress-fill::after {
  content: '';
  position: absolute;
  right: 0; top: -1px;
  width: 10px; height: 7px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(167,139,250,0.8);
}

.rwc-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
}

.rwc-actions { display: flex; flex-direction: column; gap: 10px; }

.rwc-btn {
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  transition: var(--t-smooth);
}

.rwc-btn-solid {
  background: var(--grad-prime);
  color: white;
  box-shadow: 0 6px 20px rgba(124,58,237,0.35);
}

.rwc-btn-solid:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(124,58,237,0.5); }

.rwc-btn-outline {
  background: transparent;
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--violet-light);
}

.rwc-btn-outline:hover { background: rgba(124,58,237,0.1); border-color: rgba(167,139,250,0.5); }

.rwc-decor-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.1);
  pointer-events: none;
}

.rwc-decor-ring.r1 { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.rwc-decor-ring.r2 { width: 200px; height: 200px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: ringPulse 3s ease-in-out infinite alternate; }

@keyframes ringPulse {
  0%   { opacity: 0.3; transform: translate(-50%,-50%) scale(0.95); }
  100% { opacity: 0.7; transform: translate(-50%,-50%) scale(1.05); }
}

.use-rows { display: flex; flex-direction: column; gap: 16px; }

.use-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: var(--t-smooth);
}

.use-row:hover { border-color: rgba(245,158,11,0.2); }

.ur-icon {
  width: 42px; height: 42px;
  background: var(--uc, rgba(124,58,237,0.12));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ui, var(--violet-light));
  font-size: 1rem;
  flex-shrink: 0;
}

.ur-body strong { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); display: block; margin-bottom: 4px; }
.ur-body p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }

.rewards-use-cta { padding-top: 8px; }

.ruc-link {
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--grad-prime);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t-smooth);
}

.ruc-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════════
   APP PREVIEW
   ═══════════════════════════════════════════════════════════ */

.preview-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.ps-tabs {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-full);
  padding: 6px;
}

.ps-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background: none;
  border: none;
  color: var(--text-muted);
  transition: all var(--t-smooth);
}

.ps-tab:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }

.active-tab {
  background: var(--grad-prime) !important;
  color: white !important;
  box-shadow: 0 6px 20px rgba(124,58,237,0.4);
}

.ps-device-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.ps-device-glow {
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(40px);
  pointer-events: none;
  animation: haloPulse 4s ease-in-out infinite alternate;
}

.ps-device {
  position: relative;
  width: 260px; height: 530px;
  background: linear-gradient(160deg, #1a0d35, #0d1435);
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(124,58,237,0.3),
    0 0 0 2px rgba(0,0,0,0.5),
    0 40px 80px rgba(0,0,0,0.7),
    0 0 80px rgba(124,58,237,0.15);
  animation: previewFloat 5s ease-in-out infinite;
}

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

.ps-device-notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 18px;
  background: #030108;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}

.ps-screen-container {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #0f0820, #08122a);
  border-radius: 32px;
  overflow: hidden;
}

.ps-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px) scale(0.96);
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), transform 0.5s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  overflow-y: auto;
  scrollbar-width: none;
}

.ps-screen::-webkit-scrollbar { display: none; }

.active-screen {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: all !important;
}

/* Screen Internals */
.pss-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 44px 14px 10px;
  font-size: 0.8rem; font-weight: 800;
  color: var(--text-primary);
  position: sticky; top: 0;
  background: linear-gradient(to bottom, #0f0820 60%, transparent);
  z-index: 5;
}

.pss-icons { display: flex; gap: 10px; font-size: 0.7rem; color: rgba(255,255,255,0.4); }

.pss-search {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 8px 12px; margin: 0 12px 10px;
  font-size: 0.62rem; color: rgba(255,255,255,0.25);
}

.pss-campaign-card {
  margin: 0 12px 12px;
  background: linear-gradient(135deg, rgba(124,58,237,0.45), rgba(37,99,235,0.35));
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 14px; padding: 14px;
}

.pscc-tag  { font-size: 0.58rem; font-weight: 700; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.pscc-name { font-size: 0.82rem; font-weight: 800; color: white; margin-bottom: 2px; }
.pscc-sub  { font-size: 0.6rem; color: rgba(255,255,255,0.55); }

.pss-sec-title { font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.55); padding: 4px 14px 8px; }

.pss-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 12px; }

.pss-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; overflow: hidden; padding-bottom: 8px;
}

.pss-card-img {
  height: 65px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: white;
}

.pss-card-name  { font-size: 0.6rem; font-weight: 700; color: rgba(255,255,255,0.8); padding: 5px 8px 2px; }
.pss-card-price { font-size: 0.58rem; color: var(--violet-light); font-weight: 700; padding: 0 8px; }

.pss-nav {
  display: flex; justify-content: space-around; align-items: center;
  padding: 8px 6px 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.4);
  position: sticky; bottom: 0;
}

.pssn {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; font-size: 0.55rem;
  color: rgba(255,255,255,0.25); font-weight: 600;
}

.pssn i { font-size: 0.9rem; }
.active-pssn { color: var(--violet-light) !important; }

.pssn-plus {
  width: 32px; height: 32px;
  background: var(--grad-prime);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.7rem;
  box-shadow: 0 4px 14px rgba(124,58,237,0.5);
}

/* Product screen */
.pss-prod-hero {
  height: 140px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.pss-prod-icon { font-size: 3rem; color: white; }

.pss-prod-badge {
  position: absolute; bottom: 10px; left: 12px;
  background: rgba(167,139,250,0.15);
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 99px; padding: 3px 10px;
  font-size: 0.55rem; font-weight: 700;
  color: var(--violet-light);
}

.pss-prod-body { padding: 12px 14px 70px; }
.pss-prod-name { font-size: 0.9rem; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }

.pss-prod-pricing { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.pss-price { font-size: 1rem; font-weight: 900; color: var(--violet-light); }
.pss-orig  { font-size: 0.6rem; color: rgba(255,255,255,0.25); text-decoration: line-through; }
.pss-disc  { font-size: 0.6rem; background: rgba(16,185,129,0.15); color: #10B981; font-weight: 700; padding: 2px 6px; border-radius: 6px; }

.pss-rating { font-size: 0.65rem; color: #F59E0B; margin-bottom: 10px; }
.pss-rating span { color: rgba(255,255,255,0.3); font-size: 0.58rem; }

.pss-seller-row {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.04); border-radius: 10px;
  padding: 8px 10px; margin-bottom: 12px;
}

.pss-avatar {
  width: 24px; height: 24px;
  background: var(--grad-prime); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.6rem;
}

.pss-seller-row span { font-size: 0.65rem; font-weight: 600; color: rgba(255,255,255,0.7); }

.pss-buy-btn {
  width: 100%; padding: 10px;
  background: var(--grad-prime); color: white;
  border: none; border-radius: 12px;
  font-size: 0.72rem; font-weight: 700;
  box-shadow: 0 6px 20px rgba(124,58,237,0.4);
}

/* Review screen */
.pss-rev-product {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; margin: 8px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
}

.pss-rev-img {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: white;
}

.pss-rev-name  { font-size: 0.72rem; font-weight: 700; color: var(--text-primary); }
.pss-rev-brand { font-size: 0.58rem; color: var(--text-muted); }

.pss-stars-row { padding: 10px 14px; }
.pss-stars-label { font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.pss-big-stars { display: flex; gap: 4px; }
.pss-star { font-size: 1.4rem; color: rgba(255,255,255,0.12); }
.pss-star.lit { color: #F59E0B; text-shadow: 0 0 10px rgba(245,158,11,0.5); }

.pss-textarea {
  margin: 0 12px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 12px;
  font-size: 0.62rem; color: rgba(255,255,255,0.2);
  min-height: 55px;
}

.pss-chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 12px 10px; }

.pss-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 99px; padding: 4px 10px;
  font-size: 0.6rem; font-weight: 600; color: rgba(255,255,255,0.35);
}

.active-chip {
  background: rgba(124,58,237,0.15) !important;
  border-color: rgba(124,58,237,0.35) !important;
  color: var(--violet-light) !important;
}

.pss-reward-hint {
  display: flex; align-items: center; gap: 8px;
  margin: 0 12px 10px;
  background: rgba(245,158,11,0.07);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 10px; padding: 8px 12px;
  font-size: 0.62rem; color: rgba(255,255,255,0.45);
}

.pss-reward-hint strong { color: #F59E0B; }

.pss-submit-btn {
  width: calc(100% - 24px); margin: 0 12px 14px;
  padding: 10px;
  background: var(--grad-prime); color: white;
  border: none; border-radius: 12px;
  font-size: 0.72rem; font-weight: 700;
}

/* Rewards screen */
.pss-wallet {
  margin: 8px 12px 14px;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(37,99,235,0.2));
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 16px; padding: 16px;
  text-align: center;
}

.pss-wallet-tier { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.1em; color: #F59E0B; margin-bottom: 8px; }
.pss-wallet-pts  { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: white; line-height: 1; }
.pss-wallet-label { font-size: 0.58rem; color: rgba(255,255,255,0.4); margin-bottom: 10px; }

.pss-wallet-progress {
  height: 3px; background: rgba(255,255,255,0.1);
  border-radius: 99px; overflow: hidden; margin-bottom: 6px;
}

.pss-wp-fill { height: 100%; width: 85%; background: var(--grad-prime); border-radius: 99px; }

.pss-wallet-next { font-size: 0.55rem; color: rgba(255,255,255,0.3); }

.pss-activity-title { font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.5); padding: 0 14px 8px; }

.pss-activities { padding: 0 12px 70px; display: flex; flex-direction: column; gap: 7px; }

.pss-act {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 8px;
}

.pss-act-ic {
  width: 32px; height: 32px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}

.pss-act-body { flex: 1; }
.pss-act-body div  { font-size: 0.6rem; font-weight: 700; color: rgba(255,255,255,0.75); }
.pss-act-body span { font-size: 0.55rem; color: rgba(255,255,255,0.3); }

.pss-act-pts { font-size: 0.68rem; font-weight: 800; color: #10B981; }

/* ═══════════════════════════════════════════════════════════
   COMMUNITY SECTION
   ═══════════════════════════════════════════════════════════ */

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

.comm-card {
  position: relative;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  overflow: hidden;
  transition: transform var(--t-smooth), border-color var(--t-smooth), box-shadow var(--t-smooth);
}

.comm-card:hover {
  transform: translateY(-10px);
  border-color: rgba(124,58,237,0.25);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4), 0 0 50px rgba(124,58,237,0.08);
}

.comm-featured {
  border-color: rgba(37,99,235,0.2) !important;
  background: rgba(37,99,235,0.04) !important;
}

.cc-gradient {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  opacity: 0.08;
  pointer-events: none;
}

.cc-grad-purple { background: radial-gradient(ellipse at 40% 0%, #7C3AED, transparent 70%); }
.cc-grad-blue   { background: radial-gradient(ellipse at 40% 0%, #2563EB, transparent 70%); }
.cc-grad-pink   { background: radial-gradient(ellipse at 40% 0%, #BE185D, transparent 70%); }

.cc-icon-wrap {
  width: 60px; height: 60px;
  background: var(--g);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: white;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(124,58,237,0.35);
  position: relative; z-index: 1;
}

.cc-eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}

.comm-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}

.comm-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}

.cc-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}

.cc-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.65);
}

.cc-check {
  font-size: 0.7rem;
  background: rgba(124,58,237,0.15);
  border-radius: 50%;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--violet-light);
  flex-shrink: 0;
  font-weight: 800;
}

.cc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--violet-light);
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  transition: all var(--t-smooth);
  position: relative; z-index: 1;
}

.cc-link:hover {
  background: rgba(124,58,237,0.2);
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124,58,237,0.25);
  gap: 10px;
}

/* ═══════════════════════════════════════════════════════════
   DOWNLOAD SECTION
   ═══════════════════════════════════════════════════════════ */

.dl-card {
  position: relative;
  background: linear-gradient(145deg, #0D0B1A, #101830);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 40px;
  padding: 80px 70px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 60px;
}

.dl-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: dlOrbMove ease-in-out infinite alternate;
}

.dl-o1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
  top: -150px; left: -150px;
  animation-duration: 12s;
}

.dl-o2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
  bottom: -100px; right: 300px;
  animation-duration: 9s;
  animation-delay: -3s;
}

.dl-o3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
  top: 50%; right: 0;
  animation-duration: 15s;
  animation-delay: -6s;
  transform: translateY(-50%);
}

@keyframes dlOrbMove {
  from { transform: translate(0, 0); }
  to   { transform: translate(20px, 15px); }
}

.dl-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 80% at 30% 50%, black 0%, transparent 80%);
}

.dl-content { flex: 1; position: relative; z-index: 1; }

.dl-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.dl-grad-text {
  background: var(--grad-prime);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dl-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.dl-store-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.dl-store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 14px 24px;
  color: white;
  transition: all var(--t-smooth);
  backdrop-filter: blur(12px);
}

.dl-store-btn:hover {
  background: rgba(124,58,237,0.15);
  border-color: rgba(124,58,237,0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

.dlsb-icon { font-size: 1.8rem; }
.dlsb-text { display: flex; flex-direction: column; }
.dlsb-small { font-size: 0.6rem; font-weight: 500; opacity: 0.55; letter-spacing: 0.06em; }
.dlsb-big   { font-size: 1.05rem; font-weight: 700; }

.dl-trust { display: flex; align-items: center; gap: 24px; }
.dl-trust-item { display: flex; flex-direction: column; }
.dl-trust-item strong { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.dl-trust-item span   { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.dl-trust-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.1); }

.dl-phone-visual { flex-shrink: 0; position: relative; z-index: 1; }

.dl-phone-glow {
  position: absolute;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(124,58,237,0.4) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(40px);
  pointer-events: none;
  animation: haloPulse 4s ease-in-out infinite alternate;
}

.dl-phone {
  width: 210px; height: 430px;
  background: linear-gradient(160deg, #1a0d35, #0d1435);
  border-radius: 38px; padding: 12px;
  border: 1px solid rgba(124,58,237,0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 60px rgba(124,58,237,0.15);
  position: relative;
  animation: dlPhoneFloat 5s ease-in-out infinite;
}

@keyframes dlPhoneFloat {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(-12px) rotate(2deg); }
}

.dl-phone-notch {
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 65px; height: 16px;
  background: #030108;
  border-radius: 0 0 10px 10px;
}

.dl-phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #0f0820, #08122a);
  border-radius: 28px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
}

.dl-splash-logo {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(37,99,235,0.3));
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
}

.dl-splash-name { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: white; }
.dl-splash-tagline { font-size: 0.65rem; color: rgba(255,255,255,0.35); letter-spacing: 0.04em; }

.dl-splash-loader {
  width: 80px; height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 10px;
}

.dsl-bar {
  height: 100%;
  width: 0%;
  background: var(--grad-prime);
  border-radius: 99px;
  animation: loaderFill 3s ease-in-out infinite;
}

@keyframes loaderFill {
  0%   { width: 0%; }
  60%  { width: 100%; }
  80%  { width: 100%; }
  100% { width: 0%; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.footer {
  background: #040210;
  border-top: 1px solid rgba(124,58,237,0.1);
  padding: 80px 0 0;
  position: relative;
  z-index: 2;
}

.footer-glow-top {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.1) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #C4B5FD, #93C5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}

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

.fs-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  transition: all var(--t-smooth);
}

.fs-link:hover {
  background: rgba(124,58,237,0.15);
  border-color: rgba(124,58,237,0.3);
  color: var(--violet-light);
  transform: translateY(-3px);
}

.footer-links-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.footer-links-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--t-smooth), padding-left var(--t-smooth);
}

.footer-links-col a:hover { color: rgba(255,255,255,0.75); padding-left: 4px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35) !important;
  transition: color var(--t-smooth);
}

.footer-email:hover { color: var(--violet-light) !important; }

/* Toast */
.toast-bar {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(12,8,24,0.9);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius-full);
  padding: 14px 24px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 30px rgba(124,58,237,0.2);
  z-index: 9999;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
}

.toast-bar.show { transform: translateX(-50%) translateY(0); }
.toast-icon { font-size: 1rem; }

/* Scroll Progress */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--grad-prime);
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
  box-shadow: 0 0 10px rgba(124,58,237,0.6);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .rewards-layout { grid-template-columns: 1fr 1fr; }
  .rewards-wallet-card { grid-column: span 2; max-width: 400px; margin: 0 auto; }
  .model-row { grid-template-columns: 1fr; gap: 28px; }
  .row-reverse .model-visual { order: 0; }
  .row-reverse .model-body-content { order: 0; }
  .model-visual { height: 200px; }
}

@media (max-width: 900px) {
  .hero-wrap { flex-direction: column; gap: 50px; padding-bottom: 40px; }
  .hero-left { max-width: 100%; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-metrics { justify-content: center; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-right { width: 100%; }
  .phone-universe { transform: scale(0.85); }
  .comm-grid { grid-template-columns: 1fr; }
  .dl-card { flex-direction: column; gap: 48px; text-align: center; padding: 60px 40px; }
  .dl-desc { margin: 0 auto 36px; }
  .dl-store-btns { justify-content: center; }
  .dl-trust { justify-content: center; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 90px 0; }
  .section-h2 { font-size: 1.9rem; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(6,4,15,0.97);
    backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 100px 28px 40px;
    gap: 4px;
    transition: right var(--t-elastic);
    border-left: 1px solid rgba(124,58,237,0.15);
    z-index: 150;
  }
  .nav-menu.open { right: 0; }
  .nav-toggle { display: flex; }
  .nav-item { border-radius: var(--radius-md); padding: 12px 16px; }
  .hiw-timeline { grid-template-columns: 1fr; }
  .hiw-track { display: none; }
  .rewards-layout { grid-template-columns: 1fr; }
  .rewards-wallet-card { grid-column: span 1; }
  .feat-grid { grid-template-columns: 1fr; }
  .ps-tabs { flex-wrap: wrap; justify-content: center; border-radius: var(--radius-xl); }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .cta-prime, .cta-ghost { justify-content: center; width: 100%; }
  .hero-metrics { flex-direction: column; }
  .metric-sep { display: none; }
  .dl-store-btns { flex-direction: column; align-items: center; }
  .dl-store-btn { width: 100%; max-width: 280px; justify-content: center; }
  .dl-card { padding: 40px 24px; border-radius: 28px; }
}
