/* ============================================================
   SYTN PROTOCOL — Shared design system
   ============================================================ */
:root {
  --void:        #060E0C;
  --forest:      #0D4A35;
  --mint:        #C2F0DC;
  --live:        #1AFFA0;
  --surface:     #0A1F16;
  --border:      #163D28;
  --text-sec:    #6BBFA0;
  --text-pri:    #F0FFF8;
  --white:       #FFFFFF;
  --solana:      #9945FF;
  --cta:         linear-gradient(135deg, #1AFFA0 0%, #0D9B6A 100%);
  --glow:        radial-gradient(ellipse at 50% 60%, #1AFFA0 0%, #0D4A35 45%, #060E0C 100%);
  --serif:       'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans:        'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --maxw:        1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--void); color: var(--text-pri);
  font-family: var(--sans); font-weight: 300; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--live); color: var(--void); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }
.eyebrow { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--live); font-weight: 600; margin-bottom: 18px; }
.eyebrow.solana { color: var(--solana); }
h2.section-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(30px, 4.4vw, 52px); line-height: 1.1;
  color: var(--text-pri); letter-spacing: -0.01em; margin-bottom: 22px;
}
.section-lead { font-size: clamp(16px, 1.5vw, 19px); color: var(--text-sec); max-width: 720px; font-weight: 300; }
.pad { padding: clamp(80px, 11vw, 150px) 0; }
.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  padding: 12px 22px; border-radius: 10px; cursor: pointer; border: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}
.btn-primary { background: var(--cta); color: #052016; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px -6px rgba(26,255,160,0.55); }
.btn-ghost { background: transparent; color: var(--text-pri); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--live); color: var(--live); }
.btn-lg { padding: 16px 30px; font-size: 15px; }

/* ---------- Navigation ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(14px); background: rgba(6, 14, 12, 0.72);
  border-bottom: 1px solid transparent; transition: border-color .3s ease, background .3s ease;
}
header.scrolled { border-bottom: 1px solid var(--border); background: rgba(6,14,12,0.9); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: baseline; gap: 9px; }
.brand .mark { font-family: var(--serif); font-weight: 700; font-size: 25px; letter-spacing: 0.14em; color: var(--text-pri); }
.brand .sub { font-size: 10px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--text-sec); font-weight: 600; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--text-sec); font-weight: 400; transition: color .2s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--text-pri); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--live); border-radius: 2px; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; color: var(--text-pri); font-size: 26px; cursor: pointer; line-height: 1; }

/* ---------- Hero ---------- */
.hero { padding-top: 72px; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: -20% -10% auto -10%; height: 130%; background: var(--glow); opacity: 0.55; filter: blur(8px); z-index: 0; pointer-events: none; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(6,14,12,0) 55%, var(--void) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(22,61,40,0.16) 39px),
    repeating-linear-gradient(90deg, transparent, transparent 38px, rgba(22,61,40,0.16) 39px);
}
.hero .wrap { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--border); background: rgba(10,31,22,0.6); padding: 7px 15px; border-radius: 100px; font-size: 12.5px; color: var(--text-sec); letter-spacing: 0.04em; margin-bottom: 30px; }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--live); box-shadow: 0 0 10px var(--live); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(40px, 6.6vw, 84px); line-height: 1.03; letter-spacing: -0.02em; max-width: 16ch; margin-bottom: 26px; }
.hero h1 .accent { background: linear-gradient(90deg, var(--live), var(--mint)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead { font-size: clamp(16px, 1.7vw, 21px); color: var(--text-sec); max-width: 640px; font-weight: 300; margin-bottom: 38px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 860px; }
.stat .num { font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 3.2vw, 38px); color: var(--text-pri); line-height: 1; }
.stat .num span { color: var(--live); }
.stat .lbl { font-size: 13px; color: var(--text-sec); margin-top: 8px; letter-spacing: 0.02em; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding: 150px 0 70px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: -40% -30% auto auto; width: 70%; height: 150%; background: var(--glow); opacity: 0.3; filter: blur(20px); z-index: 0; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(36px, 5.4vw, 64px); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 22px; max-width: 18ch; }
.page-hero h1 .accent { background: linear-gradient(90deg, var(--live), var(--mint)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.page-hero p { font-size: clamp(16px, 1.6vw, 20px); color: var(--text-sec); max-width: 680px; }

/* ---------- Aggregation section (Home) ---------- */
.agg { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); overflow: hidden; }
.agg-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.agg-copy .big { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.12; letter-spacing: -0.01em; margin-bottom: 22px; }
.agg-copy .big em { font-style: normal; color: var(--live); }
.agg-copy p { font-size: 16.5px; color: var(--text-sec); margin-bottom: 18px; }
.agg-points { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.agg-points .pt { display: flex; gap: 13px; align-items: flex-start; font-size: 15px; color: var(--text-pri); }
.agg-points .pt b { color: var(--live); font-weight: 600; }
.agg-points .pt .chk { color: var(--live); flex-shrink: 0; }

/* Convergence visual */
.converge { position: relative; height: 420px; border: 1px solid var(--border); border-radius: 20px; background: radial-gradient(circle at 50% 50%, rgba(13,74,53,0.35), rgba(6,14,12,0.2)); overflow: hidden; }
.converge .hub {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 132px; height: 132px; border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: var(--cta); color: #052016; font-weight: 700; font-size: 15px; letter-spacing: 0.04em;
  box-shadow: 0 0 60px -6px rgba(26,255,160,0.6); z-index: 5;
}
.converge .hub small { display: block; font-size: 10px; letter-spacing: 0.28em; font-weight: 700; margin-top: 2px; }
.converge .node {
  position: absolute; padding: 8px 14px; border-radius: 100px; font-size: 12.5px; font-weight: 500;
  border: 1px solid var(--border); background: rgba(10,31,22,0.9); color: var(--text-pri); white-space: nowrap;
  z-index: 4; animation: floaty 5s ease-in-out infinite;
}
.converge .node::before { content: ""; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.converge svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.converge svg line { stroke: var(--border); stroke-width: 1; stroke-dasharray: 4 5; }
.converge svg line.live { stroke: var(--live); opacity: 0.5; }

/* ---------- Players strip (interactive marquee) ---------- */
.players { background: var(--void); border-bottom: 1px solid var(--border); padding: 70px 0; overflow: hidden; }
.players .head { text-align: center; margin-bottom: 44px; }
.players .head .eyebrow { display: inline-block; }
.players .head h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 3vw, 36px); }
.marquee { position: relative; display: flex; flex-direction: column; gap: 18px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.mq-row { display: flex; gap: 18px; width: max-content; }
.mq-row.r1 { animation: scrollL 34s linear infinite; }
.mq-row.r2 { animation: scrollR 38s linear infinite; }
.players:hover .mq-row { animation-play-state: paused; }
@keyframes scrollL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.chip {
  display: inline-flex; align-items: center; gap: 12px; padding: 16px 26px; border-radius: 14px;
  border: 1px solid var(--border); background: linear-gradient(180deg, var(--surface), rgba(10,31,22,0.4));
  white-space: nowrap; transition: border-color .25s, transform .25s, box-shadow .25s;
}
.chip:hover { border-color: var(--live); transform: translateY(-3px); box-shadow: 0 10px 30px -12px rgba(26,255,160,0.5); }
.chip .ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: rgba(26,255,160,0.1); color: var(--live); font-size: 16px; flex-shrink: 0; }
.chip .t { display: flex; flex-direction: column; line-height: 1.25; }
.chip .t b { font-size: 15px; font-weight: 600; color: var(--text-pri); }
.chip .t span { font-size: 12px; color: var(--text-sec); }

/* ---------- Price Discovery (regimes + accordion) ---------- */
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 60px; }
.regime { border: 1px solid var(--border); border-radius: 18px; padding: 36px; background: linear-gradient(180deg, var(--surface), rgba(10,31,22,0.4)); position: relative; overflow: hidden; }
.regime::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.regime.open::after { background: linear-gradient(90deg, var(--solana), transparent); }
.regime.closed::after { background: linear-gradient(90deg, var(--live), transparent); }
.regime .tag { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.regime.open .tag { color: var(--solana); }
.regime.closed .tag { color: var(--live); }
.regime h3 { font-family: var(--serif); font-weight: 600; font-size: 24px; margin-bottom: 14px; color: var(--text-pri); }
.regime p { font-size: 15px; color: var(--text-sec); margin-bottom: 18px; }
.regime .mech { display: flex; flex-direction: column; gap: 12px; }
.regime .mech .item { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--text-pri); }
.regime .mech .item b { color: var(--live); font-weight: 600; }
.regime.open .mech .item b { color: var(--solana); }
.chk { color: var(--live); flex-shrink: 0; margin-top: 2px; }
.regime.open .chk { color: var(--solana); }

/* Accordion */
.accordion { margin-top: 40px; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-item:last-child { border-bottom: none; }
.acc-head { width: 100%; text-align: left; background: rgba(10,31,22,0.35); border: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--text-pri); font-family: var(--sans); transition: background .2s; }
.acc-head:hover { background: rgba(13,74,53,0.25); }
.acc-head .ttl { display: flex; align-items: center; gap: 14px; font-size: 17px; font-weight: 600; }
.acc-head .ttl .n { color: var(--live); font-family: var(--serif); font-size: 15px; }
.acc-head .pm { width: 26px; height: 26px; flex-shrink: 0; border: 1px solid var(--border); border-radius: 50%; display: grid; place-items: center; color: var(--live); font-size: 16px; transition: transform .3s, background .3s; }
.acc-item.active .acc-head .pm { transform: rotate(45deg); background: rgba(26,255,160,0.12); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.acc-body .inner { padding: 0 26px 24px; font-size: 15px; color: var(--text-sec); }

/* ---------- Cards / generic grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 40px; }
.card { border: 1px solid var(--border); border-radius: 16px; padding: 30px; background: linear-gradient(180deg, rgba(13,74,53,0.18), rgba(10,31,22,0.2)); transition: transform .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-4px); border-color: var(--live); }
.card .ic { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: rgba(26,255,160,0.1); border: 1px solid var(--border); margin-bottom: 20px; color: var(--live); font-size: 20px; }
.card h3 { font-size: 18px; font-weight: 600; color: var(--text-pri); margin-bottom: 11px; }
.card p { font-size: 14.5px; color: var(--text-sec); }
.card .meta { margin-top: 16px; font-size: 12px; letter-spacing: 0.06em; color: var(--live); text-transform: uppercase; font-weight: 600; }

/* Teaser cards (Home -> pages) */
.teasers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.teaser { border: 1px solid var(--border); border-radius: 18px; padding: 34px; background: linear-gradient(180deg, var(--surface), rgba(10,31,22,0.3)); display: flex; flex-direction: column; transition: transform .25s, border-color .25s; }
.teaser:hover { transform: translateY(-5px); border-color: var(--live); }
.teaser .k { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--live); font-weight: 600; margin-bottom: 16px; }
.teaser h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.teaser p { font-size: 14.5px; color: var(--text-sec); flex: 1; margin-bottom: 22px; }
.teaser .go { font-size: 14px; font-weight: 600; color: var(--live); display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Tables ---------- */
.cmp { margin-top: 56px; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 16px 20px; font-size: 14.5px; border-bottom: 1px solid var(--border); }
thead th { background: rgba(10,31,22,0.6); font-weight: 600; color: var(--text-sec); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
thead th.sytn { color: var(--live); }
tbody td:first-child { color: var(--text-sec); font-weight: 500; }
tbody td { color: var(--text-pri); }
tbody td.sytn { color: var(--live); font-weight: 600; background: rgba(26,255,160,0.04); }
tbody tr:last-child td { border-bottom: none; }

/* ---------- Tokenomics ---------- */
.tk-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; margin-top: 56px; align-items: start; }
.tk-summary { display: flex; flex-direction: column; gap: 22px; }
.tk-stat { border: 1px solid var(--border); border-radius: 14px; padding: 24px 26px; background: rgba(10,31,22,0.4); }
.tk-stat .v { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--live); }
.tk-stat .k { font-size: 13.5px; color: var(--text-sec); margin-top: 6px; }
.alloc { display: flex; flex-direction: column; gap: 18px; }
.alloc-row .top { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
.alloc-row .top .name { color: var(--text-pri); font-weight: 500; }
.alloc-row .top .pct { color: var(--live); font-weight: 600; font-variant-numeric: tabular-nums; }
.bar { height: 9px; border-radius: 6px; background: var(--border); overflow: hidden; }
.bar > i { display: block; height: 100%; width: 0; border-radius: 6px; background: var(--cta); transition: width 1.1s cubic-bezier(.22,.61,.36,1); }
.util-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 16px; }
.util { border: 1px solid var(--border); border-radius: 13px; padding: 22px; background: rgba(10,31,22,0.35); }
.util h4 { font-size: 15px; font-weight: 600; color: var(--live); margin-bottom: 8px; }
.util p { font-size: 14px; color: var(--text-sec); }
.bignums { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 56px; }
.bignum { border: 1px solid var(--border); border-radius: 16px; padding: 30px 26px; background: rgba(10,31,22,0.4); }
.bignum .v { font-family: var(--serif); font-size: clamp(30px,3.6vw,44px); font-weight: 600; color: var(--live); line-height: 1; font-variant-numeric: tabular-nums; }
.bignum .v .suf { color: var(--text-pri); }
.bignum .k { font-size: 13.5px; color: var(--text-sec); margin-top: 12px; }

/* ---------- Roadmap (timeline) ---------- */
.timeline { position: relative; margin-top: 64px; padding-left: 0; }
.timeline::before { content: ""; position: absolute; left: 21px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--live), var(--forest) 60%, transparent); }
.tl-item { position: relative; padding: 0 0 48px 64px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: 12px; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--void); border: 2px solid var(--live); box-shadow: 0 0 0 5px rgba(26,255,160,0.12); z-index: 2; }
.tl-item.reveal .tl-dot { transition: transform .5s ease; transform: scale(0); }
.tl-item.reveal.in .tl-dot { transform: scale(1); }
.tl-card { border: 1px solid var(--border); border-radius: 16px; padding: 28px 30px; background: linear-gradient(180deg, var(--surface), rgba(10,31,22,0.3)); }
.tl-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.tl-meta .ph { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--live); font-weight: 600; }
.tl-meta .time { font-size: 13px; color: var(--text-sec); border-left: 1px solid var(--border); padding-left: 14px; }
.tl-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.tl-card p { font-size: 14.5px; color: var(--text-sec); margin-bottom: 16px; }
.tl-kpi { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-pri); border: 1px solid var(--border); border-radius: 8px; padding: 8px 14px; background: rgba(26,255,160,0.05); }
.tl-kpi b { color: var(--live); font-weight: 600; }

/* ---------- Forms / Presale ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.sale-card { border: 1px solid var(--border); border-radius: 20px; padding: 40px; background: linear-gradient(180deg, var(--surface), rgba(6,14,12,0.85)); position: relative; overflow: hidden; }
.sale-card.featured { border-color: rgba(26,255,160,0.4); box-shadow: 0 30px 90px -50px rgba(26,255,160,0.5); }
.sale-card::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.sale-card.featured::after { background: var(--cta); }
.sale-card.public::after { background: linear-gradient(90deg, var(--solana), transparent); }
.sale-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin-bottom: 18px; padding: 6px 13px; border-radius: 100px; border: 1px solid var(--border); }
.sale-card.featured .sale-tag { color: var(--live); }
.sale-card.public .sale-tag { color: var(--solana); }
.sale-card h3 { font-family: var(--serif); font-size: 27px; font-weight: 600; margin-bottom: 12px; }
.sale-card > p { font-size: 15px; color: var(--text-sec); margin-bottom: 24px; }
.sale-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.sale-list .li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--text-pri); }
.sale-list .li .chk { color: var(--live); }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13px; color: var(--text-sec); font-weight: 500; }
.field input, .field select { padding: 14px 16px; border-radius: 11px; border: 1px solid var(--border); background: rgba(6,14,12,0.7); color: var(--text-pri); font-family: var(--sans); font-size: 15px; }
.field input:focus, .field select:focus { outline: none; border-color: var(--live); }
.field input::placeholder { color: var(--text-sec); }
.form-msg { margin-top: 14px; font-size: 14px; min-height: 20px; color: var(--live); }
.form-note { margin-top: 18px; font-size: 12px; color: var(--text-sec); opacity: 0.8; line-height: 1.6; }
.presale-figures { display: flex; gap: 44px; justify-content: center; flex-wrap: wrap; margin-top: 56px; }
.presale-figures .f { text-align: center; }
.presale-figures .f .v { font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--live); font-variant-numeric: tabular-nums; }
.presale-figures .f .k { font-size: 13px; color: var(--text-sec); margin-top: 6px; }

/* ---------- Trust strip ---------- */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.trust .wrap { display: flex; align-items: center; gap: 40px; padding-top: 26px; padding-bottom: 26px; flex-wrap: wrap; }
.trust .label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-sec); white-space: nowrap; }
.trust .names { display: flex; gap: 34px; flex-wrap: wrap; flex: 1; }
.trust .names span { font-size: 15px; font-weight: 500; color: var(--text-pri); opacity: 0.78; letter-spacing: 0.02em; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: auto -10% -50% -10%; height: 120%; background: var(--glow); opacity: 0.4; filter: blur(10px); z-index: 0; }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-inner { border: 1px solid var(--border); border-radius: 22px; background: linear-gradient(180deg, rgba(10,31,22,0.85), rgba(6,14,12,0.9)); padding: clamp(40px, 6vw, 72px); text-align: center; box-shadow: 0 40px 120px -50px rgba(26,255,160,0.4); }
.cta-inner h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 4.4vw, 50px); margin-bottom: 18px; letter-spacing: -0.01em; }
.cta-inner p { font-size: 17px; color: var(--text-sec); max-width: 600px; margin: 0 auto 32px; }
.cta-inner .hero-cta { justify-content: center; margin-bottom: 0; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--border); background: var(--void); }
.ft-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding: 64px 0 48px; }
.ft-brand .mark { font-family: var(--serif); font-weight: 700; font-size: 24px; letter-spacing: 0.14em; }
.ft-brand .sub { font-size: 10px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--text-sec); font-weight: 600; margin-left: 6px; }
.ft-brand p { font-size: 14px; color: var(--text-sec); margin-top: 18px; max-width: 320px; }
.ft-col h5 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-sec); margin-bottom: 18px; font-weight: 600; }
.ft-col a { display: block; font-size: 14.5px; color: var(--text-pri); opacity: 0.82; margin-bottom: 11px; transition: color .2s; }
.ft-col a:hover { color: var(--live); opacity: 1; }
.ft-legal { border-top: 1px solid var(--border); padding: 26px 0 40px; }
.ft-legal p { font-size: 12px; color: var(--text-sec); line-height: 1.7; opacity: 0.78; margin-bottom: 14px; }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--text-sec); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .agg-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-links { position: fixed; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(6,14,12,0.98); border-bottom: 1px solid var(--border); padding: 10px 28px 20px; display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: block; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .pd-grid, .tk-grid, .util-grid, .split { grid-template-columns: 1fr; }
  .grid-3, .grid-2, .teasers, .bignums { grid-template-columns: 1fr; }
  .cmp { overflow-x: auto; }
  .ft-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .hero-stats, .bignums { grid-template-columns: 1fr 1fr; }
  .ft-top { grid-template-columns: 1fr; }
  .converge { height: 360px; }
}

/* ---------- Documents / Whitepaper ---------- */
.docs { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.docs-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 22px; margin-top: 56px; }
.doc { border: 1px solid var(--border); border-radius: 18px; padding: 32px; background: linear-gradient(180deg, rgba(13,74,53,0.18), rgba(10,31,22,0.2)); display: flex; flex-direction: column; transition: transform .25s, border-color .25s; }
.doc:hover { transform: translateY(-4px); border-color: var(--live); }
.doc.primary { background: linear-gradient(180deg, rgba(26,255,160,0.10), rgba(10,31,22,0.3)); border-color: rgba(26,255,160,0.35); }
.doc .badge { display: inline-flex; align-items: center; gap: 9px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--live); margin-bottom: 20px; }
.doc .pdf-ic { width: 48px; height: 58px; border-radius: 8px; border: 1px solid var(--border); background: rgba(6,14,12,0.6); display: grid; place-items: center; color: var(--live); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 22px; position: relative; }
.doc.primary .pdf-ic { border-color: rgba(26,255,160,0.4); }
.doc h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.doc p { font-size: 14px; color: var(--text-sec); flex: 1; margin-bottom: 22px; }
.doc .file-meta { font-size: 12px; color: var(--text-sec); opacity: 0.75; margin-bottom: 16px; letter-spacing: 0.03em; }
.doc .btn { width: 100%; }
@media (max-width: 900px) { .docs-grid { grid-template-columns: 1fr; } }

/* ---------- Presale: consents, risk banner, honeypot ---------- */
.risk-banner {
  border: 1px solid var(--border);
  border-left: 3px solid var(--live);
  background: rgba(10,31,22,0.5);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-sec);
  margin-bottom: 36px;
}
.risk-banner strong { color: var(--text-pri); }
.risk-banner a { color: var(--live); text-decoration: underline; }

.consents { display: flex; flex-direction: column; gap: 14px; margin: 6px 0 22px; }
.consents .cbx {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 12.5px; line-height: 1.5; color: var(--text-sec); cursor: pointer;
}
.consents .cbx input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px;
  border: 1px solid var(--border); border-radius: 5px;
  background: rgba(6,14,12,0.7); cursor: pointer; position: relative; transition: all .15s;
}
.consents .cbx input[type="checkbox"]:checked { background: var(--live); border-color: var(--live); }
.consents .cbx input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 5px; top: 1px;
  width: 5px; height: 10px; border: solid var(--void); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.consents .cbx a { color: var(--live); text-decoration: underline; }

/* honeypot — hidden from real users */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Legal pages ---------- */
.legal-doc { max-width: 820px; }
.legal-doc h2 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--text-pri); margin: 30px 0 10px; }
.legal-doc p { font-size: 15px; line-height: 1.7; color: var(--text-sec); margin-bottom: 14px; }
.legal-doc a { color: var(--live); text-decoration: underline; }
.legal-doc strong { color: var(--text-pri); }
.legal-flag {
  border: 1px solid var(--live); border-radius: 12px;
  background: rgba(26,255,160,0.06);
  padding: 16px 20px; font-size: 13px; line-height: 1.6; color: var(--text-sec); margin-bottom: 30px;
}
.legal-ph { color: var(--solana); font-weight: 600; }
.legal-back { margin-top: 36px; }
.legal-back a { color: var(--live); }
