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

:root {
  --bg: #00050f;
  --bg-gradient: radial-gradient(circle at 50% -10%, #092556 0%, #010a1c 50%, #00050f 100%);
  --surface: rgba(4, 18, 43, 0.45);
  --surface-2: rgba(6, 27, 65, 0.65);
  --line: rgba(0, 210, 255, 0.15);
  --line-hover: rgba(0, 210, 255, 0.4);
  --muted: #7fa9e0;
  --text: #f3f7fe;
  --acid: #00d2ff;
  --acid-soft: #0ea5e9;
  --acid-glow: rgba(0, 210, 255, 0.5);
  --purple: #a855f7;
  --purple-glow: rgba(168, 85, 247, 0.4);
  --orange: #ff4a76;
  --radius-lg: 24px;
  --radius-md: 16px;
  --mono: 'DM Mono', monospace;
  --sans: 'Outfit', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Selection styling */
::selection { background: rgba(0, 210, 255, 0.3); color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #00050f; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--acid), var(--purple));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #5ce2ff, var(--purple));
  box-shadow: 0 0 12px var(--acid-glow);
}

.space-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Cybernetic Grid Overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(0, 210, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 210, 255, 0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

/* Aurora / Nebula ambient */
body::after {
  content: '';
  position: fixed;
  top: -30%;
  left: -20%;
  width: 140%;
  height: 140%;
  z-index: -2;
  background:
    radial-gradient(ellipse 600px 400px at 20% 30%, rgba(168, 85, 247, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 500px 350px at 75% 60%, rgba(0, 210, 255, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 50% 80%, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
  animation: aurora-shift 15s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes aurora-shift {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
  50% { transform: translate(30px, -20px) rotate(1deg); opacity: 1; }
  100% { transform: translate(-20px, 15px) rotate(-1deg); opacity: 0.7; }
}

.grain {
  position: fixed;
  z-index: 10;
  inset: 0;
  pointer-events: none;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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)' opacity='.8'/%3E%3C/svg%3E");
}

/* ─── Cursor Glow Trail ─── */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.06) 0%, rgba(168, 85, 247, 0.03) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out, opacity 0.3s ease;
  opacity: 0;
  mix-blend-mode: screen;
}
.cursor-glow.active { opacity: 1; }

.app-shell {
  position: relative;
  max-width: 1440px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 5.5vw;
}

/* Ambient glow accents — enhanced */
.app-shell::before {
  position: absolute;
  z-index: -1;
  top: -250px;
  right: -100px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.2) 0%, rgba(168, 85, 247, 0.08) 40%, transparent 100%);
  filter: blur(100px);
  border-radius: 50%;
  content: '';
  pointer-events: none;
  animation: glow-breathe 8s ease-in-out infinite alternate;
}

.app-shell::after {
  position: absolute;
  z-index: -1;
  bottom: -150px;
  left: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.14) 0%, rgba(0, 210, 255, 0.04) 50%, transparent 100%);
  filter: blur(90px);
  border-radius: 50%;
  content: '';
  pointer-events: none;
  animation: glow-breathe 10s ease-in-out 2s infinite alternate;
}

@keyframes glow-breathe {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.08); }
}

/* ═══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   LIVE MARQUEE / TICKER
   ═══════════════════════════════════════ */
.ticker-bar {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(0, 210, 255, 0.08);
  border-bottom: 1px solid rgba(0, 210, 255, 0.08);
  background: rgba(0, 210, 255, 0.02);
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 14px 0;
  flex-shrink: 0;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticker-item b { color: var(--acid); font-weight: 500; text-shadow: 0 0 8px rgba(0, 210, 255, 0.3); }
.ticker-sep { color: rgba(0, 210, 255, 0.2); font-size: 6px; }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   SOCIAL PROOF BAR
   ═══════════════════════════════════════ */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 18px 0;
  margin-top: 56px;
  border-top: 1px solid rgba(0, 210, 255, 0.1);
  width: fit-content;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.proof-value {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 18px rgba(0, 210, 255, 0.25);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.proof-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── HEADER ─── */
.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 92px;
  border-bottom: 1px solid rgba(0, 210, 255, 0.12);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
}

/* Animated neon line under header */
.site-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--acid), var(--purple), transparent);
  animation: header-line-sweep 6s ease-in-out infinite;
}

@keyframes header-line-sweep {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--text);
  text-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
  transition: text-shadow 0.3s ease;
}

.brand:hover {
  text-shadow: 0 0 25px var(--acid-glow), 0 0 50px rgba(168, 85, 247, 0.2);
}

.brand-logo {
  width: 24px;
  height: 24px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
  filter: drop-shadow(0 0 4px rgba(0, 210, 255, 0.3));
}

.brand:hover .brand-logo {
  transform: scale(1.12) rotate(2deg);
  filter: drop-shadow(0 0 12px rgba(0, 210, 255, 0.8)) drop-shadow(0 0 20px rgba(168, 85, 247, 0.4));
}

.header-meta { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid), 0 0 20px var(--acid);
  animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.8; box-shadow: 0 0 8px var(--acid); }
  100% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 18px var(--acid), 0 0 30px var(--acid-soft); }
}

.header-right { justify-self: end; display: flex; align-items: center; gap: 24px; }
.header-link {
  color: var(--acid);
  font-weight: 500;
  transition: all .25s ease;
  position: relative;
}
.header-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--acid);
  box-shadow: 0 0 6px var(--acid);
  transition: width 0.3s ease;
}
.header-link:hover::after { width: 100%; }
.header-link:hover { color: var(--text); text-shadow: 0 0 10px rgba(0, 210, 255, 0.5); }
.header-link span { display: inline-block; margin-left: 6px; font-size: 14px; transition: transform .2s ease; }
.header-link:hover span { transform: translate(2px, -2px); }

/* ─── PAGE TRANSITIONS ─── */
.page { animation: appear .6s cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes appear { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ─── HERO ─── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(340px, .93fr);
  align-items: center;
  gap: clamp(50px, 9vw, 145px);
  min-height: calc(100vh - 170px);
  padding: 40px 0 80px;
}

.eyebrow, .section-label, .modal-kicker {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.25);
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 25px; }
.eyebrow::before { width: 30px; height: 1px; background: var(--acid); content: ''; box-shadow: 0 0 5px var(--acid); animation: line-extend 1.5s ease-out both; }

@keyframes line-extend {
  from { width: 0; opacity: 0; }
  to { width: 30px; opacity: 1; }
}

h1, h2, p { margin: 0; }
h1 {
  max-width: 720px;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  background: linear-gradient(135deg, #ffffff 30%, #c9ddf7 55%, #00d2ff 80%, #a855f7 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

h1 em {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--acid);
  filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.3));
  font-style: normal;
  animation: text-glow 3s ease-in-out infinite alternate;
}

@keyframes text-glow {
  0% { filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.2)); }
  100% { filter: drop-shadow(0 0 30px rgba(0, 210, 255, 0.5)); }
}

.hero-copy { max-width: 570px; margin-top: 30px; color: var(--muted); font-size: 17px; font-weight: 300; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 42px; }

/* ─── BUTTONS ─── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 26px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.button-primary {
  color: #00050f;
  background: linear-gradient(135deg, var(--acid), #00aeff, var(--purple));
  background-size: 200% 200%;
  box-shadow: 0 4px 25px rgba(0, 210, 255, 0.35), 0 0 0 0 rgba(168, 85, 247, 0);
  animation: btn-gradient 4s ease infinite;
}

@keyframes btn-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Button shine sweep */
.button-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: none;
  animation: shine-sweep 3s ease-in-out infinite;
}

@keyframes shine-sweep {
  0%, 70%, 100% { left: -100%; }
  85% { left: 100%; }
}

.button-primary:hover {
  background: linear-gradient(135deg, #5ce2ff, var(--acid), #c084fc);
  background-size: 200% 200%;
  box-shadow: 0 8px 35px rgba(0, 210, 255, 0.45), 0 0 20px rgba(168, 85, 247, 0.2);
  transform: translateY(-3px) scale(1.02);
}

.button-primary span { font-size: 18px; line-height: 0; transition: transform .2s ease; }
.button-primary:hover span { transform: translateX(4px); }

.button-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.button-ghost::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.3), rgba(168, 85, 247, 0.3));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.button-ghost:hover::before { opacity: 1; }

.button-ghost:hover {
  border-color: transparent;
  color: #ffffff;
  background: rgba(0, 210, 255, 0.12);
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.2), inset 0 0 20px rgba(0, 210, 255, 0.05);
  transform: translateY(-2px);
}

.button-ghost span { transition: transform .2s ease; }
.button-ghost:hover span { transform: translateX(4px); }

.button-full { width: 100%; }
.hero-note { color: #5778a8; font-family: var(--mono); font-size: 10px; }

/* ─── HERO VISUAL ─── */
.hero-visual { position: relative; min-height: 535px; display: grid; place-items: center; }

/* Rotating cosmic orbits */
.visual-orbit {
  position: absolute;
  width: min(39vw, 485px);
  height: min(39vw, 485px);
  min-width: 330px;
  min-height: 330px;
  border: 1px solid rgba(0, 210, 255, 0.15);
  border-radius: 50%;
  transform: rotate(-25deg);
  animation: rotate-orbit 40s linear infinite;
}

@keyframes rotate-orbit {
  from { transform: rotate(-25deg); }
  to { transform: rotate(335deg); }
}

.visual-orbit::before, .visual-orbit::after { position: absolute; inset: 12%; border: 1px solid rgba(0, 210, 255, 0.08); border-radius: 50%; content: ''; }
.visual-orbit::after { inset: 28%; border-color: rgba(168, 85, 247, 0.15); }

.orbit-dot {
  position: absolute;
  top: 12%;
  left: 16%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 20px 6px rgba(0, 210, 255, 0.6), 0 0 4px #ffffff, 0 0 40px 10px rgba(0, 210, 255, 0.2);
}

/* ─── ORBIT CARD ─── */
.orbit-card {
  position: relative;
  z-index: 2;
  width: min(100%, 378px);
  padding: 30px;
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: var(--radius-lg);
  --mx: 50%;
  --my: 50%;
  background: radial-gradient(circle 200px at var(--mx) var(--my), rgba(0, 210, 255, 0.1), transparent), rgba(3, 15, 40, 0.75);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 210, 255, 0.05);
  transform: rotate(3deg);
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.orbit-card:hover {
  transform: rotate(1deg) scale(1.03);
  border-color: rgba(0, 210, 255, 0.5);
  background: radial-gradient(circle 200px at var(--mx) var(--my), rgba(0, 210, 255, 0.18), transparent), rgba(3, 15, 40, 0.75);
  box-shadow:
    0 35px 90px rgba(0, 210, 255, 0.1),
    0 0 40px rgba(0, 210, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Animated top accent line */
.orbit-card::before {
  position: absolute;
  top: -1px;
  left: 36px;
  width: 58px;
  height: 2px;
  background: linear-gradient(90deg, var(--acid), var(--purple));
  box-shadow: 0 0 12px var(--acid);
  content: '';
}

/* Cyber Scanning Line */
.orbit-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--acid), var(--purple), transparent);
  opacity: 0.3;
  animation: scan 5s linear infinite;
  pointer-events: none;
}

@keyframes scan {
  0% { top: 0%; }
  50% { top: 100%; opacity: 0.5; }
  100% { top: 0%; }
}

.card-topline, .mini-label, .progress-row { display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.card-topline { color: var(--muted); }
.card-topline strong { color: var(--acid); font-weight: 500; text-shadow: 0 0 8px rgba(0, 210, 255, 0.3); }

.orbit-card h2 { max-width: 240px; margin: 45px 0 25px; font-size: 30px; font-weight: 700; letter-spacing: -.05em; line-height: 1.1; }

.card-task {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: #b1ccf0;
  font-size: 13px;
  transition: all .25s ease;
}
.card-task:hover { color: var(--text); padding-left: 6px; }

.task-icon {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: 50%;
  color: var(--acid);
  font-size: 12px;
  transition: all .25s ease;
}
.card-task:hover .task-icon {
  background: rgba(0, 210, 255, 0.12);
  border-color: var(--acid);
  box-shadow: 0 0 12px rgba(0, 210, 255, 0.25);
  transform: rotate(10deg);
}

.task-count { margin-left: auto; color: #5879a8; font-family: var(--mono); font-size: 10px; }

.mini-label { margin-top: 28px; color: #5879a8; }
.progress-row { margin-top: 10px; color: var(--text); }

.progress-track {
  height: 5px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(0, 210, 255, 0.06);
  border: 1px solid rgba(0, 210, 255, 0.08);
}
.progress-track span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--acid-soft), var(--acid), var(--purple));
  box-shadow: 0 0 12px var(--acid);
  animation: progress-pulse 2s ease-in-out infinite alternate;
}

@keyframes progress-pulse {
  0% { box-shadow: 0 0 8px var(--acid); }
  100% { box-shadow: 0 0 18px var(--acid), 0 0 6px var(--purple); }
}

.floating-tag {
  position: absolute;
  z-index: 3;
  right: 0%;
  bottom: 12%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: 12px;
  background: rgba(3, 16, 43, 0.92);
  backdrop-filter: blur(12px);
  color: #c9e0ff;
  box-shadow: 10px 14px 35px rgba(0, 0, 0, 0.45), 0 0 20px rgba(0, 210, 255, 0.05);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transform: rotate(-7deg);
  transition: all .3s ease;
  animation: float-bob 4s ease-in-out infinite;
}

@keyframes float-bob {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-7deg) translateY(-6px); }
}

.floating-tag:hover {
  transform: rotate(-3deg) translateY(-3px);
  border-color: rgba(0, 210, 255, 0.4);
  box-shadow: 10px 14px 35px rgba(0, 0, 0, 0.45), 0 0 30px rgba(0, 210, 255, 0.12);
}

.floating-tag b { color: var(--acid); font-size: 14px; font-weight: 400; text-shadow: 0 0 12px var(--acid); animation: star-pulse 2s ease-in-out infinite alternate; }

@keyframes star-pulse {
  0% { text-shadow: 0 0 8px var(--acid); }
  100% { text-shadow: 0 0 20px var(--acid), 0 0 30px var(--purple-glow); }
}

/* ─── TASKS PAGE ─── */
.tasks-page { max-width: 1000px; margin: 0 auto; padding: 76px 0 95px; }
.tasks-heading { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; padding-bottom: 44px; }
.tasks-heading h1 { max-width: none; white-space: nowrap; margin-top: 16px; font-size: clamp(2.8rem, 5.2vw, 5rem); }

.heading-side { max-width: 600px; color: var(--muted); font-size: 14px; font-weight: 300; line-height: 1.7; }

/* Dashboard container */
.tasks-dashboard {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  margin-bottom: 30px;
}

.dashboard-progress-card, .dashboard-meta-card {
  border: 1px solid rgba(0, 210, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(4, 18, 43, 0.55);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 24px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle shimmer border for dashboard cards */
.dashboard-progress-card::before, .dashboard-meta-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.2), transparent 40%, transparent 60%, rgba(168, 85, 247, 0.2));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dashboard-progress-card:hover::before, .dashboard-meta-card:hover::before { opacity: 1; }

.dashboard-progress-card:hover, .dashboard-meta-card:hover {
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 30px rgba(0, 210, 255, 0.06);
}

.dashboard-progress-card {
  display: flex;
  align-items: center;
  gap: 28px;
}

.progress-ring-wrap {
  position: relative;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
}

.progress-ring { transform: rotate(-90deg); }

.progress-ring-bar {
  transition: stroke-dashoffset 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 4px var(--acid));
}

.progress-ring-text {
  position: absolute;
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-shadow: 0 0 12px rgba(0, 210, 255, 0.4);
}

.progress-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.progress-info h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.progress-info p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.status-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 10px;
  border-radius: 12px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.status-badge.pending {
  border: 1px solid rgba(255, 74, 118, 0.3);
  background: rgba(255, 74, 118, 0.08);
  color: var(--orange);
  animation: badge-blink 2s ease-in-out infinite;
}

@keyframes badge-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.status-badge.active {
  border: 1px solid rgba(0, 210, 255, 0.3);
  background: rgba(0, 210, 255, 0.08);
  color: var(--acid);
  box-shadow: 0 0 12px rgba(0, 210, 255, 0.15);
}

.dashboard-meta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  border-bottom: 1px dashed rgba(0, 210, 255, 0.06);
  padding-bottom: 8px;
  transition: all 0.2s ease;
}

.meta-row:hover {
  padding-left: 4px;
}

.meta-row:last-child { border: 0; padding-bottom: 0; }

.meta-row span {
  font-family: var(--mono);
  color: var(--muted);
  letter-spacing: 0.05em;
}

.meta-row strong {
  font-family: var(--mono);
  color: var(--acid);
  text-shadow: 0 0 8px rgba(0, 210, 255, 0.3);
}

/* ─── TASK CARDS ─── */
.task-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.task-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  min-height: 255px;
  padding: 30px;
  border: 1px solid rgba(0, 210, 255, 0.12);
  border-radius: var(--radius-md);
  --mx: 50%;
  --my: 50%;
  background: radial-gradient(circle 180px at var(--mx) var(--my), rgba(0, 210, 255, 0.06), transparent), rgba(4, 18, 43, 0.4);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  transition: all .35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

/* Card corner accent */
.task-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at top left, rgba(0, 210, 255, 0.08), transparent 70%);
  pointer-events: none;
  transition: all 0.3s ease;
}

.task-card:hover::before {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at top left, rgba(0, 210, 255, 0.12), transparent 70%);
}

/* Holographic shimmer on hover */
.task-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(0, 210, 255, 0.06) 45%, rgba(168, 85, 247, 0.04) 50%, transparent 55%);
  background-size: 250% 100%;
  background-position: 200% 0;
  pointer-events: none;
  transition: background-position 0.6s ease;
}

.task-card:hover::after {
  background-position: -50% 0;
}

.task-card:hover {
  border-color: rgba(0, 210, 255, 0.4);
  background: radial-gradient(circle 200px at var(--mx) var(--my), rgba(0, 210, 255, 0.14), transparent), rgba(5, 27, 65, 0.55);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 210, 255, 0.08), 0 0 1px rgba(0, 210, 255, 0.3);
}

.task-card.completed {
  border-color: rgba(0, 210, 255, 0.25);
  background: radial-gradient(circle 180px at var(--mx) var(--my), rgba(0, 210, 255, 0.08), transparent), rgba(4, 22, 55, 0.5);
}

.task-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.task-step {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.large-task-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: 50%;
  color: var(--acid);
  font-size: 20px;
  transition: all .3s ease;
  position: relative;
}

/* Icon ring glow on hover */
.task-card:hover .large-task-icon {
  transform: scale(1.08);
  border-color: var(--acid);
  box-shadow: 0 0 18px rgba(0, 210, 255, 0.25), inset 0 0 12px rgba(0, 210, 255, 0.05);
}

.task-card.completed .large-task-icon {
  border-color: transparent;
  background: linear-gradient(135deg, var(--acid), #00aeff, var(--purple));
  background-size: 200% 200%;
  color: #00050f;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.35);
  animation: icon-gradient 3s ease infinite;
}

@keyframes icon-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.task-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.task-info h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.task-info p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
}

.task-action { width: 100%; }

.completed-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.35);
}

.tasks-footnote {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  color: #5879a8;
  font-family: var(--mono);
  font-size: 10px;
}
.tasks-footnote span { color: var(--acid); text-shadow: 0 0 6px rgba(0, 210, 255, 0.3); }

/* ─── FOOTER ─── */
.site-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 78px;
  border-top: 1px solid rgba(0, 210, 255, 0.1);
  color: #5879a8;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
}

/* Animated footer line */
.site-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--acid), transparent);
  opacity: 0.4;
}

.footer-line { width: 30px; height: 1px; background: linear-gradient(90deg, rgba(0, 210, 255, 0.3), rgba(168, 85, 247, 0.3)); }

/* ─── MODALS ─── */
.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 3, 10, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.modal-backdrop[hidden] { display: none; }

.wallet-modal {
  position: relative;
  width: min(100%, 460px);
  padding: 38px;
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: var(--radius-lg);
  background: rgba(3, 16, 43, 0.92);
  backdrop-filter: blur(20px);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.75),
    0 0 60px rgba(0, 210, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: modal-in .4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(25px) scale(.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 17px;
  right: 19px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: all .2s ease;
}

.modal-close:hover {
  color: var(--text);
  background: rgba(0, 210, 255, 0.15);
  box-shadow: 0 0 12px rgba(0, 210, 255, 0.15);
}

.wallet-modal h2 { margin: 18px 0 11px; font-size: 32px; font-weight: 700; letter-spacing: -.05em; line-height: 1.1; }
.wallet-modal > p { max-width: 350px; color: var(--muted); font-size: 13px; font-weight: 300; line-height: 1.7; }

.wallet-modal form { margin-top: 28px; }
.wallet-modal label { display: block; margin-bottom: 9px; color: #9bb7dd; font-family: var(--mono); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }

.wallet-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: 12px;
  color: var(--acid);
  background: rgba(0, 5, 15, 0.75);
  font-family: var(--mono);
  font-size: 14px;
  transition: all .25s ease;
}

.wallet-input-wrap:focus-within {
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.12), 0 0 20px rgba(0, 210, 255, 0.08);
}

.wallet-input-wrap input {
  width: 100%;
  min-width: 0;
  height: 52px;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-family: var(--mono);
  font-size: 12px;
}

.wallet-input-wrap input::placeholder { color: #3a577c; }

.form-error { min-height: 20px; margin: 8px 0 2px !important; color: var(--orange) !important; font-family: var(--mono); font-size: 10px !important; }

.wallet-note { display: flex; align-items: center; gap: 8px; margin-top: 20px; color: #5879a8; font-family: var(--mono); font-size: 9px; }
.wallet-note span { color: var(--acid); text-shadow: 0 0 8px rgba(0, 210, 255, 0.3); }

/* ─── SUCCESS BANNER ─── */
.success-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 35px;
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: var(--radius-md);
  --mx: 50%;
  --my: 50%;
  background: radial-gradient(circle 220px at var(--mx) var(--my), rgba(0, 210, 255, 0.12), transparent), rgba(3, 18, 46, 0.8);
  box-shadow: 0 20px 50px rgba(0, 210, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: slide-down .45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Animated border glow for success */
.success-banner::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-md);
  background: conic-gradient(from 0deg, var(--acid), var(--purple), transparent, transparent, var(--acid));
  z-index: -1;
  animation: border-rotate 4s linear infinite;
  opacity: 0.5;
}

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

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

.success-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0, 210, 255, 0.3);
  background: rgba(0, 210, 255, 0.08);
  color: var(--acid);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 0 14px rgba(0, 210, 255, 0.2);
}

.success-banner h2 {
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--text);
}

.success-banner p {
  max-width: 580px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

.success-banner .share-btn {
  min-height: 48px;
  padding: 0 26px;
  box-shadow: 0 8px 24px rgba(0, 210, 255, 0.3);
}

/* ═══════════════════════════════════════
   NEW SECTIONS — FEATURES, STEPS, PROTOCOL, ROADMAP, CTA
   ═══════════════════════════════════════ */

/* Shared Section Styling */
.section-features,
.section-howitworks,
.section-protocol,
.section-roadmap,
.section-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5.5vw;
}

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

.section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 16px;
  background: linear-gradient(135deg, #ffffff 30%, #c9ddf7 60%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title em {
  color: transparent;
  -webkit-text-stroke: 1.2px var(--acid);
  font-style: normal;
  filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.25));
}

.section-subtitle {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

/* ─── FEATURES GRID ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 32px;
  border: 1px solid rgba(0, 210, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(4, 18, 43, 0.4);
  backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.06), transparent 70%);
  pointer-events: none;
  transition: all 0.4s ease;
}

/* Holographic shimmer on feature cards */
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(0, 210, 255, 0.05) 45%, rgba(168, 85, 247, 0.04) 50%, transparent 55%);
  background-size: 250% 100%;
  background-position: 200% 0;
  pointer-events: none;
  transition: background-position 0.6s ease;
}

.feature-card:hover::after {
  background-position: -50% 0;
}

.feature-card:hover {
  border-color: rgba(0, 210, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 210, 255, 0.06);
}

.feature-card:hover::before {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.1), transparent 70%);
}

.feature-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.feature-icon {
  font-size: 26px;
  color: var(--acid);
  filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.3));
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

.feature-tag {
  display: inline-block;
  margin-top: 18px;
  padding: 4px 12px;
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: 20px;
  background: rgba(0, 210, 255, 0.05);
  color: var(--acid);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-tag {
  background: rgba(0, 210, 255, 0.12);
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.15);
}

/* ─── HOW IT WORKS STEPS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.step-card {
  padding: 36px 32px;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  background: rgba(0, 210, 255, 0.02);
}

.step-number {
  font-family: var(--mono);
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--acid), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.2));
  transition: transform 0.3s ease;
}

.step-card:hover .step-number {
  transform: scale(1.1);
}

.step-line {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 60%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, transparent, rgba(0, 210, 255, 0.2), transparent);
}

.step-card:last-child .step-line { display: none; }

.step-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

/* ─── PROTOCOL STATS ─── */
.section-protocol {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.protocol-stat-card {
  padding: 30px 24px;
  border: 1px solid rgba(0, 210, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(4, 18, 43, 0.35);
  backdrop-filter: blur(8px);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.protocol-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--acid), var(--purple));
  transition: width 0.4s ease;
}

.protocol-stat-card:hover::after { width: 60%; }

.protocol-stat-card:hover {
  border-color: rgba(0, 210, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.06);
}

.protocol-stat-icon {
  font-size: 22px;
  color: var(--acid);
  margin-bottom: 14px;
  filter: drop-shadow(0 0 6px rgba(0, 210, 255, 0.3));
  transition: transform 0.3s ease;
}

.protocol-stat-card:hover .protocol-stat-icon {
  transform: scale(1.2);
}

.protocol-stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  text-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
}

.protocol-stat-unit {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--acid);
  margin-top: 2px;
  text-shadow: 0 0 6px rgba(0, 210, 255, 0.3);
}

.protocol-stat-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

/* ─── ROADMAP TIMELINE ─── */
.roadmap-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line across all phases */
.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--acid), rgba(0, 210, 255, 0.15));
  z-index: 0;
}

.roadmap-item {
  padding: 40px 24px 30px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.roadmap-item:hover {
  background: rgba(0, 210, 255, 0.02);
}

/* Phase dot indicator */
.roadmap-item::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(0, 210, 255, 0.3);
  background: var(--bg);
  transition: all 0.3s ease;
}

.roadmap-item.active::before {
  border-color: var(--acid);
  background: var(--acid);
  box-shadow: 0 0 15px var(--acid), 0 0 30px rgba(0, 210, 255, 0.3);
}

.roadmap-item:hover::before {
  border-color: var(--acid);
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}

.roadmap-phase {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--acid);
  margin-bottom: 14px;
  text-shadow: 0 0 6px rgba(0, 210, 255, 0.25);
}

.roadmap-item h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

.roadmap-item p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
}

.roadmap-status {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

.roadmap-status.live {
  color: var(--acid);
  text-shadow: 0 0 8px rgba(0, 210, 255, 0.4);
  animation: badge-blink 2s ease-in-out infinite;
}

/* ─── CTA SECTION ─── */
.section-cta {
  padding-bottom: 40px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 60px 40px;
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 0%, rgba(0, 210, 255, 0.08), transparent 60%), rgba(3, 16, 43, 0.6);
  backdrop-filter: blur(16px);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--acid), var(--purple), transparent);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

.cta-badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid rgba(0, 210, 255, 0.25);
  background: rgba(0, 210, 255, 0.06);
  color: var(--acid);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  animation: badge-blink 2s ease-in-out infinite;
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-box p {
  max-width: 480px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 820px) {
  .app-shell { padding: 0 6vw; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-meta { display: none; }
  .hero { grid-template-columns: 1fr; gap: 20px; padding-top: 50px; padding-bottom: 50px; }
  h1 { max-width: 620px; font-size: clamp(3.2rem, 10vw, 5.5rem); }
  .hero-visual { min-height: 470px; }
  .visual-orbit { width: min(76vw, 460px); height: min(76vw, 460px); }
  .tasks-heading { display: block; }
  .tasks-heading h1 { white-space: normal; max-width: 100%; }
  .heading-side { margin-top: 24px; }
  .tasks-dashboard { grid-template-columns: 1fr; }
  .task-list { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .step-card .step-line { display: none; }
  .protocol-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .roadmap-timeline::before {
    top: 0;
    bottom: 0;
    left: 12px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .roadmap-item::before {
    top: 40px;
    left: 6px;
  }
  .roadmap-item {
    padding-left: 40px;
  }
  .section-features,
  .section-howitworks,
  .section-protocol,
  .section-roadmap,
  .section-cta {
    padding: 50px 6vw;
  }
  .social-proof { gap: 24px; flex-wrap: wrap; }
  .cursor-glow { display: none; }
}

@media (max-width: 520px) {
  .site-header { height: 75px; }
  .header-link { font-size: 9px; }
  .hero { min-height: auto; padding: 40px 0 30px; }
  .hero-copy { margin-top: 23px; font-size: 15px; line-height: 1.7; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; margin-top: 30px; }
  .hero-note { margin-left: 5px; }
  .hero-visual { min-height: 375px; margin-top: 20px; }
  .visual-orbit { min-width: 290px; min-height: 290px; }
  .orbit-card { width: min(100%, 340px); padding: 22px; }
  .orbit-card h2 { margin: 38px 0 20px; font-size: 24px; }
  .floating-tag { right: 0; bottom: 10%; }
  .tasks-page { padding: 56px 0 68px; }
  .tasks-heading h1 { font-size: 3.2rem; }
  .dashboard-progress-card { flex-direction: column; gap: 18px; text-align: center; align-items: center; }
  .progress-info { align-items: center; }
  .task-card { padding: 24px; min-height: auto; gap: 15px; }
  .site-footer { justify-content: space-between; font-size: 8px; }
  .site-footer span:last-child { display: none; }
  .wallet-modal { padding: 28px 23px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .step-card .step-line { display: none; }
  .protocol-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  .cta-box { padding: 30px 24px; }
  .cta-box h2 { font-size: 1.8rem; }
  .protocol-stat-value { font-size: 24px; }
  .step-number { font-size: 36px; }
  .cta-box { padding: 35px 20px; }
  .cta-box h2 { font-size: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ═══════════════════════════════════════
   GLOBAL TIMER BANNER
   ═══════════════════════════════════════ */
.global-timer-banner {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(6, 27, 65, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 74, 118, 0.3);
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 74, 118, 0.15);
  animation: banner-float 4s ease-in-out infinite;
}

.timer-icon {
  font-size: 18px;
  animation: pulse-glow 2s infinite alternate;
}

.timer-text {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
}

#main-countdown {
  color: var(--orange);
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 16px;
  text-shadow: 0 0 12px rgba(255, 74, 118, 0.5);
  margin-left: 6px;
}

@keyframes banner-float {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

@media (max-width: 768px) {
  .global-timer-banner {
    width: 90%;
    bottom: 25px;
    padding: 12px 20px;
    justify-content: center;
  }
  .timer-text { font-size: 12px; }
  #main-countdown { font-size: 14px; }
}
