body {
  background: red !important;
  color: white !important;
  font-family: Arial, sans-serif !important;
}
:root {
  --bg: #040507;
  --panel: rgba(12, 15, 21, 0.78);
  --panel2: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.12);
  --text: #f8fbff;
  --muted: #c6ccda;
  --green: #22ff88;
  --green2: #b7ff43;
  --yellow: #f1ff5d;
  --orange: #ff7a18;
  --pink: #ff43ce;
  --blue: #2ecbff;
  --shadow: 0 24px 70px rgba(0,0,0,.45);
}

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

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, rgba(255,67,206,.08), transparent 18%),
              radial-gradient(circle at 80% 20%, rgba(46,203,255,.08), transparent 18%),
              radial-gradient(circle at 50% 75%, rgba(34,255,136,.08), transparent 24%),
              #05070a;
  overflow-x: hidden;
}

#bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -4;
  opacity: .08;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.12) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,.08) 0 1px, transparent 1px);
  background-size: 18px 18px, 24px 24px;
}

.glow {
  position: fixed;
  inset: auto;
  z-index: -3;
  pointer-events: none;
  filter: blur(90px);
  opacity: .16;
  border-radius: 999px;
}

.glow-1 { width: 420px; height: 420px; top: 10%; left: 8%; background: var(--pink); }
.glow-2 { width: 420px; height: 420px; top: 12%; right: 8%; background: var(--blue); }
.glow-3 { width: 520px; height: 520px; bottom: -5%; left: 30%; background: var(--green); }

.alert-bar {
  overflow: hidden;
  background: linear-gradient(90deg, #ff3d3d, #ff9d00, #ffe600, #ff9d00, #ff3d3d);
  color: #140400;
  font-weight: 900;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.alert-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  padding: 10px 0;
  animation: tickerMove 20s linear infinite;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 32px;
  backdrop-filter: blur(14px);
  background: rgba(4,5,7,.6);
  border-bottom: 1px solid var(--border);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 20px rgba(34,255,136,.35);
}

.logo-text {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--yellow);
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.buy-btn {
  padding: 14px 22px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--green), var(--green2));
  color: #041108 !important;
  box-shadow: 0 0 24px rgba(34,255,136,.35);
  animation: pulseBtn 1.6s infinite;
}

.hero,
.ticker-wrap,
.section,
.cta-section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 42px 0 24px;
}

.eyebrow {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,67,206,.08);
  border: 1px solid rgba(255,67,206,.22);
  color: #ffd8f6;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-title {
  margin: 18px 0 14px;
  line-height: .9;
  font-size: clamp(3rem, 6.4vw, 6rem);
  font-weight: 900;
  letter-spacing: -.05em;
}

.hero-title span { display: block; }

.hero-title .highlight {
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glitch-title {
  position: relative;
}

.glitch-title::before,
.glitch-title::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .18;
}

.glitch-title::before {
  transform: translate(3px, -2px);
  background: linear-gradient(90deg, transparent, rgba(46,203,255,.35), transparent);
}

.glitch-title::after {
  transform: translate(-3px, 2px);
  background: linear-gradient(90deg, transparent, rgba(255,67,206,.3), transparent);
}

.hero-sub {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.center-buttons { justify-content: center; }

.btn {
  min-height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.green {
  background: linear-gradient(90deg, var(--green), var(--green2));
  color: #041108;
  box-shadow: 0 0 28px rgba(34,255,136,.35);
}

.dark {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: #8bc4ff;
}

.pulse { animation: pulseBtn 1.6s infinite; }

@keyframes pulseBtn {
  0% { transform: scale(1); box-shadow: 0 0 14px rgba(34,255,136,.28); }
  50% { transform: scale(1.06); box-shadow: 0 0 36px rgba(34,255,136,.55); }
  100% { transform: scale(1); box-shadow: 0 0 14px rgba(34,255,136,.28); }
}

.stat-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stat-card {
  min-width: 160px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--panel2);
  border: 1px solid var(--border);
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.stat-card strong {
  font-size: 1rem;
  font-weight: 900;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(34,255,136,.14), transparent 70%);
  box-shadow: 0 0 35px rgba(34,255,136,.35), 0 0 90px rgba(34,255,136,.18);
  animation: pulseGlow 2.4s infinite ease-in-out;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(34,255,136,.45);
  box-shadow: 0 0 24px rgba(34,255,136,.4);
  pointer-events: none;
}

.hero-image {
  position: relative;
  z-index: 2;
  width: 112%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
}

.burst {
  position: absolute;
  inset: 50%;
  width: 0;
  height: 0;
  z-index: 1;
  opacity: .5;
}

.burst::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    conic-gradient(from 0deg,
      rgba(34,255,136,.28),
      rgba(241,255,93,.18),
      rgba(255,122,24,.2),
      rgba(255,67,206,.18),
      rgba(46,203,255,.18),
      rgba(34,255,136,.28));
  mask: radial-gradient(circle, transparent 28%, black 29%, black 54%, transparent 56%);
  animation: spin 14s linear infinite;
}

.burst-2::before { width: 380px; height: 380px; animation-duration: 20s; opacity: .55; }
.burst-3::before { width: 440px; height: 440px; animation-duration: 28s; opacity: .35; }

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 30px rgba(34,255,136,.35), 0 0 70px rgba(34,255,136,.16); }
  50% { box-shadow: 0 0 55px rgba(34,255,136,.62), 0 0 110px rgba(34,255,136,.28); }
  100% { box-shadow: 0 0 30px rgba(34,255,136,.35), 0 0 70px rgba(34,255,136,.16); }
}

.ticker-wrap { padding-bottom: 28px; }

.ticker {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(34,255,136,.22);
  background: linear-gradient(90deg,
    rgba(34,255,136,.10),
    rgba(241,255,93,.08),
    rgba(255,122,24,.08),
    rgba(255,67,206,.08),
    rgba(46,203,255,.08)
  );
  box-shadow: var(--shadow);
}

.ticker-track,
.alert-track {
  display: flex;
  gap: 30px;
  white-space: nowrap;
  padding: 14px 0;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: tickerMove 24s linear infinite;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 12px 0 30px;
}

.section-head {
  text-align: center;
  margin-bottom: 18px;
}

.section-kicker {
  color: #ffd8f6;
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.meter-card,
.metrics-card,
.terminal-card,
.card,
.info-box,
.cta-inner {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 26px;
}

.meter-card,
.metrics-card,
.info-box,
.terminal-card {
  padding: 22px;
}

.meter-card h3,
.metrics-card h3,
.info-box h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.meter {
  margin-top: 8px;
}

.meter-labels {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 10px;
}

.meter-bar {
  position: relative;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38404b, #7d8b97, var(--yellow), var(--green), #29ff5a);
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0,0,0,.25);
}

.meter-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.16) 50%, transparent 100%);
  animation: sweep 2s linear infinite;
}

@keyframes sweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.meter-needle {
  position: absolute;
  top: -12px;
  right: 2%;
  width: 10px;
  height: 46px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 20px rgba(255,255,255,.6), 0 0 28px rgba(34,255,136,.45);
}

.meter-note {
  margin: 14px 0 0;
  color: var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-box {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
}

.metric-box span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.metric-box strong {
  font-size: 1.2rem;
  font-weight: 900;
}

.terminal-card {
  margin-bottom: 18px;
  overflow: hidden;
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.red-dot { background: #ff5f57; }
.yellow-dot { background: #febc2e; }
.green-dot { background: #28c840; }

.terminal-title {
  margin-left: 8px;
  font-size: .82rem;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 900;
}

.terminal-body {
  font-family: monospace;
  color: #bfffd0;
  line-height: 1.9;
  padding-top: 14px;
  min-height: 170px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  position: relative;
  padding: 22px;
}

.gold { background: linear-gradient(180deg, rgba(241,255,93,.08), rgba(12,15,21,.78)); }
.red { background: linear-gradient(180deg, rgba(255,122,24,.08), rgba(12,15,21,.78)); }
.purple { background: linear-gradient(180deg, rgba(166,94,255,.10), rgba(12,15,21,.78)); }

.tier-badge {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.35rem;
  background: rgba(255,255,255,.08);
  margin-bottom: 14px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.card li {
  font-weight: 700;
}

.card li::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 900;
}

.lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-box p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.ca-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(0,0,0,.32);
  border: 1px solid var(--border);
}

.ca-box code {
  overflow: auto;
  white-space: nowrap;
  color: #d8ffb8;
  font-family: monospace;
}

.ca-box button {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  border: none;
  font-weight: 900;
  background: linear-gradient(90deg, var(--green), var(--green2));
  color: #041108;
  cursor: pointer;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud span {
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cta-section {
  padding: 20px 0 46px;
}

.cta-inner {
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(34,255,136,.14), transparent 28%),
    linear-gradient(135deg, rgba(255,67,206,.12), transparent 28%, rgba(46,203,255,.12) 68%, transparent 80%);
  pointer-events: none;
}

.cta-kicker {
  color: #ffd8f6;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.cta-inner h2,
.cta-inner p,
.cta-inner .buttons {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 900;
}

.cta-inner p {
  color: var(--muted);
  margin: 0 0 18px;
}

@media (max-width: 1100px) {
  .hero,
  .dashboard-grid,
  .cards,
  .lower {
    grid-template-columns: 1fr;
  }

  .hero-right {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu {
    gap: 16px;
  }

  .buttons,
  .stat-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn,
  .buy-btn {
    width: 100%;
  }

  .ca-box {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    width: 220px;
    height: 220px;
  }

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

/* ===== WHY SECTION ===== */
.why {
  padding: 80px 40px;
  text-align: center;
}

.why-title {
  font-size: 42px;
  margin-bottom: 50px;
  color: #00ff88;
  text-shadow: 0 0 20px #00ff88;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD */
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,255,136,0.2);
  padding: 25px;
  border-radius: 16px;
  text-align: left;

  transition: all 0.3s ease;
}

/* HOVER = INSANE GLOW */
.why-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 0 20px rgba(0,255,136,0.6),
    0 0 60px rgba(0,255,136,0.3);
}

/* TITLE */
.why-card h3 {
  color: #00ff88;
  margin-bottom: 10px;
}

/* TEXT */
.why-card p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
}