/* ============================================================
   STAKE POOL USD — Main Styles
   ============================================================ */

:root {
  --blue-start:  #00cfff;
  --blue-end:    #0072ff;
  --green-start: #00ff9d;
  --green-end:   #00c775;
  --bg:          #0a0f23;
  --bg-card:     #0d1530;
  --bg-card2:    #111a38;
  --text:        #ffffff;
  --text-muted:  #8a9cc2;
  --border:      rgba(0, 207, 255, 0.15);
  --radius:      16px;
  --radius-sm:   10px;
  --shadow-glow: 0 0 40px rgba(0, 207, 255, 0.25);
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none !important; color: inherit; }
ul { list-style: none; }

a:where(:not(.wp-element-button)) {
    text-decoration: none !important;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Gradient text ─── */
.gradient-text {
  background: linear-gradient(90deg, var(--blue-start), var(--green-start));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ─── */
.btn {
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(90deg, var(--blue-start), var(--blue-end));
  color: #fff;
  box-shadow: 0 4px 24px rgba(0, 114, 255, 0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 207, 255, 0.55);
}
.btn--outline {
  background: transparent;
  color: var(--blue-start);
  border: 1.5px solid var(--blue-start);
}
.btn--outline:hover {
  background: rgba(0, 207, 255, 0.1);
  transform: translateY(-2px);
}
.btn--lg  { padding: 15px 36px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ─── Section shared ─── */
.section { padding: 100px 0; position: relative; }
.section__header { text-align: center; margin-bottom: 64px; }
.section__tag {
  display: inline-block;
  background: rgba(0, 207, 255, 0.12);
  color: var(--blue-start);
  border: 1px solid rgba(0, 207, 255, 0.3);
  border-radius: 50px;
  padding: 5px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(10, 15, 35, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header__logo-img {
  width: 42px;
  height: 42px;v
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
.header__logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.header__logo-text span { color: var(--green-start); }

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav__link {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
    text-decoration: none !important;
}
.nav__link:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.header__cta { margin-left: 12px; flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #0072ff 0%, transparent 70%);
  top: -200px; left: -200px;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #00ff9d 0%, transparent 70%);
  bottom: -150px; right: -100px;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #00cfff 0%, transparent 70%);
  top: 40%; left: 40%;
  opacity: 0.18;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,207,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,207,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 157, 0.1);
  border: 1px solid rgba(0, 255, 157, 0.3);
  color: var(--green-start);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero__sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero__stat { text-align: center; }
.hero__stat-val {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--blue-start), var(--green-start));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat span { font-size: 1.2rem; font-weight: 700; }
.hero__stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.hero__stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero__logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__logo-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0,207,255,0.3) 0%, rgba(0,114,255,0.15) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  animation: glow-pulse 3s ease-in-out infinite;
}
.hero__logo-img {
  position: relative;
  width: 500px;
  max-width: 100%;
  mix-blend-mode: screen;
  filter: brightness(1.15) contrast(1.05);
  z-index: 1;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--blue-start);
  border-bottom: 2px solid var(--blue-start);
  transform: rotate(45deg);
  animation: scroll-bounce 1.6s ease-in-out infinite;
}

/* ============================================================
   ABOUT — Cards
   ============================================================ */
.about { background: var(--bg); }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,207,255,0.06), transparent);
  opacity: 0;
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); border-color: rgba(0,207,255,0.35); box-shadow: var(--shadow-glow); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}
.card__icon svg { width: 100%; height: 100%; }
.card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.card__text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ============================================================
   STAKING
   ============================================================ */
.staking {
  background: linear-gradient(180deg, var(--bg) 0%, #0c1228 100%);
  overflow: hidden;
}
.staking__bg { position: absolute; inset: 0; pointer-events: none; }
.staking__orb {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,114,255,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.staking__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.staking__plans { display: flex; flex-direction: column; gap: 20px; }
.plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.plan-wrapper {
    overflow: hidden !important;
    position: relative;
    padding: 28px;
}

.plan--active {
  border-color: rgba(0,207,255,0.4);
  box-shadow: 0 0 30px rgba(0,207,255,0.15);
  background: var(--bg-card2);
}
.plan__badge {
  position: absolute;
  top: -12px; right: 20px;
  background: linear-gradient(90deg, var(--blue-start), var(--blue-end));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plan__period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.plan__apy { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; }
.plan__apy span:last-child { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.plan__features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.plan__features li {
  color: var(--text-muted);
  font-size: 0.88rem;
  padding-left: 18px;
  position: relative;
}
.plan__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--blue-start), var(--green-start));
}

/* Staking features grid */
.staking__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.staking__feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}
.staking__feature:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 207, 255, 0.35);
  box-shadow: var(--shadow-glow);
}
.staking__feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}
.staking__feature-icon svg { width: 100%; height: 100%; }
.staking__feature h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.staking__feature p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* Staking process strip */
.staking__process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.staking__process-step {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  position: relative;
}
.staking__process-step:last-child { border-right: none; }
.staking__process-num {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--blue-start), var(--green-start));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.staking__process-line {
  position: absolute;
  top: 52px;
  right: -1px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-start), var(--green-start));
  z-index: 1;
}
.staking__process-line--last { display: none; }
.staking__process-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.staking__process-step p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ============================================================
   TOKENOMICS
   ============================================================ */
.tokenomics { background: var(--bg); }
.tokenomics__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.donut { position: relative; display: flex; align-items: center; justify-content: center; }
.donut__svg {
  width: 280px;
  height: 280px;
  transform: rotate(-90deg);
  filter: drop-shadow(0 0 20px rgba(0,207,255,0.3));
}
.donut__bg { fill: none; stroke: rgba(255,255,255,0.05); stroke-width: 28; }
.donut__seg {
  fill: none;
  stroke-width: 28;
  stroke-linecap: butt;
  transition: opacity 0.3s;
}
.donut__seg:hover { opacity: 0.8; }
.donut__center {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.donut__total { font-size: 2rem; font-weight: 900; line-height: 1; }
.donut__label { font-size: 0.85rem; color: var(--text-muted); }

.tokenomics__legend { display: flex; flex-direction: column; gap: 20px; }
.legend-item { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.legend-info { display: flex; justify-content: space-between; align-items: center; min-width: 160px; gap: 8px; }
.legend-name { font-size: 0.92rem; font-weight: 500; }
.legend-pct { font-size: 0.92rem; font-weight: 700; color: var(--blue-start); }
.legend-bar { flex: 1; min-width: 120px; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.legend-fill { height: 100%; border-radius: 3px; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners { background: linear-gradient(180deg, var(--bg) 0%, #0c1228 100%); }
.partners__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.partner-logo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: default;
}
.partner-logo svg { width: 100%; height: 28px; max-width: 140px; }
.partner-logo:hover { border-color: rgba(0,207,255,0.35); color: var(--text); transform: translateY(-3px); }

.trust-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.trust-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.trust-item:hover { border-color: rgba(0,207,255,0.3); transform: translateY(-4px); }
.trust-icon { width: 52px; height: 52px; margin: 0 auto 16px; }
.trust-icon svg { width: 100%; height: 100%; }
.trust-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.trust-item p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,114,255,0.2) 0%, rgba(0,207,255,0.1) 50%, rgba(0,255,157,0.15) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner__inner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 8px; }
.cta-banner__inner p { color: var(--text-muted); font-size: 1rem; max-width: 480px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #060b1a; border-top: 1px solid var(--border); padding-top: 64px; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__logo {
  width: 200px;
  mix-blend-mode: screen;
  filter: brightness(1.15);
  margin-bottom: 16px;
  object-fit: cover;
  object-position: center 15%;
}
.footer__brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { background: rgba(0,207,255,0.15); border-color: var(--blue-start); color: var(--blue-start); }

.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: 4px; }
.footer__nav a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; text-decoration: none !important;}
.footer__nav a:hover { color: var(--blue-start); }

.footer__subscribe h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.footer__subscribe p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 16px; }
.subscribe-form { display: flex; gap: 8px; }
.subscribe-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 18px;
  color: var(--text);
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.subscribe-input::placeholder { color: var(--text-muted); }
.subscribe-input:focus { border-color: var(--blue-start); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer__bottom a { color: var(--blue-start); }
.footer__bottom a:hover { text-decoration: underline; }

/* ============================================================
   ROADMAP
   ============================================================ */
.roadmap { background: linear-gradient(180deg, #0c1228 0%, var(--bg) 100%); }
.roadmap__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.roadmap__phase {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
}
.roadmap__phase:hover {
  border-color: rgba(0, 207, 255, 0.3);
  transform: translateY(-4px);
}
.roadmap__phase--active {
  border-color: rgba(0, 207, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 207, 255, 0.12);
  background: var(--bg-card2);
}
.roadmap__phase-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--blue-start), var(--green-start));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.roadmap__phase-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.roadmap__phase-sub {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.roadmap__list { display: flex; flex-direction: column; gap: 8px; }
.roadmap__list li {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.roadmap__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--blue-start), var(--green-start));
}
.roadmap__phase--active .roadmap__list li { color: var(--text); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item--open { border-color: rgba(0, 207, 255, 0.35); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--blue-start); }
.faq__icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--blue-start);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq__icon::before { width: 14px; height: 2px; top: 9px; left: 3px; }
.faq__icon::after  { width: 2px; height: 14px; top: 3px; left: 9px; }
.faq__item--open .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}
.faq__item--open .faq__answer { max-height: 300px; }
.faq__answer p {
  padding: 0 28px 22px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ─── Footer "coming soon" links ─── */
.footer__nav a.link--soon {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}
.footer__nav a.link--soon::after {
  content: ' (soon)';
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================================
   DISCLAIMER MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal.modal--open {
  opacity: 1;
  pointer-events: all;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 26, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal__box {
  position: relative;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 600px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal--open .modal__box { transform: translateY(0); }
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.modal__title {
  font-size: 1.1rem;
  font-weight: 700;
}
.modal__close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.modal__close svg { width: 16px; height: 16px; }
.modal__close:hover { background: rgba(255,255,255,0.12); color: var(--text); }
.modal__body {
  padding: 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal__body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ============================================================
   REVEAL (scroll animations base state)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal--right { transform: translateX(60px); }
.reveal--left  { transform: translateX(-60px); }
.reveal--up    { transform: translateY(50px); }
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .staking__features { grid-template-columns: repeat(2, 1fr); }
  .partners__grid { grid-template-columns: repeat(3, 1fr); }
  .roadmap__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__logo-wrap { order: -1; }
  .hero__logo-img { width: 220px; }
  .hero__logo-glow { width: 260px; height: 260px; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .staking__process { grid-template-columns: 1fr; }
  .staking__process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .staking__process-step:last-child { border-bottom: none; }
  .staking__process-line { display: none; }
  .tokenomics__layout { grid-template-columns: 1fr; }
  .tokenomics__chart { display: flex; justify-content: center; }
  .trust-block { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,15,35,0.97);
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }
  .nav.open .nav__link { font-size: 1.3rem;}
  .cards { grid-template-columns: 1fr; }
  .staking__features { grid-template-columns: 1fr; }
  .staking__process-step { padding: 28px 24px; }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap__grid { grid-template-columns: 1fr; }
  .faq__question { padding: 18px 20px; font-size: 0.9rem; }
  .faq__answer p { padding: 0 20px 18px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .subscribe-form { flex-direction: column; }
}
