/* ─────────────────────────────────────────────────────────────
   GYLD FINANCE — SHARED STYLES
   ───────────────────────────────────────────────────────────── */

@font-face {
  font-family: 'DK01';
  src: url('../fonts/DK01.otf') format('opentype');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'PlayfairDisplay';
  src: url('../fonts/PlayfairDisplay-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'PlayfairDisplay';
  src: url('../fonts/PlayfairDisplay-Italic.otf') format('opentype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --gold:        #C4A96A;
  --gold-light:  #E8D9B3;
  --gold-pale:   #F5EED8;
  --ink:         #1A1A1A;
  --mid:         #5A5A5A;
  --muted:       #9A9A9A;
  --rule:        #E8E4DC;
  --bg:          #FAFAF8;
  --white:       #FFFFFF;
  --green:       #4A8C6A;
  --red:         #B05050;
  --eth:         #627EEA;
  --sol:         #9945FF;
  --f-display:   'DK01', 'Roboto', sans-serif;
  --f-serif:     'PlayfairDisplay', Georgia, serif;
  --f-body:      'Roboto', sans-serif;
  --nav-h:       68px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── UTILITY ─────────────────────────────────────────────────── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 56px; }
.serif-em   { font-family: var(--f-serif); font-style: italic; font-weight: 400; color: var(--gold); }
.eyebrow    { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.rule-h     { height: 1px; background: var(--rule); border: none; }

/* Scroll fade */
.fade       { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade.in    { opacity: 1; transform: translateY(0); }
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 13px 30px; background: var(--ink); color: var(--white);
  border: none; cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover { background: var(--gold); color: var(--ink); }

.btn-gold {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 13px 30px; background: var(--gold); color: var(--ink);
  border: none; cursor: pointer; text-decoration: none; display: inline-block;
  transition: opacity 0.2s;
}
.btn-gold:hover { opacity: 0.84; }

.btn-text {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px; transition: color 0.2s;
}
.btn-text:hover { color: var(--ink); }
.btn-text::after { content: '→'; font-weight: 400; font-size: 13px; }
.btn-text.on-dark { color: rgba(255,255,255,0.5); }
.btn-text.on-dark:hover { color: var(--white); }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; position: relative;
}
.nav-logo img { height: 26px; }
.nav-links {
  display: flex; gap: 32px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a.active { border-bottom: 1px solid var(--gold); padding-bottom: 1px; }
.nav-cta {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 11px 22px; background: var(--ink); color: var(--white);
  text-decoration: none; transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); margin: 5px 0; transition: transform 0.25s, opacity 0.25s;
}

/* ── TICKER ──────────────────────────────────────────────────── */
.ticker {
  height: 40px; overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background: var(--white); display: flex; align-items: center;
}
.ticker-track {
  display: flex; align-items: center; gap: 52px;
  animation: ticker-run 28s linear infinite;
  white-space: nowrap; padding-left: 52px;
}
@keyframes ticker-run { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.t-item { display: flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; color: var(--mid); }
.t-item .sym { color: var(--ink); }
.t-item .up  { color: var(--green); }
.t-item .dn  { color: var(--red); }
.t-dot       { color: var(--rule); font-size: 18px; line-height: 1; }
.t-eth       { color: var(--eth); }
.t-sol       { color: var(--sol); }

/* ── SECTION SHELL ───────────────────────────────────────────── */
.section        { padding: 96px 0; }
.section--white { background: var(--white); }
.section--bg    { background: var(--bg); }
.section--dark  { background: var(--ink); }
.section--dark .eyebrow    { color: var(--gold); }
.section--dark .section-head h2 { color: var(--white); }
.section--dark .section-head p  { color: rgba(255,255,255,0.5); }

.section-head { margin-bottom: 56px; }
.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 52px); font-weight: 400;
  line-height: 1.05; letter-spacing: -0.01em;
  color: var(--ink); margin-top: 12px;
}
.section-head p { font-size: 15px; color: var(--mid); margin-top: 14px; max-width: 520px; line-height: 1.7; }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  padding-top: var(--nav-h);
  min-height: 40vh;
  display: flex; align-items: flex-end;
  border-bottom: 1px solid var(--rule);
}
.page-hero--dark { background: var(--ink); }
.page-hero--white { background: var(--white); }
.page-hero--bg    { background: var(--bg); }
.page-hero-inner  { padding: 64px 0 56px; }
.page-hero-inner h1 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 72px); font-weight: 400;
  line-height: 1.0; letter-spacing: -0.01em; color: var(--ink); margin: 12px 0 18px;
}
.page-hero--dark .page-hero-inner h1 { color: var(--white); }
.page-hero--dark .eyebrow { color: var(--gold); }
.page-hero-inner p { font-size: 16px; color: var(--mid); max-width: 560px; line-height: 1.7; }
.page-hero--dark .page-hero-inner p { color: rgba(255,255,255,0.5); }

/* ── LIVE DOT ────────────────────────────────────────────────── */
.live-dot { display: flex; align-items: center; gap: 5px; font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.live-dot.green { color: var(--green); }
.live-dot.green::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.2; } }

/* ── NETWORK CARDS ───────────────────────────────────────────── */
.network-card { border: 1px solid var(--rule); padding: 28px 28px 22px; position: relative; overflow: hidden; }
.network-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.network-card.eth::before { background: var(--eth); }
.network-card.sol::before { background: var(--sol); }
.nc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.nc-name   { font-family: var(--f-display); font-size: 22px; font-weight: 400; color: var(--ink); line-height: 1; }
.nc-ticker { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.nc-yield-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 18px; }
.nc-yield  { font-family: var(--f-display); font-size: 48px; line-height: 1; color: var(--ink); }
.nc-pct    { font-size: 20px; color: var(--mid); }
.nc-delta  { font-size: 11px; font-weight: 700; color: var(--green); margin-left: 4px; }
.nc-stats  { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--rule); padding-top: 16px; }
.nc-stat   { padding-right: 16px; }
.nc-stat + .nc-stat { border-left: 1px solid var(--rule); padding-left: 16px; padding-right: 0; }
.nc-stat-val { font-family: var(--f-display); font-size: 17px; color: var(--ink); margin-bottom: 2px; }
.nc-stat-lbl { font-size: 10px; color: var(--muted); }
.nc-instruments { display: flex; gap: 8px; margin-top: 14px; }
.nc-instrument  { flex: 1; padding: 10px 12px; border: 1px solid var(--rule); text-align: center; }
.nc-instrument.yt { border-color: var(--gold-light); background: var(--gold-pale); }
.nc-inst-label  { font-family: var(--f-display); font-size: 18px; line-height: 1; margin-bottom: 3px; }
.nc-instrument.yt .nc-inst-label { color: var(--gold); }
.nc-instrument.pt .nc-inst-label { color: var(--ink); }
.nc-inst-sub    { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ── PROBLEM CARDS ───────────────────────────────────────────── */
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--rule); border-right: none; border-bottom: none; }
.problem-card { padding: 40px 34px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.problem-flag { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.problem-flag::before { content: ''; width: 16px; height: 1px; background: var(--red); }
.problem-card h3 { font-family: var(--f-display); font-size: 20px; font-weight: 400; line-height: 1.2; color: var(--ink); margin-bottom: 10px; }
.problem-card p  { font-size: 13px; color: var(--mid); line-height: 1.7; }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.how-steps { list-style: none; }
.how-step  { display: flex; gap: 28px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.how-step:first-child { padding-top: 0; }
.how-step:last-child  { border-bottom: none; }
.how-step-n    { font-family: var(--f-display); font-size: 13px; color: var(--gold); min-width: 26px; padding-top: 2px; opacity: 0.8; }
.how-step-body h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.how-step-body p  { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* Diagram — dark variant */
.diag-wrap   { border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.03); padding: 36px; }
.diag-asset  { background: rgba(196,169,106,0.1); border: 1px solid rgba(196,169,106,0.3); padding: 16px 20px; text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); }
.diag-bridge { display: flex; justify-content: center; padding: 14px 0; }
.diag-bridge-inner { display: flex; flex-direction: column; align-items: center; }
.diag-line   { width: 1px; height: 18px; background: rgba(255,255,255,0.12); }
.diag-engine { font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); padding: 7px 16px; border: 1px solid rgba(196,169,106,0.3); background: rgba(196,169,106,0.08); white-space: nowrap; }
.diag-split  { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.diag-token  { padding: 22px 16px; text-align: center; border: 1px solid rgba(255,255,255,0.1); }
.diag-token.yt { border-color: rgba(196,169,106,0.3); background: rgba(196,169,106,0.08); }
.diag-token.pt { background: rgba(255,255,255,0.03); }
.tok-label   { font-family: var(--f-display); font-size: 30px; line-height: 1; margin-bottom: 7px; }
.diag-token.yt .tok-label { color: var(--gold); }
.diag-token.pt .tok-label { color: var(--white); }
.tok-name    { font-size: 9px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.tok-desc    { font-size: 11px; color: rgba(255,255,255,0.3); }
.diag-meta   { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,0.08); margin-top: 20px; padding-top: 16px; }
.dm-item     { text-align: center; border-right: 1px solid rgba(255,255,255,0.08); padding: 0 8px; }
.dm-item:last-child { border-right: none; }
.dm-val      { font-family: var(--f-display); font-size: 17px; color: var(--white); margin-bottom: 3px; }
.dm-lbl      { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.network-pills { display: flex; gap: 8px; margin-top: 24px; }
.npill       { display: flex; align-items: center; gap: 7px; padding: 8px 14px; border: 1px solid rgba(255,255,255,0.1); font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.04); }
.npill .dot  { width: 8px; height: 8px; border-radius: 50%; }
.npill.eth .dot { background: var(--eth); }
.npill.sol .dot { background: var(--sol); }

/* ── BONDS TABLE ─────────────────────────────────────────────── */
.bonds-table { width: 100%; border-collapse: collapse; border: 1px solid var(--rule); }
.bonds-table th { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); padding: 14px 20px; text-align: left; border-bottom: 2px solid var(--rule); background: var(--bg); }
.bonds-table td { padding: 20px 20px; border-bottom: 1px solid var(--rule); font-size: 14px; color: var(--ink); vertical-align: middle; }
.bonds-table tr:last-child td { border-bottom: none; }
.bonds-table tr:hover td { background: var(--bg); }
.bond-name   { font-family: var(--f-display); font-size: 17px; font-weight: 400; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.bond-badge  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.bond-yield  { font-family: var(--f-display); font-size: 20px; color: var(--ink); }
.bond-yield small { font-size: 12px; color: var(--muted); }
.bond-tag    { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; }
.bond-tag.yt { background: var(--gold-pale); color: var(--gold); border: 1px solid var(--gold-light); }
.bond-tag.pt { background: var(--bg); color: var(--mid); border: 1px solid var(--rule); }
.bond-cta    { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.bond-cta:hover { text-decoration: underline; }

/* ── ALLOCATOR CARDS ─────────────────────────────────────────── */
.alloc-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
.alloc-card { padding: 42px 38px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--white); transition: background 0.22s; }
.alloc-card:hover { background: var(--bg); }
.alloc-tag  { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.alloc-tag::before { content: ''; width: 18px; height: 1px; background: var(--gold); }
.alloc-card h3 { font-family: var(--f-display); font-size: 22px; font-weight: 400; line-height: 1.2; color: var(--ink); margin-bottom: 12px; }
.alloc-card p  { font-size: 13px; color: var(--mid); line-height: 1.7; max-width: 340px; }
.alloc-link    { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); text-decoration: none; transition: gap 0.2s; }
.alloc-link:hover { gap: 14px; }
.alloc-link::after { content: '→'; font-weight: 400; }

/* ── RESEARCH CARDS ──────────────────────────────────────────── */
.research-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; border: 1px solid var(--rule); border-right: none; border-bottom: none; }
.research-card { padding: 32px 30px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); display: flex; flex-direction: column; }
.research-card.featured { background: var(--white); }
.r-meta   { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.r-date   { font-size: 10px; color: var(--muted); letter-spacing: 0.05em; }
.research-card h4 { font-family: var(--f-display); font-size: 19px; font-weight: 400; line-height: 1.3; color: var(--ink); margin-bottom: 10px; flex: 1; }
.research-card.featured h4 { font-size: 25px; }
.research-card p  { font-size: 12px; color: var(--mid); line-height: 1.65; }
.read-link { margin-top: auto; padding-top: 18px; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.read-link::after { content: '→'; font-weight: 400; }
.read-link:hover { opacity: 0.7; }

/* ── STAT STRIP ──────────────────────────────────────────────── */
.stat-strip { display: grid; }
.stat-strip.cols-4 { grid-template-columns: repeat(4,1fr); border-left: 1px solid rgba(255,255,255,0.07); margin-top: 48px; }
.stat-item  { padding: 28px 32px; border-right: 1px solid rgba(255,255,255,0.07); }
.stat-num   { font-family: var(--f-display); font-size: 40px; line-height: 1; color: var(--gold); margin-bottom: 10px; }
.stat-num sup { font-size: 20px; }
.stat-item p  { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 160px; }
.dark-footer-cta { margin-top: 44px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; }
.dark-footer-cta p { font-size: 14px; color: rgba(255,255,255,0.5); max-width: 460px; line-height: 1.65; }

/* ── BRIEFING FORM ───────────────────────────────────────────── */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--white); }
.cta-left  { padding: 76px 60px 76px 56px; border-right: 1px solid var(--rule); display: flex; flex-direction: column; justify-content: center; }
.cta-left h2 { font-family: var(--f-display); font-size: clamp(32px,3.5vw,50px); font-weight: 400; line-height: 1.05; color: var(--ink); margin: 12px 0 16px; }
.cta-left p  { font-size: 14px; color: var(--mid); line-height: 1.75; max-width: 400px; margin-bottom: 28px; }
.trust-signals { display: flex; flex-direction: column; gap: 10px; }
.trust-signal  { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--mid); }
.trust-signal::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.cta-right  { padding: 76px 56px; background: var(--bg); }
.form-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; display: block; }
.f-row      { margin-bottom: 16px; }
.f-row label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); display: block; margin-bottom: 6px; }
.f-row input,
.f-row select,
.f-row textarea {
  width: 100%; padding: 11px 14px; background: var(--white);
  border: 1px solid var(--rule); color: var(--ink);
  font-family: var(--f-body); font-size: 14px; outline: none;
  transition: border-color 0.2s; appearance: none; -webkit-appearance: none; border-radius: 0;
}
.f-row input:focus, .f-row select:focus, .f-row textarea:focus { border-color: var(--gold); }
.f-row input::placeholder, .f-row textarea::placeholder { color: var(--muted); }
.f-row textarea { resize: vertical; min-height: 80px; }
.f-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit {
  width: 100%; margin-top: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px; background: var(--ink); color: var(--white);
  border: none; cursor: pointer; transition: background 0.2s, color 0.2s;
}
.btn-submit:hover { background: var(--gold); color: var(--ink); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer  { background: var(--ink); padding: 60px 0 36px; }
.footer-inner { display: grid; grid-template-columns: 220px 1fr 1fr 1fr; gap: 48px; }
.footer-brand img   { height: 22px; margin-bottom: 14px; }
.footer-brand p     { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,0.38); }
.footer-col h5      { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul      { list-style: none; }
.footer-col li      { margin-bottom: 9px; }
.footer-col a       { font-size: 13px; color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.88); }
.footer-bottom      { margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 11px; color: rgba(255,255,255,0.28); letter-spacing: 0.05em; }
.footer-legal       { display: flex; gap: 24px; }
.footer-legal a     { font-size: 11px; color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ── TEAM CARDS ──────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.team-card { background: var(--white); padding: 32px 28px; }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--gold-pale); border: 1px solid var(--gold-light); margin-bottom: 18px; display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-size: 22px; color: var(--gold); }
.team-card h4 { font-family: var(--f-display); font-size: 18px; font-weight: 400; color: var(--ink); margin-bottom: 4px; }
.team-card .role { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.team-card p { font-size: 12px; color: var(--mid); line-height: 1.65; }

/* ── PARTNER LOGOS ───────────────────────────────────────────── */
.partner-row { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; margin-top: 40px; padding: 32px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.partner-placeholder { height: 28px; background: var(--rule); border-radius: 2px; }

/* ── ROADMAP ─────────────────────────────────────────────────── */
.roadmap { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-top: 48px; }
.roadmap-item { background: var(--white); padding: 32px 28px; }
.roadmap-item.active { background: var(--bg); }
.roadmap-phase { font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.roadmap-item h4 { font-family: var(--f-display); font-size: 18px; font-weight: 400; color: var(--ink); margin-bottom: 12px; }
.roadmap-item ul { list-style: none; }
.roadmap-item li { font-size: 12px; color: var(--mid); padding: 5px 0; border-bottom: 1px solid var(--rule); display: flex; align-items: center; gap: 8px; }
.roadmap-item li:last-child { border-bottom: none; }
.roadmap-item li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.roadmap-item.active li::before { background: var(--green); }
.roadmap-status { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; margin-top: 16px; }
.roadmap-status.live { background: rgba(74,140,106,0.1); color: var(--green); border: 1px solid rgba(74,140,106,0.3); }
.roadmap-status.building { background: var(--gold-pale); color: var(--gold); border: 1px solid var(--gold-light); }
.roadmap-status.planned { background: var(--bg); color: var(--muted); border: 1px solid var(--rule); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { list-style: none; border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q    { width: 100%; background: none; border: none; text-align: left; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: var(--f-display); font-size: 18px; font-weight: 400; color: var(--ink); gap: 24px; }
.faq-q .icon { font-size: 20px; color: var(--gold); flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a    { font-size: 14px; color: var(--mid); line-height: 1.75; max-width: 680px; padding-bottom: 22px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── USE CASE DETAIL ─────────────────────────────────────────── */
.usecase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.usecase-card { background: var(--white); padding: 40px; }
.usecase-num  { font-family: var(--f-display); font-size: 48px; color: var(--gold-pale); line-height: 1; margin-bottom: 16px; }
.usecase-card h4 { font-family: var(--f-display); font-size: 20px; font-weight: 400; color: var(--ink); margin-bottom: 10px; }
.usecase-card p  { font-size: 13px; color: var(--mid); line-height: 1.7; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav-links { gap: 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .how-grid, .mech-inner { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .roadmap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-links  { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--rule);
    padding: 16px 0; z-index: 199;
  }
  .nav-links.open li a { display: block; padding: 14px 24px; }
  .hero-body    { grid-template-columns: 1fr; }
  .hero-right   { display: none; }
  .cta-split    { grid-template-columns: 1fr; }
  .cta-left     { padding: 56px 24px; border-right: none; border-bottom: 1px solid var(--rule); }
  .cta-right    { padding: 48px 24px; }
  .alloc-grid   { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; border-right: 1px solid var(--rule); }
  .research-grid { grid-template-columns: 1fr; border-right: 1px solid var(--rule); }
  .bonds-table thead { display: none; }
  .bonds-table tr, .bonds-table td { display: block; }
  .stat-strip.cols-4 { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .roadmap { grid-template-columns: 1fr; }
  .f-2col { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .page-hero-inner { padding: 48px 0 40px; }
}
