/* ═══════════════════════════════════════════
   NEXRA THEME — MAIN CSS
═══════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --lime:       #c8f500;
  --lime2:      #9dcc00;
  --lime-dim:   rgba(200,245,0,0.08);
  --black:      #060606;
  --dark:       #0c0c0c;
  --gray:       #141414;
  --border:     rgba(255,255,255,0.06);
  --border-lime:rgba(200,245,0,0.18);
  --white:      #f0f0eb;
  --muted:      rgba(240,240,235,0.38);
}

html { scroll-behavior: smooth; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--lime); }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

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

/* ── CURSOR ── */
.cursor {
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(200,245,0,0.35);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
body.hovering .cursor-ring { width: 48px; height: 48px; border-color: rgba(200,245,0,0.55); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(6,6,6,0.92);
  backdrop-filter: blur(16px);
  padding: 16px 60px;
  border-color: var(--border);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 5px;
  color: var(--lime); text-decoration: none;
}
.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-links { display: flex; gap: 44px; list-style: none; margin-right: 40px; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--lime); transition: width 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: transparent; border: 1px solid var(--border-lime);
  color: var(--lime); padding: 11px 26px; border-radius: 2px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; text-decoration: none; transition: all 0.25s;
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--lime); transform: translateX(-100%);
  transition: transform 0.3s ease; z-index: -1;
}
.nav-cta:hover { color: var(--black); }
.nav-cta:hover::before { transform: translateX(0); }
.nav-toggle { display: none; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--lime); color: var(--black);
  padding: 15px 34px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700; text-decoration: none;
  border-radius: 2px; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 12px;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--lime2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,245,0,0.22); }
.btn-primary.btn-large { padding: 18px 44px; font-size: 12px; }
.btn-arrow {
  width: 14px; height: 14px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg); flex-shrink: 0;
  transition: transform 0.2s;
}
.btn-primary:hover .btn-arrow { transform: rotate(45deg) translate(3px,-3px); }
.btn-text {
  color: var(--muted); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 500; text-decoration: none;
  display: inline-flex; align-items: center; gap: 14px; transition: color 0.2s;
}
.btn-text-circle {
  width: 38px; height: 38px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s;
}
.btn-text:hover { color: var(--white); }
.btn-text:hover .btn-text-circle { border-color: rgba(200,245,0,0.4); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 56px 1fr 44%;
  position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px; z-index: 0;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, black 0%, transparent 70%);
}
.hero-glow {
  position: absolute; right: -10%; top: -15%;
  width: 70vw; height: 110vh;
  background: radial-gradient(ellipse at 65% 35%, rgba(200,245,0,0.12) 0%, rgba(200,245,0,0.05) 30%, transparent 65%);
  z-index: 0; animation: glowPulse 8s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

/* Sidebar */
.hero-sidebar {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 28px; padding: 120px 0 60px;
  border-right: 1px solid var(--border); z-index: 2;
}
.sidebar-text {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: 10px; letter-spacing: 3px; color: rgba(240,240,235,0.2);
  font-weight: 300; font-family: 'DM Mono', monospace;
}
.sidebar-pulse {
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--lime), transparent);
  position: relative; overflow: hidden;
}
.sidebar-pulse::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: white;
  animation: pulseScan 2.5s ease-in-out infinite;
}
@keyframes pulseScan {
  0% { top: -100%; opacity: 0; } 50% { opacity: 1; } 100% { top: 100%; opacity: 0; }
}
.sidebar-links {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: auto; padding-bottom: 48px;
}
.sidebar-links a {
  width: 30px; height: 30px; border: 1px solid var(--border); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 9px; font-family: 'DM Mono', monospace;
  text-decoration: none; transition: all 0.25s;
}
.sidebar-links a:hover { border-color: var(--lime); color: var(--lime); transform: translateX(4px); }

/* Hero Content */
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 130px 70px 90px 60px; z-index: 2; position: relative;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 36px;
  opacity: 0; animation: revealUp 0.7s 0.1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-tag-line { width: 28px; height: 1px; background: var(--lime); }
.hero-tag-text {
  font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(240,240,235,0.38); font-weight: 400;
}
.hero-headline { font-family: 'Bebas Neue', sans-serif; line-height: 0.9; letter-spacing: 1px; margin-bottom: 44px; }
.headline-line { display: block; overflow: hidden; }
.headline-inner { display: block; transform: translateY(100%); animation: lineReveal 0.9s cubic-bezier(0.16,1,0.3,1) forwards; }
.headline-line:nth-child(1) .headline-inner { animation-delay: 0.25s; }
.headline-line:nth-child(2) .headline-inner { animation-delay: 0.38s; }
.headline-line:nth-child(3) .headline-inner { animation-delay: 0.51s; }
@keyframes lineReveal { to { transform: translateY(0); } }
.h-solid { font-size: clamp(68px, 7.5vw, 115px); color: var(--white); }
.h-outline { font-size: clamp(68px, 7.5vw, 115px); color: transparent; -webkit-text-stroke: 1px rgba(240,240,235,0.2); }
.h-accent { font-size: clamp(68px, 7.5vw, 115px); color: var(--lime); }
.hero-desc {
  max-width: 360px; font-size: 14px; line-height: 1.8; color: var(--muted); font-weight: 300;
  margin-bottom: 52px; opacity: 0; animation: revealUp 0.7s 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-actions {
  display: flex; gap: 20px; align-items: center;
  opacity: 0; animation: revealUp 0.7s 0.85s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Visual */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2; padding-top: 80px;
}
.ring-wrap { position: absolute; display: flex; align-items: center; justify-content: center; }
.vring { position: absolute; border-radius: 50%; border: 1px solid var(--border-lime); }
.vring-1 { width: 380px; height: 380px; animation: spin 22s linear infinite; }
.vring-2 { width: 500px; height: 500px; border-color: rgba(200,245,0,0.07); animation: spin 36s linear infinite reverse; }
.vring-3 { width: 630px; height: 630px; border-color: rgba(200,245,0,0.04); animation: spin 50s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit-node { position: absolute; width: 6px; height: 6px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 10px var(--lime), 0 0 20px rgba(200,245,0,0.4); }
.node-top    { top: 0; left: 50%; transform: translate(-50%,-50%); }
.node-right  { right: 0; top: 50%; transform: translate(50%,-50%); }
.node-bottom { bottom: 0; left: 50%; transform: translate(-50%,50%); }

/* Main card */
.card-stack { position: relative; z-index: 5; }
.ghost-1 { position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); width: 268px; height: 60px; background: rgba(200,245,0,0.03); border: 1px solid rgba(200,245,0,0.1); border-radius: 10px; z-index: 3; }
.ghost-2 { position: absolute; bottom: -32px; left: 50%; transform: translateX(-50%); width: 238px; height: 50px; background: rgba(200,245,0,0.015); border: 1px solid rgba(200,245,0,0.06); border-radius: 10px; z-index: 2; }
.main-card {
  width: 300px; background: rgba(14,14,14,0.96);
  border: 1px solid var(--border-lime); border-radius: 10px; padding: 24px;
  backdrop-filter: blur(30px); box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  z-index: 5; position: relative; animation: cardFloat 5s ease-in-out infinite;
}
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.card-thumb { width: 48px; height: 48px; background: var(--gray); border-radius: 6px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--muted); }
.card-info { flex: 1; }
.card-name { font-size: 11px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.card-sub { font-size: 10px; color: var(--muted); font-family: 'DM Mono', monospace; }
.card-badge { font-size: 9px; background: var(--lime-dim); color: var(--lime); border: 1px solid rgba(200,245,0,0.2); padding: 4px 9px; border-radius: 2px; font-family: 'DM Mono', monospace; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
.progress-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.progress-label span { font-size: 9px; color: var(--muted); font-family: 'DM Mono', monospace; letter-spacing: 1px; text-transform: uppercase; }
.progress-label .pct { color: var(--lime); }
.progress-track { height: 2px; background: var(--border); border-radius: 1px; margin-bottom: 18px; overflow: hidden; }
.progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--lime2), var(--lime)); border-radius: 1px; transition: width 0.1s linear; }
.card-fields { display: flex; flex-direction: column; gap: 8px; }
.field-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; background: rgba(255,255,255,0.02); border-radius: 4px; border: 1px solid var(--border); }
.field-key { font-size: 9px; color: var(--muted); font-family: 'DM Mono', monospace; letter-spacing: 1px; text-transform: uppercase; width: 44px; flex-shrink: 0; }
.field-bar { flex: 1; height: 5px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.field-fill { height: 100%; background: rgba(200,245,0,0.3); border-radius: 3px; animation: fieldAnim 3s ease-in-out infinite alternate; }
.field-item:nth-child(1) .field-fill { width: 80%; animation-delay: 0s; }
.field-item:nth-child(2) .field-fill { width: 60%; animation-delay: 0.3s; }
.field-item:nth-child(3) .field-fill { width: 90%; animation-delay: 0.6s; }
@keyframes fieldAnim { 0% { opacity: 0.4; } 100% { opacity: 1; } }

/* Float badges */
.float-badge { position: absolute; background: var(--gray); border: 1px solid var(--border-lime); border-radius: 6px; padding: 12px 16px; z-index: 6; backdrop-filter: blur(20px); }
.float-badge-val { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 1px; color: var(--lime); display: block; line-height: 1; margin-bottom: 2px; }
.float-badge-label { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-family: 'DM Mono', monospace; }
.badge-tr { top: 18%; right: 2%; animation: badgeFloat 4s ease-in-out infinite; }
.badge-bl { bottom: 22%; left: 0; animation: badgeFloat 3.5s ease-in-out infinite 0.8s; }
@keyframes badgeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ── TICKER ── */
.ticker { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; height: 40px; display: flex; align-items: center; background: var(--dark); }
.ticker-track { display: flex; animation: tickerMove 28s linear infinite; white-space: nowrap; }
.ticker-item { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(240,240,235,0.18); padding: 0 48px; font-family: 'DM Mono', monospace; display: flex; align-items: center; gap: 48px; }
.ticker-item::after { content: ''; width: 4px; height: 4px; background: var(--lime); border-radius: 50%; flex-shrink: 0; }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS STRIP ── */
.stats-strip { display: flex; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-item { flex: 1; padding: 64px 40px; border-right: 1px solid var(--border); text-align: center; position: relative; overflow: hidden; transition: background 0.4s; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--lime-dim); }
.stat-item::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--lime); transform: scaleX(0); transition: transform 0.4s; }
.stat-item:hover::after { transform: scaleX(1); }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 60px; letter-spacing: 1px; color: var(--lime); line-height: 1; }
.stat-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); font-family: 'DM Mono', monospace; }

/* ── SECTION BASE ── */
.section { padding: 130px 100px; position: relative; }
.section-eyebrow { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--lime); margin-bottom: 20px; display: flex; align-items: center; gap: 14px; font-family: 'DM Mono', monospace; }
.section-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--lime); flex-shrink: 0; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 5.5vw, 80px); line-height: 0.92; letter-spacing: 1.5px; }
.section-title strong { color: var(--white); font-weight: 400; }
.section-title .outline { color: transparent; -webkit-text-stroke: 1px rgba(240,240,235,0.18); }
.section-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 80px; }
.section-desc { font-size: 14px; line-height: 1.8; color: var(--muted); font-weight: 300; }

/* ── ABOUT ── */
.about-section { border-top: 1px solid var(--border); }
.about-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 80px; }
.about-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(42px,4.5vw,68px); line-height: 0.95; letter-spacing: 1px; margin-top: 20px; }
.about-title strong { color: var(--white); font-weight: 400; display: block; }
.about-title span { color: transparent; -webkit-text-stroke: 1px rgba(240,240,235,0.2); font-size: clamp(28px,3vw,44px); }
.about-desc { font-size: 14px; line-height: 1.8; color: var(--muted); font-weight: 300; margin-bottom: 48px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.about-stat { display: flex; flex-direction: column; gap: 6px; padding: 24px; border: 1px solid var(--border); border-radius: 4px; transition: border-color 0.3s, background 0.3s; }
.about-stat:hover { border-color: var(--border-lime); background: var(--lime-dim); }
.about-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 44px; color: var(--lime); line-height: 1; }
.about-stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-family: 'DM Mono', monospace; }
.about-bottom { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; border-top: 1px solid var(--border); }
.about-col { padding: 48px; border-right: 1px solid var(--border); }
.about-col:last-child { border-right: none; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.about-list li { font-size: 15px; font-weight: 600; color: var(--white); padding: 20px 0; border-bottom: 1px solid var(--border); cursor: default; transition: color 0.2s, padding-left 0.3s; }
.about-list li:hover { color: var(--lime); padding-left: 8px; }
.about-col-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.about-col-desc { font-size: 13px; line-height: 1.8; color: var(--muted); font-weight: 300; }

/* ── MARQUEE ── */
.marquee-section { overflow: hidden; padding: 40px 0; background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-track { display: flex; align-items: center; animation: marqueeMove 30s linear infinite; white-space: nowrap; }
.marquee-item { font-family: 'Bebas Neue', sans-serif; font-size: 42px; letter-spacing: 3px; color: rgba(240,240,235,0.08); padding: 0 32px; flex-shrink: 0; }
.marquee-highlight { color: var(--lime); opacity: 0.8; }
.marquee-dot { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; opacity: 0.4; flex-shrink: 0; }
@keyframes marqueeMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── FEATURES ── */
.features-section { border-top: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--border); }
.feature-cell { padding: 52px 44px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; transition: background 0.4s, opacity 0.6s, transform 0.6s; opacity: 0; transform: translateY(20px); }
.feature-cell.visible { opacity: 1; transform: translateY(0); }
.feature-cell:nth-child(3n) { border-right: none; }
.feature-cell:nth-child(4), .feature-cell:nth-child(5), .feature-cell:nth-child(6) { border-bottom: none; }
.feature-cell::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--lime), transparent); transform: translateX(-100%); transition: transform 0.5s; }
.feature-cell:hover { background: rgba(200,245,0,0.025); }
.feature-cell:hover::before { transform: translateX(0); }
.feature-num { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; color: rgba(200,245,0,0.25); margin-bottom: 28px; }
.feature-icon-wrap { width: 44px; height: 44px; border: 1px solid var(--border-lime); border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-bottom: 28px; color: var(--lime); transition: background 0.3s, border-color 0.3s; }
.feature-cell:hover .feature-icon-wrap { background: var(--lime-dim); border-color: rgba(200,245,0,0.4); }
.feature-name { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 14px; color: var(--white); }
.feature-desc { font-size: 13px; line-height: 1.8; color: var(--muted); font-weight: 300; }

/* ── HOW IT WORKS ── */
.how-section { padding: 130px 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; border-top: 1px solid var(--border); }
.how-desc { font-size: 14px; color: var(--muted); line-height: 1.75; margin-top: 20px; margin-bottom: 0; }
.steps { margin-top: 40px; }
.step { display: flex; gap: 32px; padding: 32px 0; border-bottom: 1px solid var(--border); opacity: 0; transform: translateX(-20px); transition: opacity 0.6s, transform 0.6s; }
.step.visible { opacity: 1; transform: translateX(0); }
.step:first-child { border-top: 1px solid var(--border); }
.step-number { font-family: 'Bebas Neue', sans-serif; font-size: 52px; line-height: 1; color: rgba(200,245,0,0.1); flex-shrink: 0; width: 56px; transition: color 0.3s; }
.step:hover .step-number { color: rgba(200,245,0,0.4); }
.step-content { padding-top: 6px; }
.step-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.75; font-weight: 300; }
.how-right { position: sticky; top: 120px; }
.terminal { background: rgba(8,8,8,0.98); border: 1px solid var(--border-lime); border-radius: 6px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.6); }
.terminal-titlebar { background: rgba(255,255,255,0.02); padding: 12px 18px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid var(--border); }
.tbar-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.tbar-title { font-size: 10px; color: rgba(240,240,235,0.18); font-family: 'DM Mono', monospace; margin-left: 8px; }
.terminal-body { padding: 24px 28px; font-family: 'DM Mono', monospace; font-size: 11.5px; line-height: 2; }
.t-prompt { color: rgba(240,240,235,0.2); }
.t-cmd { color: var(--lime); }
.t-arg { color: rgba(240,240,235,0.55); }
.t-ok { color: rgba(200,245,0,0.5); }
.t-label { color: rgba(240,240,235,0.25); }
.t-val { color: var(--white); }
.t-success { color: var(--lime); }
.t-muted { color: rgba(240,240,235,0.2); }
.t-cursor { display: inline-block; width: 7px; height: 13px; background: var(--lime); vertical-align: -2px; animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ── PRICING ── */
.pricing-section { background: var(--dark); border-top: 1px solid var(--border); }
.packages-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; border: 1px solid var(--border); background: var(--border); }
.pkg-card { background: var(--dark); padding: 40px 32px; position: relative; transition: background 0.3s, opacity 0.6s, transform 0.6s; opacity: 0; transform: translateY(24px); }
.pkg-card.visible { opacity: 1; transform: translateY(0); }
.pkg-card:hover { background: rgba(200,245,0,0.02); }
.pkg-card.featured { background: rgba(200,245,0,0.05); }
.pkg-card.featured:hover { background: rgba(200,245,0,0.08); }
.pkg-tag { display: inline-block; background: var(--lime); color: var(--black); font-size: 8px; padding: 4px 12px; border-radius: 2px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; font-family: 'DM Mono', monospace; }
.pkg-spacer { height: 24px; margin-bottom: 20px; }
.pkg-name { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 2px; color: var(--lime); margin-bottom: 12px; }
.pkg-price { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; }
.pkg-period { font-size: 12px; font-weight: 400; color: var(--muted); }
.pkg-desc { font-size: 12px; color: var(--muted); margin-top: 12px; margin-bottom: 28px; line-height: 1.65; }
.pkg-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.pkg-list { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.pkg-list li { font-size: 12px; color: var(--muted); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.pkg-list li::before { content: ''; width: 16px; height: 1px; background: rgba(200,245,0,0.5); flex-shrink: 0; margin-top: 8px; }
.pkg-btn { width: 100%; padding: 12px; border: 1px solid var(--border-lime); border-radius: 2px; background: transparent; color: var(--lime); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; cursor: pointer; transition: all 0.25s; font-family: 'DM Mono', monospace; position: relative; overflow: hidden; }
.pkg-btn::before { content: ''; position: absolute; inset: 0; background: var(--lime); transform: scaleY(0); transform-origin: bottom; transition: transform 0.3s ease; z-index: 0; }
.pkg-btn span { position: relative; z-index: 1; }
.pkg-btn:hover { color: var(--black); }
.pkg-btn:hover::before { transform: scaleY(1); }
.pkg-card.featured .pkg-btn { background: var(--lime); color: var(--black); }
.pkg-card.featured .pkg-btn::before { display: none; }
.pkg-card.featured .pkg-btn:hover { opacity: 0.85; }

/* ── CTA ── */
.cta-section { padding: 130px 100px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 80px; border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; left: -10%; bottom: -20%; width: 60vw; height: 60vh; background: radial-gradient(ellipse, rgba(200,245,0,0.07) 0%, transparent 65%); pointer-events: none; }
.cta-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px,6.5vw,96px); letter-spacing: 1px; line-height: 0.9; }
.cta-title .accent { color: var(--lime); }
.cta-desc { margin-top: 24px; font-size: 14px; color: var(--muted); max-width: 420px; line-height: 1.75; font-weight: 300; }
.cta-right { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; }
.cta-arrow-btn { width: 64px; height: 64px; border: 1px solid var(--border-lime); border-radius: 2px; display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--lime); transition: all 0.3s; }
.cta-arrow-btn:hover { background: var(--lime); color: var(--black); transform: rotate(-45deg); }

/* ── FOOTER ── */
footer { padding: 40px 100px; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 5px; color: var(--lime); }
.footer-links { display: flex; gap: 36px; }
.footer-links a { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); text-decoration: none; font-family: 'DM Mono', monospace; transition: color 0.2s; }
.footer-links a:hover { color: var(--lime); }
.footer-copy { font-size: 11px; color: rgba(240,240,235,0.15); font-family: 'DM Mono', monospace; }

/* ── REVEAL ANIMATION ── */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  nav, nav.scrolled { padding: 18px 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero-sidebar { display: none; }
  .hero-content { padding: 130px 32px 60px; }
  .hero-visual { min-height: 450px; padding-top: 0; padding-bottom: 60px; }
  .section, .pricing-section, .cta-section, footer { padding: 80px 32px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-cell:nth-child(2n) { border-right: none; }
  .feature-cell:nth-child(3n) { border-right: 1px solid var(--border); }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .how-section { grid-template-columns: 1fr; padding: 80px 32px; gap: 60px; }
  .how-right { position: static; }
  .cta-section { grid-template-columns: 1fr; padding: 80px 32px; }
  .cta-right { align-items: flex-start; flex-direction: row; }
  .about-top { grid-template-columns: 1fr; gap: 40px; }
  .about-bottom { grid-template-columns: 1fr; }
  .about-col { border-right: none; border-bottom: 1px solid var(--border); }
  .section-header { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .stats-strip { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-bottom: 1px solid var(--border); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .vring-2, .vring-3 { display: none; }
}
