/* ============================================================
   XRP Holder Reward Distribution — Light Official Theme
   Pure CSS, no framework
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
*:focus-visible { outline: 2px solid #00aae4; outline-offset: 2px; border-radius: 4px; }

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7fa;
  --bg-tint: #eef2f7;
  --ink: #0a1428;
  --ink-2: #1c2a3f;
  --muted: #5a6577;
  --muted-2: #8892a3;
  --border: #e3e7ee;
  --border-strong: #c9d1de;
  --accent: #00aae4;
  --accent-dark: #0c8fbf;
  --success: #16a34a;
  --success-bg: #e8f7ee;
  --warn: #b45309;
  --warn-bg: #fef3c7;
  --danger: #dc2626;
  --danger-bg: #fee2e2;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(10,20,40,.06);
  --shadow-md: 0 6px 24px rgba(10,20,40,.08);
  --shadow-lg: 0 20px 50px rgba(10,20,40,.12);
  --font-sans: 'Chivo', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Chivo Mono', 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }

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

/* ===================== TOP BAR ===================== */
.topbar {
  background: #0a1428;
  color: #cdd5e2;
  font-size: 13px;
  border-bottom: 1px solid #1c2a3f;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 24px; max-width: 1400px; margin: 0 auto;
  flex-wrap: wrap; gap: 8px;
}
.topbar .dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; margin-right: 8px; box-shadow: 0 0 0 3px rgba(34,197,94,.18);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  50%     { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.topbar-links { display: flex; gap: 18px; opacity: .8; }
.topbar-links a:hover { color: #fff; }

/* ===================== NAV ===================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1400px; margin: 0 auto; padding: 0 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; letter-spacing: -.01em; font-size: 18px;
}
.brand-logo {
  width: 38px; height: 38px; border-radius: 50%;
  background: #0a1428; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.brand small { display:block; font-weight: 500; font-size: 11px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: var(--ink-2); font-size: 14px; font-weight: 500;
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14px; letter-spacing: .01em;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn-primary { background: #0a1428; color: #fff; }
.btn-primary:hover { background: #00aae4; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,170,228,.28); }
.btn-ghost { color: var(--ink-2); border: 1px solid var(--border-strong); background: #fff; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,170,228,.28); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

@media (max-width: 760px){
  .nav-links { display: none; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 84px 0 100px;
  background:
    radial-gradient(60% 80% at 80% -10%, rgba(0,170,228,.10), transparent 70%),
    radial-gradient(40% 70% at 10% 10%, rgba(10,20,40,.04), transparent 70%),
    var(--bg);
  overflow: hidden;
}
.hero::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(to right, rgba(10,20,40,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,20,40,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at top, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top, #000 30%, transparent 70%);
}
.hero-grid {
  display: grid; gap: 56px;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 980px){
  .hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--ink-2);
  letter-spacing: .08em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.eyebrow .badge-dot { width:6px; height:6px; border-radius:50%; background: var(--success); }

h1.hero-title {
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.04;
  letter-spacing: -.022em;
  margin: 18px 0 18px;
  font-weight: 800;
  color: var(--ink);
}
h1.hero-title em {
  font-style: normal;
  background: linear-gradient(180deg, #0a1428 0%, #1f3a5c 60%, #00aae4 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 17px; color: var(--muted);
  max-width: 540px; margin-bottom: 32px;
}

.trust-row {
  display: flex; flex-wrap: wrap; gap: 22px 32px;
  margin-top: 28px; align-items: center;
  font-size: 13px; color: var(--muted);
}
.trust-row .tr-item { display: flex; align-items: center; gap: 8px; }
.trust-row svg { width: 18px; height: 18px; flex: none; }

/* ===================== ELIGIBILITY CARD ===================== */
.eligibility-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.eligibility-card::before{
  content:''; position:absolute; inset:-1px; border-radius:22px; padding:1px;
  background: linear-gradient(135deg, rgba(0,170,228,.6), transparent 40%, transparent 60%, rgba(10,20,40,.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events:none;
}
.card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.card-head h3 { font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.live-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--success-bg); color: #157a3d;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  padding: 4px 10px; border-radius: 999px; text-transform: uppercase;
}
.live-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(22,163,74,.22); animation: pulse 1.6s ease-in-out infinite; }

.field-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.input {
  width: 100%; padding: 14px 16px;
  font-size: 15px; color: var(--ink);
  border: 1.5px solid var(--border-strong); background: #fff;
  border-radius: 12px; transition: border-color .2s, box-shadow .2s;
  font-family: var(--font-mono); letter-spacing: -.005em;
}
.input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(0,170,228,.12); }
.input.error { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(220,38,38,.10); }
.hint { font-size: 12px; color: var(--muted); margin-top: 8px; }
.error-msg { font-size: 13px; color: var(--danger); margin-top: 8px; display: none; }
.error-msg.visible { display: block; }

.result-box {
  margin-top: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  background: var(--bg-soft);
  display: none;
}
.result-box.visible { display: block; animation: fadeUp .35s ease both; }
.result-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--border); }
.result-row:last-child { border-bottom: none; }
.result-row .k { color: var(--muted); font-size: 13px; }
.result-row .v { font-weight: 600; font-family: var(--font-mono); font-size: 14px; color: var(--ink); }
.result-row .v.success { color: var(--success); }
.result-row .v.danger  { color: var(--danger); }

.reward-badge {
  margin-top: 14px;
  background: linear-gradient(180deg, #f0fbff 0%, #d6f4ff 100%);
  border: 1px solid #aee4f5;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.reward-badge .label { font-size: 12px; font-weight: 700; letter-spacing: .14em; color: #0c8fbf; text-transform: uppercase; }
.reward-badge .amount { font-family: var(--font-mono); font-weight: 700; font-size: 38px; color: var(--ink); margin-top: 6px; letter-spacing: -.01em; }
.reward-badge .xrp { color: var(--muted); font-size: 13px; margin-top: 2px; }

@keyframes fadeUp { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: translateY(0); } }

/* ===================== STATS STRIP ===================== */
.stats {
  padding: 50px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 860px){ .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
  text-align: left;
}
.stat .num {
  font-family: var(--font-mono); font-weight: 700; font-size: 34px;
  color: var(--ink); letter-spacing: -.02em;
}
.stat .lbl {
  margin-top: 4px;
  font-size: 13px; color: var(--muted); letter-spacing: .04em;
}

/* ===================== SECTION COMMONS ===================== */
section.section { padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-eyebrow {
  color: var(--accent-dark); font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 14px;
}
h2.section-title {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1; font-weight: 800; letter-spacing: -.02em;
}
.section-sub { margin-top: 14px; color: var(--muted); font-size: 17px; max-width: 600px; }

/* ===================== HOW IT WORKS ===================== */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 860px){ .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.step .num {
  width: 40px; height: 40px; border-radius: 10px; background: #0a1428; color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-mono);
  margin-bottom: 18px;
}
.step h4 { font-size: 18px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 6px; }
.step p  { color: var(--muted); font-size: 14.5px; }

/* ===================== ELIGIBILITY EXPLAIN ===================== */
.split {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 980px){ .split { grid-template-columns: 1fr; gap: 36px; } }
.feature-list { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.feature-list .item { display: flex; gap: 14px; }
.feature-list .icon {
  flex: none; width: 38px; height: 38px; border-radius: 10px;
  background: rgba(0,170,228,.10); color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
}
.feature-list h5 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.feature-list p  { font-size: 14px; color: var(--muted); }

.tier-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.tier-card h4 { font-size: 16px; font-weight: 700; letter-spacing:-.01em; margin-bottom: 18px; }
.tier-row {
  display:flex; justify-content:space-between; align-items:center;
  padding: 14px 0; border-top: 1px solid var(--border); font-size: 14px;
}
.tier-row:first-of-type { border-top: none; }
.tier-row .range { font-family: var(--font-mono); color: var(--muted); }
.tier-row .amount { font-weight: 700; color: var(--ink); font-family: var(--font-mono); }

/* ===================== WALLET CONNECT ===================== */
.connect-wrap {
  background:
    radial-gradient(50% 80% at 80% 0%, rgba(0,170,228,.10), transparent 70%),
    #0a1428;
  color: #e6eaf3;
  border-radius: 28px;
  padding: 56px 48px;
  position: relative; overflow: hidden;
  border: 1px solid #1f2c44;
}
.connect-wrap::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at right, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at right, #000 30%, transparent 75%);
}
.connect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; position: relative; z-index: 1; align-items: center; }
@media (max-width: 880px){
  .connect-wrap { padding: 32px 24px; border-radius: 18px; }
  .connect-grid { grid-template-columns: 1fr; gap: 28px; }
}
.connect-wrap h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; letter-spacing: -.02em; color: #fff; }
.connect-wrap p  { color: #aab3c5; margin-top: 14px; max-width: 420px; }

.wallets {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.wallet-btn {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff; padding: 14px 16px;
  border-radius: 12px; font-weight: 600; font-size: 14px;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  text-align: left;
}
.wallet-btn:hover { background: rgba(255,255,255,.10); border-color: rgba(0,170,228,.5); transform: translateY(-1px); }
.wallet-btn .logo {
  width: 36px; height: 36px; border-radius: 10px; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--font-mono);
}
.wallet-btn small { display: block; font-weight: 500; font-size: 11px; color: #aab3c5; letter-spacing: .04em; }

.logo-xumm     { background: linear-gradient(135deg,#1a73e8,#0d47a1); color:#fff; }
.logo-trust    { background: linear-gradient(135deg,#3375bb,#0f4f9f); color:#fff; }
.logo-metamask { background: linear-gradient(135deg,#f6851b,#cc6228); color:#fff; }
.logo-ledger   { background: linear-gradient(135deg,#111827,#000); color:#fff; }
.logo-crossmark{ background: linear-gradient(135deg,#7c3aed,#5b21b6); color:#fff; }

/* ===================== LIVE FEED ===================== */
.feed {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px;
}
@media (max-width: 980px){ .feed { grid-template-columns: 1fr; gap: 32px; } }
.feed-list {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.feed-head {
  display:flex; justify-content:space-between; align-items:center;
  padding: 16px 20px; border-bottom: 1px solid var(--border); background: var(--bg-soft);
  font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: .05em;
}
.feed-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  font-size: 14px; animation: slideIn .4s ease both;
}
.feed-row:last-child { border-bottom: none; }
.feed-row .addr { font-family: var(--font-mono); color: var(--ink-2); }
.feed-row .amt  { font-family: var(--font-mono); font-weight: 700; color: var(--success); }
.feed-row .ago  { font-size: 12px; color: var(--muted-2); }
@keyframes slideIn { from { opacity: 0; transform: translateY(-6px);} to { opacity: 1; transform: translateY(0);} }

.countdown-card {
  background: #0a1428; color: #fff;
  border-radius: var(--radius); padding: 28px;
  border: 1px solid #1f2c44;
  position: relative; overflow: hidden;
}
.countdown-card::after{
  content:''; position:absolute; right:-40px; bottom:-40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,170,228,.30), transparent 70%);
}
.countdown-card .eb { color: #00aae4; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.countdown-card h4 { font-size: 22px; margin: 6px 0 22px; font-weight: 800; letter-spacing: -.01em; }
.countdown-units { display:grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.cu {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px; padding: 14px 8px; text-align: center;
}
.cu .num { font-family: var(--font-mono); font-weight: 700; font-size: 28px; letter-spacing: -.02em; }
.cu .lbl { font-size: 10px; color: #aab3c5; letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }

.progress {
  margin-top: 22px;
}
.progress .top { display: flex; justify-content: space-between; font-size: 12px; color: #aab3c5; margin-bottom: 8px; }
.progress .bar { height: 8px; background: rgba(255,255,255,.08); border-radius: 999px; overflow: hidden; }
.progress .fill {
  height: 100%; width: 73%;
  background: linear-gradient(90deg, #00aae4, #4cd5ff);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(0,170,228,.4);
}

/* ===================== FAQ ===================== */
.faq {
  display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 820px; margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border); border-radius: 14px; background: #fff;
  overflow: hidden; transition: border-color .2s, box-shadow .25s;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item.open { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,170,228,.10); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; font-weight: 600; font-size: 16px; color: var(--ink);
  text-align: left;
}
.faq-q .chev { width: 22px; height: 22px; flex: none; transition: transform .25s ease; color: var(--muted); }
.faq-item.open .chev { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s;
  padding: 0 22px; color: var(--muted); font-size: 14.5px;
}
.faq-item.open .faq-a { max-height: 320px; padding: 0 22px 20px; }

/* ===================== FOOTER ===================== */
footer.footer {
  background: #0a1428; color: #aab3c5; padding: 56px 0 28px;
  border-top: 1px solid #1f2c44;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 36px; }
@media (max-width: 880px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h6 { color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer ul a:hover { color: #fff; }
.footer .brand-foot { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 700; margin-bottom: 12px; }
.footer .small { font-size: 12px; color: #6f7a90; max-width: 320px; }
.footer-bottom {
  margin-top: 36px; padding-top: 24px; border-top: 1px solid #1f2c44;
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 12px; color: #6f7a90;
}
@media (max-width: 600px){ .footer-bottom { flex-direction: column; } }

/* ===================== MODAL ===================== */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(10,20,40,.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  z-index: 1000; padding: 20px;
}
.modal-backdrop.open { display: flex; animation: fadeUp .3s ease; }
.modal {
  background: #fff; border-radius: 20px; width: 100%; max-width: 460px;
  padding: 28px; box-shadow: var(--shadow-lg);
  position: relative;
}
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: background .2s;
}
.modal-close:hover { background: var(--bg-soft); color: var(--ink); }
.modal h3 { font-size: 22px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 6px; }
.modal .sub { color: var(--muted); font-size: 14px; margin-bottom: 22px; }

.connect-status {
  margin-top: 18px; padding: 16px;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 12px; font-size: 14px;
  display: none;
}
.connect-status.visible { display: block; animation: fadeUp .25s ease; }
.connect-status .step-line {
  display: flex; align-items: center; gap: 10px; padding: 6px 0;
  color: var(--muted);
}
.connect-status .step-line.done { color: var(--success); }
.connect-status .step-line.active { color: var(--ink); font-weight: 600; }
.connect-status .step-line.fail { color: var(--danger); }
.connect-status .step-icon {
  width: 18px; height: 18px; border-radius: 50%; flex: none;
  border: 2px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.spinner {
  width: 18px; height: 18px; border: 2px solid var(--border-strong);
  border-top-color: var(--accent); border-radius: 50%;
  animation: spin .9s linear infinite; flex: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: #0a1428; color: #fff; padding: 12px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 500; box-shadow: var(--shadow-lg);
  z-index: 2000; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(-4px); }

/* ===================== UTILITIES ===================== */
.bg-soft { background: var(--bg-soft); }
.text-mono { font-family: var(--font-mono); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.flex-row { display:flex; flex-wrap:wrap; gap:12px; }

/* ===================== ADDITIONAL SECTIONS ===================== */

/* Audit card (replaces reward tiers) */
.audit-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.audit-card h4 { font-size: 16px; font-weight: 700; letter-spacing:-.01em; margin-bottom: 6px; }
.audit-list { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }
.audit-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px; border: 1px solid var(--border); border-radius: 12px;
  background: var(--bg-soft);
}
.audit-logo {
  width: 40px; height: 40px; border-radius: 10px; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-family: var(--font-mono); font-size: 13px;
  letter-spacing: -.02em;
}
.audit-halborn   { background: linear-gradient(135deg, #0a1428, #1f3a5c); }
.audit-certik    { background: linear-gradient(135deg, #15803d, #052e16); }
.audit-trail     { background: linear-gradient(135deg, #b91c1c, #450a0a); }
.audit-immunefi  { background: linear-gradient(135deg, #f97316, #7c2d12); }
.audit-meta { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.audit-meta strong { font-size: 14px; font-weight: 700; color: var(--ink); }
.audit-meta span   { font-size: 12.5px; color: var(--muted); }
.audit-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.audit-tag.pass { background: var(--success-bg); color: #157a3d; }
.audit-tag.live { background: #fef3c7; color: #92400e; }

.audit-foot {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.audit-foot strong { display:block; font-family: var(--font-mono); font-size: 13px; color: var(--ink); }
.audit-foot span { font-size: 12px; color: var(--muted); }
.audit-foot-link {
  font-size: 13px; font-weight: 600; color: var(--accent-dark);
  white-space: nowrap;
}
.audit-foot-link:hover { color: var(--accent); text-decoration: underline; }

/* Connect info card (replaces inline wallet grid in step 03 block) */
.connect-info {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 26px;
}
.ci-stat { padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.10); }
.ci-num  { font-family: var(--font-mono); font-weight: 700; font-size: 38px; color: #fff; letter-spacing: -.02em; }
.ci-lbl  { font-size: 13px; color: #aab3c5; margin-top: 4px; }
.ci-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0 16px; }
.ci-cell {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 14px;
}
.ci-cell-num { font-family: var(--font-mono); font-weight: 700; font-size: 18px; color: #fff; }
.ci-cell-lbl { font-size: 11.5px; color: #aab3c5; margin-top: 4px; letter-spacing: .02em; }
.ci-mini {
  display: flex; align-items: center; gap: 10px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10); font-size: 12.5px; color: #aab3c5;
}
.ci-mini .dot { width: 8px; height: 8px; border-radius: 50%; box-shadow: 0 0 0 3px rgba(34,197,94,.20); animation: pulse 1.6s ease-in-out infinite; }
.ci-mini strong { color: #fff; font-family: var(--font-mono); }

/* Press strip */
.press-strip {
  margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border);
  text-align: center;
}
.press-label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 22px;
}
.press-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 36px 48px; opacity: .82;
}
.press-logo {
  font-weight: 800; letter-spacing: -.01em; color: var(--ink-2);
  font-size: 18px; transition: opacity .2s, transform .2s;
  filter: grayscale(100%);
  white-space: nowrap;
}
.press-logo:hover { filter: grayscale(0%); transform: translateY(-1px); }
.press-coindesk        { font-family: 'Chivo', sans-serif; }
.press-cointelegraph   { font-family: 'Chivo', sans-serif; letter-spacing: .05em; font-size: 14px; font-weight: 700; }
.press-decrypt         { font-style: italic; }
.press-theblock        { font-family: 'Chivo Mono', monospace; font-weight: 600; font-size: 16px; }
.press-bankless        { font-family: 'Chivo', sans-serif; text-transform: uppercase; font-size: 14px; letter-spacing: .12em; }
.press-coingecko       { font-family: 'Chivo', sans-serif; font-size: 16px; }

/* Community voices */
.voices-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
@media (max-width: 760px) { .voices-grid { grid-template-columns: 1fr; } }
.voice {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 22px; transition: transform .2s, box-shadow .25s, border-color .2s;
}
.voice:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.voice-head {
  display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center;
  margin-bottom: 12px;
}
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px;
}
.voice-id strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
.voice-id span   { font-size: 12.5px; color: var(--muted); }
.voice-x { width: 16px; height: 16px; color: var(--ink); }
.voice p { font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.voice-meta {
  display: flex; gap: 22px; margin-top: 14px; font-size: 12.5px; color: var(--muted-2);
  padding-top: 12px; border-top: 1px solid var(--border);
}

/* Info modal extra structure */
.info-modal-inner { max-width: 520px; }
.info-modal-inner h4 { font-size: 14px; font-weight: 700; margin: 18px 0 6px; color: var(--ink); }
.info-modal-inner p { font-size: 14px; color: var(--muted); }
.info-modal-inner .kv {
  display: grid; grid-template-columns: 120px 1fr; gap: 10px;
  padding: 10px 0; border-top: 1px dashed var(--border); font-size: 13.5px;
}
.info-modal-inner .kv:first-of-type { border-top: none; }
.info-modal-inner .kv .k { color: var(--muted); }
.info-modal-inner .kv .v { font-family: var(--font-mono); color: var(--ink); word-break: break-all; }
.info-modal-inner .pgp {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: 10px;
  padding: 12px; font-family: var(--font-mono); font-size: 11.5px; color: var(--muted);
  white-space: pre-wrap; word-break: break-all; margin-top: 6px;
}
