:root {
  --bg: #0a0d0f;
  --bg2: #0f1418;
  --card: #141c22;
  --card2: #1a2530;
  --navy: #1a3a6b;
  --navy2: #2454a0;
  --green: #6ec22a;
  --green2: #89d93d;
  --green-dim: #3a6e10;
  --text: #e8f0f8;
  --text2: #7a98b4;
  --border: rgba(110, 194, 42, 0.14);
  --border2: rgba(26, 58, 107, 0.35);
  --glow-g: 0 0 40px rgba(110, 194, 42, 0.2);
  --glow-n: 0 0 40px rgba(26, 58, 107, 0.3);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  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='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: 0;
  opacity: 0.35;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(10, 13, 15, 0.9);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-icon {
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--navy2), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--text) 0%, var(--green2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover {
  color: var(--green);
}
.nav-ctas {
  display: flex;
  gap: 0.8rem;
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(110, 194, 42, 0.3);
  color: var(--text2);
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: inherit;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}
.btn-primary {
  background: linear-gradient(135deg, var(--navy2), var(--green));
  border: none;
  color: #fff;
  padding: 0.5rem 1.4rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  transition: opacity 0.2s;
  text-decoration: none;
}
.btn-primary:hover {
  opacity: 0.85;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 5% 80px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(110, 194, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 58, 107, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    black 30%,
    transparent 80%
  );
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(26, 58, 107, 0.25) 0%,
    transparent 70%
  );
  top: -150px;
  left: -100px;
  animation: pulse 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(110, 194, 42, 0.18) 0%,
    transparent 70%
  );
  bottom: -100px;
  right: -80px;
  animation: pulse 10s ease-in-out infinite reverse;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}
.hero-content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(110, 194, 42, 0.3);
  background: rgba(110, 194, 42, 0.07);
  padding: 0.35rem 1rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-family: "JetBrains Mono", monospace;
  color: var(--green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.8s ease both;
}
.badge-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green2);
  animation: blink 1.5s ease infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.8s 0.15s ease both;
}
.hero-title-accent {
  background: linear-gradient(
    135deg,
    var(--navy2) 0%,
    var(--green2) 60%,
    var(--green) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-size: clamp(3.5rem, 9vw, 7rem);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  animation: fadeDown 0.8s 0.3s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown 0.8s 0.45s ease both;
}
.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  font-family: inherit;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.8s 0.6s ease both;
}
.stat {
  text-align: center;
}
.stat-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--green), var(--navy2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text2);
  margin-top: 0.2rem;
  letter-spacing: 0.04em;
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ─── SECTIONS ─── */
section {
  padding: 100px 5%;
  position: relative;
  z-index: 1;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}
.section-title span {
  background: linear-gradient(135deg, var(--green), var(--navy2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-desc {
  color: var(--text2);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ─── TICKER ─── */
.ticker-wrap {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  color: var(--text2);
  flex-shrink: 0;
}
.ticker-item .dot {
  color: var(--green);
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── ABOUT ─── */
#about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-card-main {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.about-card-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy2), var(--green));
}
.about-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(110, 194, 42, 0.1);
  border: 1px solid rgba(110, 194, 42, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about-card-main h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.about-card-main p {
  color: var(--text2);
  font-size: 0.9rem;
  line-height: 1.7;
}
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.pill {
  background: rgba(110, 194, 42, 0.07);
  border: 1px solid rgba(110, 194, 42, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  font-size: 0.78rem;
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
}
.floating-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  box-shadow: var(--glow-g);
}
.fb-icon {
  font-size: 1.4rem;
}
.fb-label {
  color: var(--text2);
  font-size: 0.75rem;
}
.fb-val {
  font-weight: 700;
  color: var(--green);
}
.token-info-row {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.tok-box {
  flex: 1;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
}
.tok-label {
  font-size: 0.72rem;
  color: var(--text2);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.06em;
}
.tok-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-top: 0.2rem;
}
.feat-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feat-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 107, 0.2),
    rgba(110, 194, 42, 0.15)
  );
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.feat-title {
  font-weight: 700;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}
.feat-desc {
  color: var(--text2);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ─── HOW IT WORKS ─── */
#how {
  background: var(--bg2);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.step-card:hover {
  border-color: rgba(110, 194, 42, 0.4);
  transform: translateY(-4px);
}
.step-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  color: rgba(110, 194, 42, 0.06);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
  pointer-events: none;
}
.step-icon {
  width: 48px;
  height: 48px;
  background: rgba(110, 194, 42, 0.1);
  border: 1px solid rgba(110, 194, 42, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.step-card p {
  color: var(--text2);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ─── PACKAGES ─── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}
.pkg-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem 1.4rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.pkg-card:hover {
  border-color: rgba(110, 194, 42, 0.35);
  transform: translateY(-4px);
}
.pkg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy2), var(--green));
}
.pkg-featured {
  border-color: rgba(110, 194, 42, 0.5);
  background: linear-gradient(160deg, var(--card), rgba(110, 194, 42, 0.05));
  box-shadow: 0 0 30px rgba(110, 194, 42, 0.12);
}
.pkg-popular {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--green);
  color: #000;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 0 14px 0 8px;
}
.pkg-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text2);
  margin-bottom: 1rem;
  font-weight: 600;
}
.pkg-badge-silver {
  color: #c0c0c0;
}
.pkg-badge-gold {
  color: #ffd700;
}
.pkg-badge-platinum {
  color: #b0c4de;
}
.pkg-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--text), var(--green2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pkg-name {
  font-size: 0.85rem;
  color: var(--text2);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.pkg-daily {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--green);
  margin-bottom: 1.2rem;
}
.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pkg-features li {
  font-size: 0.82rem;
  color: var(--text2);
  padding: 0.2rem 0;
}

/* ─── DIRECT BONUS BAR ─── */
.bonus-bar {
  margin-top: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.bonus-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy2), var(--green));
}
.bonus-pct {
  font-family: "Bebas Neue", sans-serif;
  font-size: 5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--green2), var(--navy2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}
.bonus-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.bonus-desc {
  color: var(--text2);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 560px;
}

/* ─── ROI TABLES ─── */
#roi {
  background: var(--bg2);
}
.matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 0;
}
.matrix-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  overflow: hidden;
}
.matrix-active {
  border-color: rgba(110, 194, 42, 0.35);
  box-shadow: 0 0 25px rgba(110, 194, 42, 0.1);
}
.matrix-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.matrix-table th {
  background: rgba(110, 194, 42, 0.08);
  color: var(--green);
  font-weight: 600;
  text-align: left;
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--border);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}
.matrix-table td {
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text2);
}
.matrix-table tr:hover td {
  color: var(--text);
  background: rgba(110, 194, 42, 0.03);
}
.matrix-table .hl {
  color: var(--green);
  font-weight: 700;
}
.matrix-total {
  margin-top: 1.2rem;
  padding: 0.8rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 107, 0.3),
    rgba(110, 194, 42, 0.15)
  );
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--green2);
  text-align: center;
}

/* ─── ACHIEVEMENTS ─── */
#achievements {
  background: var(--bg);
}
.ach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.ach-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.ach-card:hover {
  border-color: rgba(110, 194, 42, 0.35);
  transform: translateY(-4px);
}
.ach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy2), var(--green));
}
.ach-rank {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--green2), var(--navy2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.ach-onetime {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1;
}
.ach-monthly {
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.ach-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.8rem 0;
}
.ach-row {
  display: flex;
  justify-content: space-between;
  padding: 0.22rem 0;
  font-size: 0.82rem;
}
.ach-row-label {
  color: var(--text2);
}
.ach-row-val {
  color: var(--text);
  font-weight: 600;
}

/* ─── GLOBAL CYCLE ─── */
#cycle {
  background: var(--bg2);
}
.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}
.reward-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.reward-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 194, 42, 0.3);
}
.reward-highlight {
  border-color: rgba(110, 194, 42, 0.4);
  background: linear-gradient(160deg, var(--card), rgba(110, 194, 42, 0.05));
  box-shadow: 0 0 30px rgba(110, 194, 42, 0.12);
}
.reward-pkg {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.reward-cond {
  font-size: 0.82rem;
  color: var(--text2);
  margin-bottom: 1.5rem;
}
.reward-amount {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--green2), var(--navy2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reward-label {
  font-size: 0.82rem;
  color: var(--text2);
  margin-top: 0.3rem;
}

/* ─── WHY ─── */
#why {
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  gap: 1.2rem;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.why-card:hover {
  border-color: rgba(110, 194, 42, 0.35);
  transform: translateY(-3px);
}
.why-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  color: rgba(110, 194, 42, 0.07);
  line-height: 1;
  flex-shrink: 0;
}
.why-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--green);
}
.why-desc {
  color: var(--text2);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ─── TERMS ─── */
#terms {
  background: var(--bg2);
}
.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 0;
}
.term-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.term-card:hover {
  border-color: rgba(110, 194, 42, 0.3);
  transform: translateY(-2px);
}
.term-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: var(--green);
  line-height: 1;
  flex-shrink: 0;
}
.term-text {
  font-size: 0.88rem;
  color: var(--text2);
  font-weight: 500;
  padding-top: 0.2rem;
}

/* ─── CTA ─── */
#cta {
  text-align: center;
}
.cta-box {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 107, 0.15),
    rgba(110, 194, 42, 0.08)
  );
  border: 1px solid rgba(110, 194, 42, 0.25);
  border-radius: 20px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(110, 194, 42, 0.08),
    transparent 60%
  );
  pointer-events: none;
}
.cta-box h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.cta-box h2 span {
  background: linear-gradient(135deg, var(--green2), var(--navy2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-box p {
  color: var(--text2);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 5% 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.footer-logo .logo-icon {
  font-size: 1.4rem;
}
.footer-logo span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--text), var(--green2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-brand p {
  color: var(--text2);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 360px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--text2);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  #about .about-grid,
  .matrix-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .terms-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rewards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .packages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  .about-visual {
    padding-bottom: 0;
  }
  .floating-badge {
    position: static;
    margin-top: 1rem;
    border-radius: 12px;
    display: flex;
  }
}
@media (max-width: 600px) {
  section {
    padding: 60px 4%;
  }
  .section-inner {
    padding: 0;
  }
  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .hero-stats .stat {
    min-width: 40%;
  }
  .stat-value {
    font-size: 2rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-lg {
    width: 100%;
    text-align: center;
  }
  .packages-grid,
  .terms-grid,
  .rewards-grid,
  .steps-grid,
  .matrix-grid,
  .ach-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .about-card-main {
    padding: 1.5rem;
  }
  .token-info-row {
    flex-direction: column;
    gap: 0.6rem;
  }
  .floating-badge {
    position: static;
    margin-top: 1rem;
    width: 100%;
  }
  .bonus-bar {
    flex-direction: column;
    gap: 1rem;
  }
  .cta-box {
    padding: 2rem 1.2rem;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .term-card {
    padding: 1.2rem;
  }
  .feat-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}
