/* ============================================================
   Blockfusion AI — Smart Mining · LIGHT PREMIUM
   Light · gold + electric blue · hex / circuit motifs
   Type: Plus Jakarta Sans (display/body) · Space Grotesk (numerals)
   ============================================================ */

:root {
  --bg:       #f4f7fc;
  --bg-2:     #ffffff;
  --ink:      #0f1c34;
  --muted:    #56617a;
  --muted-2:  #8794a8;

  --emerald:  #2ea3e6;   /* accent blue — links, kickers, small accents */
  --green:    #22b8d6;
  --mint:     #17a2c2;   /* cyan — chart fill */
  --teal:     #2f6fd6;
  --gold:     #e0961a;
  --gold-d:   #b9790d;
  --gold-b:   #b45309;   /* gold text on light (dark amber) */

  --grad:      linear-gradient(120deg, #ffcf6b 0%, #f5b638 48%, #e0961a 100%);   /* primary = gold */
  --grad-gold: linear-gradient(120deg, #e0961a 0%, #f5b638 42%, #2ea3e6 100%);   /* highlight numbers = gold→blue */

  --glass:      rgba(255, 255, 255, 0.72);
  --glass-2:    rgba(255, 255, 255, 0.85);
  --glass-line: rgba(15, 28, 52, 0.10);
  --hairline:   rgba(15, 28, 52, 0.08);

  --r:    22px;
  --r-lg: 30px;
  --maxw: 1180px;

  --shadow:      0 30px 60px -30px rgba(20, 40, 80, 0.28);
  --shadow-soft: 0 18px 40px -26px rgba(20, 40, 80, 0.18);
  --glow-gold:   0 0 0 1px rgba(245, 182, 56, 0.45), 0 30px 60px -26px rgba(245, 182, 56, 0.3);
}

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

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Light backdrop: soft gold + blue energy glows */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background:
    radial-gradient(60rem 42rem at 88% -8%, rgba(245, 182, 56, 0.18), transparent 60%),
    radial-gradient(55rem 42rem at 4% 8%, rgba(56, 189, 248, 0.16), transparent 60%),
    radial-gradient(44rem 32rem at 50% 122%, rgba(59, 130, 246, 0.12), transparent 60%),
    var(--bg);
}
/* Faint circuit grid, faded toward the edges */
body::after {
  content: ""; position: fixed; inset: 0; z-index: -3; pointer-events: none; opacity: 0.6;
  background-image:
    linear-gradient(rgba(15, 28, 52, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 28, 52, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(circle at 50% 26%, #000 0%, transparent 76%);
          mask-image: radial-gradient(circle at 50% 26%, #000 0%, transparent 76%);
}

.num { font-family: "Space Grotesk", ui-monospace, monospace; font-feature-settings: "tnum"; }
h1, h2, h3, h4 { font-family: "Plus Jakarta Sans", sans-serif; margin: 0; line-height: 1.08; letter-spacing: -0.025em; font-weight: 800; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }

.grad { background: var(--grad-gold); background-size: 200% 200%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: gradShift 9s ease infinite; }

/* ---------- Energy glows (was liquid) ---------- */
.liquid { position: fixed; inset: 0; z-index: -2; overflow: hidden; }
.liquid__blob { position: absolute; border-radius: 45% 55% 52% 48% / 50% 46% 54% 50%; filter: blur(64px); opacity: 0.5; will-change: transform; }
.liquid__blob--1 { width: 540px; height: 540px; top: -180px; right: -90px; background: radial-gradient(circle, rgba(245,182,56,0.5), transparent 70%); animation: morph1 24s ease-in-out infinite; }
.liquid__blob--2 { width: 480px; height: 480px; top: 360px; left: -160px; background: radial-gradient(circle, rgba(56,189,248,0.42), transparent 70%); animation: morph2 28s ease-in-out infinite; }
.liquid__blob--3 { width: 420px; height: 420px; bottom: 280px; right: 4%; background: radial-gradient(circle, rgba(245,182,56,0.30), transparent 70%); animation: morph1 30s ease-in-out infinite; }
.liquid__blob--4 { width: 400px; height: 400px; bottom: -140px; left: 16%; background: radial-gradient(circle, rgba(59,130,246,0.34), transparent 70%); animation: morph2 26s ease-in-out infinite; }

/* ---------- Glass utility ---------- */
.glass { background: var(--glass); backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%); border: 1px solid var(--glass-line); box-shadow: var(--shadow-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 0.95rem;
  border: 1px solid transparent; border-radius: 999px; padding: 12px 24px; cursor: pointer; white-space: nowrap;
  transition: transform 0.22s cubic-bezier(.2,.7,.2,1), box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--solid { background: var(--grad); background-size: 160% 160%; color: #241703; box-shadow: 0 16px 34px -12px rgba(245,182,56,0.5); }
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 22px 46px -10px rgba(245,182,56,0.7); background-position: 100% 0; }
.btn--gold { background: var(--grad); color: #241703; box-shadow: 0 16px 34px -12px rgba(245,182,56,0.55); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 22px 46px -10px rgba(245,182,56,0.78); }
.btn--glass { background: rgba(15,28,52,0.045); backdrop-filter: blur(10px); color: var(--ink); border-color: var(--glass-line); box-shadow: var(--shadow-soft); }
.btn--glass:hover { transform: translateY(-2px); border-color: rgba(56,189,248,0.55); color: #0c63b0; }
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; padding: 14px 24px 0; }
.nav__bar { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 62px; padding: 0 12px 0 18px; border-radius: 999px; background: rgba(255,255,255,0.82); backdrop-filter: blur(18px) saturate(160%); border: 1px solid var(--glass-line); box-shadow: var(--shadow-soft); }
.brand { display: inline-flex; align-items: center; gap: 9px; }
.brand__name { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 1.28rem; letter-spacing: -0.03em; }
.nav__links { display: flex; gap: 26px; }
.nav__links a { color: var(--muted); font-size: 0.93rem; font-weight: 600; transition: color 0.15s; }
.nav__links a:hover { color: #0c63b0; }
.nav__right { display: flex; align-items: center; gap: 12px; }
.ticker { display: inline-flex; align-items: center; gap: 7px; font-family: "Space Grotesk", monospace; font-size: 0.8rem; color: var(--muted); background: rgba(15,28,52,0.045); border: 1px solid var(--glass-line); padding: 6px 12px; border-radius: 999px; }
.ticker b { color: var(--gold); }
.ticker__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 9px rgba(245,182,56,0.9); animation: pulse 2s infinite; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.25s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile { display: none; flex-direction: column; gap: 6px; margin: 10px auto 0; max-width: var(--maxw); padding: 16px 20px; border-radius: var(--r); background: rgba(255,255,255,0.96); backdrop-filter: blur(18px); border: 1px solid var(--glass-line); box-shadow: var(--shadow-soft); }
.nav__mobile a { padding: 10px 4px; color: var(--muted); font-weight: 600; border-bottom: 1px solid var(--hairline); }
.nav__mobile.is-open { display: flex; }
.nav__mobile .btn { margin-top: 8px; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 56px; }
.hero__grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 52px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 9px; font-size: 0.82rem; font-weight: 600; color: var(--gold-b); background: rgba(245,182,56,0.1); border: 1px solid rgba(245,182,56,0.3); padding: 7px 15px; border-radius: 999px; margin-bottom: 24px; }
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px rgba(245,182,56,0.9); animation: pulse 2s infinite; }
.hero__title { font-size: clamp(2.5rem, 5.6vw, 4.2rem); font-weight: 800; letter-spacing: -0.035em; }
.hero__sub { color: var(--muted); font-size: 1.13rem; max-width: 30em; margin: 22px 0 28px; }
.hero__sub strong { color: var(--ink); }
.hero__trust { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; }
.avatars { display: flex; }
.avatars span { width: 40px; height: 40px; display: grid; place-items: center; font-size: 1.1rem; background: var(--bg-2); border: 2px solid var(--bg); border-radius: 50%; margin-left: -11px; box-shadow: var(--shadow-soft); animation: floatY 4s ease-in-out infinite; animation-delay: calc(var(--i) * 0.4s); }
.avatars span:first-child { margin-left: 0; }
.stars { color: var(--gold); font-size: 0.92rem; letter-spacing: 2px; }
.hero__trusttext span { font-size: 0.88rem; color: var(--muted); }
.hero__trusttext strong { color: var(--ink); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.disclaimer { font-size: 0.8rem; color: var(--muted-2); margin-top: 22px; }

/* Mining core (was coin) */
.coin { position: relative; width: 220px; height: 220px; animation: floatY 6s ease-in-out infinite; }
.coin__halo { position: absolute; inset: -40px; border-radius: 50%; background: radial-gradient(circle, rgba(56,189,248,0.4), rgba(245,182,56,0.2) 55%, transparent 72%); filter: blur(20px); animation: pulseGlow 4.5s ease-in-out infinite; }
.coin__face { position: absolute; inset: 0; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle at 34% 28%, #eaf3ff, #cfe1ff 58%, #b7cff0); box-shadow: inset 0 8px 26px rgba(90,150,255,0.25), inset 0 -18px 34px rgba(40,70,130,0.16), 0 30px 70px -18px rgba(56,189,248,0.5); border: 2px solid rgba(245,182,56,0.4); overflow: hidden; }
.coin__face::after { content: ""; position: absolute; inset: 16px; border-radius: 50%; border: 2px dashed rgba(245,182,56,0.4); animation: spin 20s linear infinite; }
.coin__sym { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 5.6rem; color: var(--gold); text-shadow: 0 4px 20px rgba(245,182,56,0.55); position: relative; z-index: 2; }
.coin__shine { position: absolute; top: -60%; left: -30%; width: 60%; height: 220%; background: linear-gradient(100deg, transparent, rgba(255,255,255,0.28), transparent); transform: rotate(18deg); animation: shine 5.5s ease-in-out infinite; }

/* Quick-mine widget */
.hero__widget { position: relative; min-height: 440px; display: grid; place-items: center; }
.coin--ghost { position: absolute; top: -16px; right: 4px; width: 172px; height: 172px; z-index: 0; }
.qstake { position: relative; z-index: 2; width: min(390px, 100%); border-radius: var(--r-lg); padding: 24px; }
.qstake__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.qstake__title { font-weight: 800; font-size: 1.12rem; color: var(--ink); }
.qstake__badge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; color: var(--gold-b); background: rgba(245,182,56,0.12); border: 1px solid rgba(245,182,56,0.3); padding: 5px 10px; border-radius: 999px; }
.qstake__label { font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.qstake__amount { display: flex; align-items: baseline; gap: 8px; margin: 6px 0 14px; }
.qstake__amount .num { font-size: 2.3rem; font-weight: 700; letter-spacing: -0.02em; }
.qstake__amount small { color: var(--muted); font-weight: 600; font-size: 0.92rem; }
.qstake__chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 18px; }
.qstake__plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 6px 0 18px; }
.qstake__chips button, .qstake__plans button { font-family: inherit; font-weight: 600; font-size: 0.84rem; color: var(--muted); background: rgba(15,28,52,0.04); border: 1px solid var(--glass-line); padding: 10px 4px; border-radius: 12px; cursor: pointer; transition: 0.18s; }
.qstake__chips button:hover, .qstake__plans button:hover { color: var(--ink); transform: translateY(-1px); }
.qstake__chips button.is-active, .qstake__plans button.is-active { color: #241703; background: var(--grad); border-color: transparent; box-shadow: 0 8px 18px -8px rgba(245,182,56,0.6); }
.qstake__out { display: flex; justify-content: space-between; align-items: center; gap: 12px; background: rgba(15,28,52,0.04); border: 1px solid var(--glass-line); border-radius: 16px; padding: 14px 16px; margin-bottom: 16px; }
.qstake__out > div { display: flex; flex-direction: column; gap: 3px; }
.qstake__out span { font-size: 0.74rem; color: var(--muted); }
.qstake__out b { font-size: 1.35rem; font-weight: 700; }
.qstake__apy { text-align: right; }
.qstake__apy b { color: var(--gold); }

/* ---------- Stats ---------- */
.stats { padding: 16px 0 64px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { position: relative; text-align: center; border-radius: var(--r); padding: 28px 18px; background: var(--glass); backdrop-filter: blur(18px) saturate(140%); border: 1px solid var(--glass-line); box-shadow: var(--shadow-soft); transition: transform 0.22s ease, box-shadow 0.22s ease; overflow: hidden; }
.stat::before { content: ""; position: absolute; top: 0; left: 20%; right: 20%; height: 1px; background: linear-gradient(90deg, transparent, rgba(245,182,56,0.7), transparent); }
.stat:hover { transform: translateY(-5px); box-shadow: var(--shadow), 0 0 0 1px rgba(245,182,56,0.22); }
.stat__num { font-size: 2rem; font-weight: 700; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { color: var(--muted); font-size: 0.88rem; margin-top: 6px; }

/* ---------- Sections ---------- */
.section { padding: 70px 0; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.kicker { display: inline-block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-b); background: rgba(245,182,56,0.08); border: 1px solid rgba(245,182,56,0.25); padding: 6px 14px; border-radius: 999px; }
.section__title { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 800; margin: 16px 0 14px; }
.section__lead { color: var(--muted); font-size: 1.05rem; }

/* ---------- Plans ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; border-radius: var(--r-lg); padding: 32px 28px; background: var(--glass); backdrop-filter: blur(20px) saturate(140%); border: 1px solid var(--glass-line); box-shadow: var(--shadow-soft); transition: transform 0.25s cubic-bezier(.2,.7,.2,1), box-shadow 0.25s; }
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.plan--featured { background: linear-gradient(180deg, rgba(245,182,56,0.12), rgba(255,255,255,0.85)); border-color: rgba(245,182,56,0.45); box-shadow: var(--glow-gold); }
.plan__ic { width: 54px; height: 54px; display: grid; place-items: center; font-size: 1.6rem; border-radius: 16px; background: var(--grad); color: #241703; margin-bottom: 18px; box-shadow: 0 12px 24px -12px rgba(245,182,56,0.6); }
.plan__ribbon { position: absolute; top: 18px; right: 18px; font-size: 0.72rem; font-weight: 700; color: #241703; background: var(--grad); padding: 6px 13px; border-radius: 999px; box-shadow: 0 10px 22px -10px rgba(245,182,56,0.7); }
.plan__name { font-size: 1.32rem; font-weight: 800; }
.plan__tag { color: var(--muted); font-size: 0.9rem; margin: 4px 0 0; }
.plan__apy { display: flex; align-items: baseline; gap: 6px; margin: 20px 0; }
.plan__apy .num { font-size: 3.4rem; font-weight: 700; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.plan__apy small { color: var(--muted); font-size: 1rem; }
.plan__list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; flex: 1; }
.plan__list li { position: relative; padding-left: 28px; color: var(--muted); font-size: 0.94rem; }
.plan__list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; display: grid; place-items: center; font-size: 0.66rem; font-weight: 800; color: #241703; background: var(--grad); border-radius: 50%; }

/* ---------- Calculator ---------- */
.calc { display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; border-radius: var(--r-lg); overflow: hidden; }
.calc__controls { padding: 34px; display: flex; flex-direction: column; gap: 28px; border-right: 1px solid var(--hairline); }
.field__row, .field__label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.field label, .field__label { font-weight: 700; font-size: 0.96rem; }
.field__val { color: var(--gold); font-size: 0.95rem; }
.field__label { display: block; margin-bottom: 14px; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px; background: rgba(15,28,52,0.10); cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--grad); border: 3px solid #fff; box-shadow: 0 3px 12px rgba(245,182,56,0.5); }
input[type="range"]::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; }
.segmented { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; background: rgba(15,28,52,0.04); padding: 6px; border-radius: 14px; border: 1px solid var(--glass-line); }
.seg { font-family: "Space Grotesk", monospace; font-size: 0.82rem; font-weight: 600; color: var(--muted); background: transparent; border: 0; padding: 11px 6px; border-radius: 10px; cursor: pointer; transition: 0.18s; }
.seg:hover { color: var(--ink); }
.seg.is-active { color: #241703; background: var(--grad); box-shadow: 0 8px 18px -8px rgba(245,182,56,0.6); }
.calc__results { display: grid; gap: 12px; margin-top: 4px; }
.result { display: flex; justify-content: space-between; align-items: center; padding: 15px 16px; border-radius: 14px; background: rgba(15,28,52,0.04); border: 1px solid var(--glass-line); }
.result span { color: var(--muted); font-size: 0.92rem; }
.result b { font-size: 1.1rem; }
.result--hero { background: var(--grad); border-color: transparent; }
.result--hero span, .result--hero b { color: #241703; }
.result--hero b { font-size: 1.55rem; font-weight: 700; }
.calc__viz { padding: 34px; display: flex; flex-direction: column; }
.calc__vizhead { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.calc__vizlabel { font-size: 0.82rem; color: var(--muted); }
.calc__vizvalue { font-size: 1.85rem; font-weight: 700; margin-top: 2px; }
.vbadge { font-size: 0.82rem; font-weight: 700; color: #241703; background: var(--grad); padding: 5px 11px; border-radius: 999px; }
.calc__chart { width: 100%; flex: 1; min-height: 200px; display: block; margin: 10px 0; }
.calc__gridlines line { stroke: var(--hairline); stroke-width: 1; }
.calc__note { font-size: 0.78rem; color: var(--muted-2); margin: 0; text-align: center; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { border-radius: var(--r-lg); padding: 32px 28px; transition: transform 0.22s ease; }
.step:hover { transform: translateY(-6px); }
.step__num { display: inline-grid; place-items: center; width: 50px; height: 50px; font-size: 1.1rem; font-weight: 700; color: #241703; background: var(--grad); border-radius: 16px; margin-bottom: 18px; box-shadow: 0 12px 24px -12px rgba(245,182,56,0.6); }
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature { border-radius: var(--r-lg); padding: 28px 24px; transition: transform 0.22s ease, box-shadow 0.22s; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature__ic { display: grid; place-items: center; width: 54px; height: 54px; font-size: 1.5rem; border-radius: 16px; background: rgba(15,28,52,0.045); border: 1px solid var(--glass-line); margin-bottom: 18px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ---------- Feed ---------- */
.feed { border-radius: var(--r-lg); padding: 10px; display: grid; gap: 6px; }
.feed__row { display: grid; grid-template-columns: 1.3fr 1.7fr 1fr; gap: 14px; align-items: center; padding: 14px 18px; border-radius: 16px; background: rgba(15,28,52,0.035); animation: feedIn 0.5s ease; }
.feed__addr { font-family: "Space Grotesk", monospace; font-weight: 600; font-size: 0.86rem; }
.feed__act { color: var(--muted); font-size: 0.84rem; }
.feed__amt { text-align: right; font-family: "Space Grotesk", monospace; font-weight: 700; color: var(--gold); font-size: 0.9rem; }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { margin: 0; border-radius: var(--r-lg); padding: 30px 26px; transition: transform 0.22s ease; }
.quote:hover { transform: translateY(-5px); }
.quote blockquote { margin: 0 0 22px; font-size: 1.02rem; line-height: 1.6; }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.quote__av { width: 42px; height: 42px; display: grid; place-items: center; font-size: 1.15rem; border-radius: 50%; background: rgba(15,28,52,0.045); border: 1px solid var(--glass-line); }
.quote figcaption b { display: block; font-size: 0.95rem; }
.quote figcaption small { color: var(--muted); font-size: 0.82rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item { border-radius: var(--r); overflow: hidden; transition: box-shadow 0.2s; }
.faq__item[open] { box-shadow: var(--shadow); }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s; }
.faq__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__item p { margin: 0; padding: 0 24px 22px; color: var(--muted); }

/* ---------- CTA ---------- */
.cta-wrap { padding: 50px 0 90px; }
.cta { position: relative; overflow: hidden; text-align: center; border-radius: 36px; padding: 70px 28px; background: linear-gradient(135deg, rgba(245,182,56,0.14), rgba(56,189,248,0.1)); border: 1px solid var(--glass-line); backdrop-filter: blur(18px); box-shadow: var(--shadow); }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% -20%, rgba(245,182,56,0.3), transparent 60%); pointer-events: none; }
.cta__coin { position: relative; width: 70px; height: 70px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle at 34% 28%, #eaf3ff, #cfe1ff 58%, #b7cff0); box-shadow: inset 0 4px 10px rgba(90,150,255,0.3), 0 18px 40px -12px rgba(56,189,248,0.5); border: 3px solid rgba(245,182,56,0.4); animation: floatY 5s ease-in-out infinite; }
.cta__coin span { font-weight: 800; font-size: 2.2rem; color: var(--gold); }
.cta h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); position: relative; }
.cta p { color: var(--muted); margin: 14px 0 28px; font-size: 1.08rem; position: relative; }

/* ---------- Footer ---------- */
.footer { padding: 60px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 36px; }
.footer__brand p { color: var(--muted); font-size: 0.94rem; margin: 14px 0 18px; max-width: 24em; }
.trust { display: flex; flex-wrap: wrap; gap: 8px; }
.trust__chip { font-size: 0.76rem; color: var(--gold-b); border: 1px solid rgba(245,182,56,0.25); background: rgba(245,182,56,0.06); padding: 5px 11px; border-radius: 999px; }
.footer__col h4, .footer__news h4 { font-size: 0.92rem; margin-bottom: 14px; }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { color: var(--muted); font-size: 0.92rem; transition: color 0.15s; }
.footer__col a:hover { color: #0c63b0; }
.news { display: flex; gap: 8px; }
.news input { flex: 1; background: rgba(15,28,52,0.045); border: 1px solid var(--glass-line); border-radius: 999px; padding: 11px 16px; color: var(--ink); font-family: inherit; font-size: 0.9rem; }
.news input::placeholder { color: var(--muted-2); }
.news input:focus { outline: none; border-color: var(--gold); }
.news__msg { color: var(--gold); font-size: 0.86rem; margin: 10px 0 0; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--glass-line); border-radius: 12px; font-family: "Space Grotesk", monospace; font-size: 0.78rem; color: var(--muted); background: rgba(15,28,52,0.04); transition: 0.18s; }
.social a:hover { color: #241703; background: var(--grad); border-color: transparent; transform: translateY(-2px); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--hairline); color: var(--muted-2); font-size: 0.84rem; }
.footer__bottom b { color: var(--gold); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(20, 30, 55, 0.38); backdrop-filter: blur(8px); }
.modal__card { position: relative; width: min(440px, 100%); border-radius: var(--r-lg); padding: 32px; background: rgba(255,255,255,0.97); backdrop-filter: blur(28px) saturate(160%); border: 1px solid var(--glass-line); box-shadow: var(--shadow); }
.modal__close { position: absolute; top: 14px; right: 16px; background: none; border: 0; color: var(--muted); font-size: 1.7rem; cursor: pointer; line-height: 1; }
.modal__close:hover { color: var(--ink); }
.modal__card h3 { font-size: 1.45rem; }
.modal__lead { color: var(--muted); font-size: 0.94rem; margin: 8px 0 22px; }
.wallets { display: grid; gap: 10px; }
.wallet { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1rem; text-align: left; background: rgba(15,28,52,0.04); border: 1px solid var(--glass-line); border-radius: 16px; padding: 14px 18px; color: var(--ink); cursor: pointer; transition: 0.18s; }
.wallet:hover { border-color: rgba(245,182,56,0.5); transform: translateX(3px); box-shadow: var(--shadow-soft); }
.modal__note { min-height: 20px; color: var(--gold); font-size: 0.88rem; margin: 18px 0 0; text-align: center; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px) scale(0.99); filter: blur(4px); transition: opacity 0.85s cubic-bezier(.2,.7,.2,1), transform 0.85s cubic-bezier(.2,.7,.2,1), filter 0.85s ease; }
.reveal.is-visible { opacity: 1; transform: none; filter: none; }

/* ---------- Keyframes ---------- */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes pulseGlow { 0%, 100% { opacity: 0.75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes gradShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes shine { 0% { left: -40%; } 55%, 100% { left: 130%; } }
@keyframes feedIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes morph1 { 0%,100% { transform: translate(0,0) scale(1) rotate(0deg); border-radius: 45% 55% 52% 48% / 50% 46% 54% 50%; } 50% { transform: translate(-44px,34px) scale(1.12) rotate(40deg); border-radius: 60% 40% 42% 58% / 44% 60% 40% 56%; } }
@keyframes morph2 { 0%,100% { transform: translate(0,0) scale(1) rotate(0deg); border-radius: 50% 50% 48% 52% / 52% 48% 52% 48%; } 50% { transform: translate(50px,-38px) scale(1.1) rotate(-36deg); border-radius: 42% 58% 60% 40% / 56% 44% 56% 44%; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding: 44px 0 40px; }
  .calc { grid-template-columns: 1fr; }
  .calc__controls { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .plans, .steps, .quotes { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links, .ticker { display: none; }
  .nav__burger { display: flex; }
  .nav__right .btn--solid { display: none; }
  .feed__row { grid-template-columns: 1fr 1fr; }
  .feed__act { display: none; }
}
@media (max-width: 540px) {
  .stats__grid, .features, .footer__grid { grid-template-columns: 1fr; }
  .coin { width: 180px; height: 180px; }
  .coin__sym { font-size: 5rem; }
}

/* ---------- Accessibility ---------- */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 8px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
}
