:root {
  --cream: #fdf6da;
  --cream-2: #f7edc2;
  --paper: #fffdf2;
  --ink: #141101;
  --ink-2: #211c05;
  --ink-soft: #3d3612;
  --muted: #857a44;
  --yellow: #ffd400;
  --yellow-deep: #f0b800;
  --yellow-dark: #9a7c00;
  --line: #e7d792;
  --line-dark: rgba(255, 212, 0, 0.18);
  --up: #2f8f3e;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 24px 60px -28px rgba(40, 32, 0, 0.5);
  --shadow-sm: 0 10px 26px -16px rgba(40, 32, 0, 0.4);
  --shadow-hard: 6px 6px 0 var(--ink);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --mono: "Space Mono", ui-monospace, "SFMono-Regular", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink-soft);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* film grain overlay */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: 0.05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { width: min(1180px, 92%); margin: 0 auto; }

h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 500; line-height: 1.02; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }

.kicker {
  display: inline-block; font-family: var(--mono); font-size: 12.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink);
  background: var(--yellow); padding: 7px 14px; border-radius: 999px;
  border: 1.5px solid var(--ink); box-shadow: 3px 3px 0 var(--ink);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 700; font-size: 15px;
  padding: 13px 26px; border-radius: 999px; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  border: 2px solid var(--ink); white-space: nowrap;
}
.btn--lg { padding: 16px 34px; font-size: 16px; }
.btn--dark { background: var(--ink); color: var(--yellow); box-shadow: 4px 4px 0 rgba(20,17,1,.25); }
.btn--dark:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--yellow-deep); }
.btn--ghost { background: var(--yellow); color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.btn--ghost:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; padding: 16px 0; transition: padding .3s ease; }
.nav.scrolled { padding: 10px 0; }
.nav__inner {
  display: flex; align-items: center; gap: 24px; height: 60px; padding: 0 10px 0 20px;
  background: rgba(255, 253, 242, 0.8); backdrop-filter: blur(14px);
  border: 2px solid var(--ink); border-radius: 999px; box-shadow: var(--shadow-sm);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark { display: grid; place-items: center; width: 38px; height: 38px; background: var(--yellow); border: 2px solid var(--ink); border-radius: 11px; transform: rotate(-6deg); }
.brand__mark svg { fill: none; stroke: var(--ink); stroke-width: 3.4; stroke-linecap: round; stroke-linejoin: round; }
.brand__mark svg .brand__dot { fill: var(--ink); stroke: none; }
.brand__name { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--ink); letter-spacing: -0.03em; }

.nav__menu { display: flex; align-items: center; gap: 2px; margin-left: 8px; }
.nav__item { position: relative; }
.nav__link {
  font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--ink-soft);
  background: none; border: none; cursor: pointer; padding: 10px 14px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px; transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--ink); background: var(--cream-2); }
.caret { font-size: 10px; opacity: .6; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 214px;
  background: var(--paper); border: 2px solid var(--ink); border-radius: 16px;
  padding: 8px; box-shadow: var(--shadow-hard); display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s ease;
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { padding: 10px 12px; border-radius: 10px; font-size: 14.5px; font-weight: 500; color: var(--ink-soft); }
.dropdown a:hover { background: var(--yellow); color: var(--ink); }
.nav__cta { margin-left: auto; padding: 11px 22px; }

.nav__burger { display: none; margin-left: auto; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; gap: 4px; margin: 10px 4% 0; padding: 14px; background: var(--paper); border: 2px solid var(--ink); border-radius: 20px; box-shadow: var(--shadow-hard); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 10px; border-radius: 12px; font-weight: 600; }
.mobile-menu a:hover { background: var(--yellow); }
.mobile-menu .btn { margin-top: 8px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 56px 0 76px; overflow: hidden; }
.hero__inner { position: relative; z-index: 2; text-align: center; }
.hero__title {
  font-size: clamp(44px, 8.5vw, 108px); max-width: 14ch; margin: 22px auto 0;
  font-weight: 500; letter-spacing: -0.035em;
}
.hero__title em { font-style: italic; font-weight: 500; }
.mark { position: relative; white-space: nowrap; z-index: 1; }
.mark::before {
  content: ""; position: absolute; z-index: -1; left: -6px; right: -6px; bottom: 6%; height: 42%;
  background: var(--yellow); transform: rotate(-1.5deg); border-radius: 4px;
}
.hero__sub { max-width: 56ch; margin: 26px auto 0; font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); font-weight: 500; }
.hero__cta { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

.tickers { position: relative; max-width: 560px; margin: 62px auto 0; display: flex; flex-direction: column; gap: 16px; z-index: 2; }
.ticker {
  background: var(--paper); border: 2px solid var(--ink); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow-hard); display: flex; align-items: center; gap: 14px; text-align: left;
  transition: transform .2s ease;
}
.ticker:hover { transform: translateY(-3px); }
.ticker--lead { flex-direction: column; align-items: stretch; gap: 8px; background: var(--ink); border-color: var(--ink); }
.ticker--lead .ticker__name strong, .ticker--lead .ticker__price strong { color: var(--paper); }
.ticker--lead .ticker__name span { color: #b9ad72; }
.ticker__head { display: flex; align-items: center; gap: 14px; }
.logo { width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0; background: #ddd; position: relative; border: 2px solid var(--ink); }
.logo--hood { background: var(--yellow); }
.logo--hood::after { content: "↗"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--ink); font-weight: 800; font-size: 20px; }
.logo--amzn { background: #ff9900; }
.logo--amzn::after { content: "a"; position: absolute; inset: 0; display: grid; place-items: center; color: #111; font-weight: 800; font-size: 22px; }
.logo--coin { background: #0052ff; }
.logo--coin::after { content: ""; position: absolute; inset: 11px; border-radius: 50%; background: #fff; }
.ticker__name { display: flex; flex-direction: column; }
.ticker__name strong { font-family: var(--mono); font-size: 16px; color: var(--ink); }
.ticker__name span { font-size: 13px; color: var(--muted); }
.ticker__price { margin-left: auto; text-align: right; display: flex; flex-direction: column; }
.ticker__price strong { font-family: var(--mono); font-size: 17px; color: var(--ink); }
.ticker__price .up { color: var(--up); font-size: 13px; font-weight: 700; font-family: var(--mono); }
.spark { width: 100%; height: 84px; }
.spark polyline { fill: none; stroke: var(--yellow); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round; }

/* ---------- Marquee ---------- */
.marquee { background: var(--ink); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); overflow: hidden; padding: 16px 0; }
.marquee__track { display: flex; width: max-content; animation: slide 26s linear infinite; }
.marquee__track span { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--yellow); white-space: nowrap; padding-right: 8px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Feature badges ---------- */
.strip { padding: 46px 0; }
.strip__grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.strip__item {
  background: var(--paper); border: 2px solid var(--ink); border-radius: 999px;
  padding: 14px 26px; box-shadow: 3px 3px 0 var(--ink); display: flex; flex-direction: column;
}
.strip__item:nth-child(2) { background: var(--yellow); }
.strip__item h3 { font-size: 18px; }
.strip__item p { color: var(--muted); font-size: 13.5px; font-weight: 500; }

/* ---------- Orbit ---------- */
.orbit-sec { padding: 70px 0 80px; }
.orbit { position: relative; width: min(560px, 90%); aspect-ratio: 1; margin: 0 auto 50px; display: grid; place-items: center; }
.orbit__ring { position: absolute; border: 2px dashed rgba(20,17,1,0.16); border-radius: 50%; }
.orbit__ring--1 { width: 55%; height: 55%; }
.orbit__ring--2 { width: 78%; height: 78%; animation: spin 44s linear infinite; }
.orbit__ring--3 { width: 100%; height: 100%; }
@keyframes spin { to { transform: rotate(360deg); } }
.orbit__core {
  width: 128px; height: 128px; border-radius: 30px; transform: rotate(-8deg);
  background: var(--yellow); border: 2.5px solid var(--ink);
  display: grid; place-items: center; box-shadow: 8px 8px 0 var(--ink);
}
.orbit__core svg { fill: none; stroke: var(--ink); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.chip {
  position: absolute; background: var(--paper); border: 2px solid var(--ink);
  border-radius: 999px; padding: 9px 15px; font-size: 14px; font-weight: 700; color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink); display: flex; align-items: center; gap: 8px;
}
.chip em { font-style: normal; color: var(--muted); font-weight: 500; font-size: 12px; font-family: var(--mono); }
.chip--a { top: 0%; left: 50%; transform: translateX(-50%) rotate(-4deg); }
.chip--b { top: 38%; right: -6%; transform: rotate(5deg); }
.chip--c { top: 38%; left: -6%; transform: rotate(-5deg); }
.chip--d { bottom: 2%; left: 50%; transform: translateX(-50%) rotate(4deg); }
.dot { width: 18px; height: 18px; border-radius: 6px; display: inline-block; border: 1.5px solid var(--ink); }
.dot--apple { background: #111; }
.dot--goog { background: conic-gradient(#ea4335, #fbbc05, #34a853, #4285f4, #ea4335); }
.dot--meta { background: #1877f2; }
.dot--tsla { background: #e31937; }

.features3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
.feature { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-hard); transition: transform .2s ease; }
.feature:hover { transform: translateY(-4px); }
.feature:nth-child(2) { background: var(--yellow); }
.feature__ico { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--ink); font-size: 22px; margin-bottom: 16px; }
.feature h3 { font-size: 26px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15.5px; font-weight: 500; }
.feature:nth-child(2) p { color: var(--ink-soft); }

/* ---------- Banner (bento) ---------- */
.banner { background: var(--ink); padding: 90px 0; color: var(--paper); }
.banner__title { font-size: clamp(32px, 5.4vw, 62px); text-align: center; max-width: 18ch; margin: 0 auto; color: var(--paper); }
.banner__lead { text-align: center; max-width: 62ch; margin: 22px auto 0; color: #b9ad72; font-size: 17px; font-weight: 500; }
.banner__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px; margin-top: 54px; }
.bcard { background: #201b05; border: 2px solid var(--line-dark); border-radius: var(--radius); padding: 30px; transition: transform .2s ease; }
.bcard:hover { transform: translateY(-4px); }
.bcard:first-child { background: var(--yellow); border-color: var(--yellow); }
.bcard:first-child h4, .bcard:first-child p { color: var(--ink); }
.bcard h4 { font-size: 23px; margin-bottom: 12px; color: var(--paper); }
.bcard p { color: #b9ad72; font-size: 15px; font-weight: 500; }

/* ---------- Rollup pipeline ---------- */
.rollup { padding: 100px 0; }
.rollup__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); background: var(--yellow); padding: 6px 12px; border-radius: 999px; border: 1.5px solid var(--ink); margin-bottom: 20px; }
.rollup__copy h2 { font-size: clamp(32px, 4.4vw, 52px); margin-bottom: 18px; }
.rollup__copy > p { color: var(--muted); font-size: 17px; font-weight: 500; }
.rollup__list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.rollup__list li { display: flex; align-items: center; gap: 14px; font-size: 15.5px; color: var(--ink-soft); font-weight: 600; }
.rollup__list li span { flex-shrink: 0; width: 32px; height: 32px; border-radius: 10px; background: var(--yellow); border: 2px solid var(--ink); color: var(--ink); display: grid; place-items: center; font-size: 14px; font-weight: 800; font-family: var(--mono); }

.stack { display: flex; flex-direction: column; align-items: center; gap: 0; position: relative; }
.stack__layer { width: 100%; border-radius: var(--radius); padding: 24px 28px; text-align: center; border: 2px solid var(--ink); position: relative; z-index: 1; }
.stack__layer strong { display: block; font-family: var(--serif); font-size: 22px; color: var(--ink); }
.stack__layer span { font-size: 14px; color: var(--muted); font-weight: 500; }
.stack__layer--l3 { background: var(--paper); box-shadow: var(--shadow-hard); }
.stack__layer--rollup { background: var(--yellow); }
.stack__layer--zk { background: var(--cream-2); box-shadow: var(--shadow-hard); }
.stack__layer--base { background: var(--ink); }
.stack__layer--base strong { color: var(--yellow); }
.stack__layer--base span { color: #b9ad72; }
.stack__proof { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--ink); letter-spacing: .06em; padding: 12px 0; position: relative; z-index: 1; }
.stack__proof::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: repeating-linear-gradient(var(--ink) 0 5px, transparent 5px 10px); transform: translateX(-50%); z-index: -1; }

/* ---------- Cross-chain ---------- */
.crosschain { padding: 96px 0; background: var(--cream-2); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.crosschain__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.crosschain__copy h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 16px; }
.crosschain__copy p { color: var(--ink-soft); font-size: 17px; margin-bottom: 26px; font-weight: 500; }
.flow { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.flow__node { background: var(--paper); border: 2px solid var(--ink); border-radius: 16px; padding: 22px 20px; font-weight: 700; color: var(--ink); box-shadow: 4px 4px 0 var(--ink); font-size: 15px; text-align: center; font-family: var(--mono); }
.flow__node--mid { background: var(--ink); color: var(--yellow); }
.flow__arrow { color: var(--ink); font-size: 24px; font-weight: 800; animation: nudge 1.4s ease-in-out infinite; }
@keyframes nudge { 50% { transform: translateX(5px); } }

/* ---------- Token ---------- */
.token { padding: 104px 0; background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.token::after { content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%; top: -280px; right: -160px; background: radial-gradient(circle, rgba(255,212,0,0.16), transparent 68%); }
.token .container { position: relative; z-index: 1; }
.section-head { text-align: center; max-width: 64ch; margin: 0 auto 52px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(32px, 4.6vw, 56px); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 17px; font-weight: 500; }
.token .section-head h2 { color: var(--paper); }
.token .section-head p { color: #b9ad72; }
.token__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcard { background: #201b05; border: 2px solid var(--line-dark); border-radius: var(--radius); padding: 32px; transition: transform .2s ease, border-color .2s ease; }
.tcard:hover { transform: translateY(-5px); border-color: var(--yellow); }
.tcard__ico { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 15px; background: var(--yellow); font-size: 26px; margin-bottom: 18px; }
.tcard h4 { color: var(--paper); font-size: 23px; margin-bottom: 10px; }
.tcard p { color: #b9ad72; font-size: 15px; font-weight: 500; }

/* ---------- Inside the Enclave ---------- */
.enclave { padding: 100px 0; }
.enclave__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ecard { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-hard); transition: transform .2s ease; }
.ecard:hover { transform: translateY(-4px); }
.ecard:nth-child(2) { background: var(--yellow); }
.ecard__ico { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--ink); font-size: 24px; margin-bottom: 14px; }
.ecard:nth-child(2) .ecard__ico { background: var(--paper); }
.ecard h4 { font-size: 20px; margin-bottom: 8px; }
.ecard p { color: var(--muted); font-size: 14px; font-weight: 500; }
.ecard:nth-child(2) p { color: var(--ink-soft); }
.ecard small { display: block; font-family: var(--mono); font-size: 11px; color: var(--yellow-dark); margin-top: 12px; letter-spacing: .06em; text-transform: uppercase; }
.ecard:nth-child(2) small { color: var(--ink); }

.codewin { margin: 46px auto 0; max-width: 940px; background: var(--ink); border: 2.5px solid var(--ink); border-radius: 18px; box-shadow: 10px 10px 0 var(--yellow); overflow: hidden; }
.codewin__bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; background: #201b05; border-bottom: 1px solid var(--line-dark); }
.codewin__bar span { width: 12px; height: 12px; border-radius: 50%; background: #4a411a; }
.codewin__bar span:nth-child(1) { background: #ff5f57; }
.codewin__bar span:nth-child(2) { background: #febc2e; }
.codewin__bar span:nth-child(3) { background: #28c840; }
.codewin__bar em { margin-left: 10px; font-family: var(--mono); font-style: normal; font-size: 12.5px; color: #b9ad72; }
.codewin pre { margin: 0; padding: 24px; overflow-x: auto; font-family: var(--mono); font-size: 13px; line-height: 1.75; color: #f3ecc9; }
.codewin .c { color: #8f8a5f; font-style: italic; }
.codewin .k { color: var(--yellow); font-weight: 700; }

/* ---------- Grid section (bento) ---------- */
.grid-sec { padding: 104px 0; }
.grid6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gcard { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-hard); transition: transform .2s ease; }
.gcard:hover { transform: translate(-3px,-3px); }
.gcard:nth-child(1), .gcard:nth-child(6) { background: var(--yellow); }
.gcard:nth-child(4) { background: var(--ink); }
.gcard:nth-child(4) h4 { color: var(--yellow); }
.gcard:nth-child(4) p { color: #b9ad72; }
.gcard h4 { font-size: 22px; margin-bottom: 10px; }
.gcard p { color: var(--muted); font-size: 14.5px; font-weight: 500; }
.gcard:nth-child(1) p, .gcard:nth-child(6) p { color: var(--ink-soft); }

/* ---------- CTA ---------- */
.cta { padding: 96px 0; }
.cta__inner { text-align: center; background: var(--yellow); border: 2.5px solid var(--ink); border-radius: 32px; padding: 76px 40px; box-shadow: 12px 12px 0 var(--ink); }
.cta__inner h2 { font-size: clamp(34px, 5.4vw, 66px); }
.cta__inner p { color: var(--ink-soft); font-size: 18px; margin: 18px auto 0; max-width: 52ch; font-weight: 500; }
.cta__btns { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.cta .btn--ghost { background: var(--paper); }

/* ---------- FAQ ---------- */
.faq { padding: 46px 0 116px; }
.faq__list { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.qa { background: var(--paper); border: 2px solid var(--ink); border-radius: var(--radius-sm); padding: 4px 26px; box-shadow: 4px 4px 0 var(--ink); }
.qa[open] { box-shadow: 6px 6px 0 var(--yellow-deep); }
.qa summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 0; font-family: var(--serif); font-size: 20px; color: var(--ink); font-weight: 600; }
.qa summary::-webkit-details-marker { display: none; }
.qa__i { font-family: var(--mono); font-size: 26px; color: var(--ink); transition: transform .25s ease; flex-shrink: 0; }
.qa[open] .qa__i { transform: rotate(45deg); }
.qa p { color: var(--muted); font-size: 15.5px; padding: 0 0 24px; max-width: 68ch; font-weight: 500; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--paper); padding: 72px 0 32px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 50px; }
.footer .brand__name { color: var(--paper); }
.footer__brand p { color: #b9ad72; font-size: 14.5px; margin-top: 18px; max-width: 42ch; font-weight: 500; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__cols h5 { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--yellow); margin-bottom: 16px; }
.footer__cols a { display: block; padding: 6px 0; font-size: 14.5px; color: #d8cf9c; font-weight: 500; }
.footer__cols a:hover { color: var(--yellow); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 54px; padding-top: 26px; border-top: 2px solid var(--line-dark); font-size: 13.5px; color: #b9ad72; font-family: var(--mono); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--yellow); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .rollup__inner, .crosschain__inner, .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .features3, .banner__grid, .token__grid, .grid6, .enclave__grid { grid-template-columns: 1fr; }
  .marquee__track span { font-size: 24px; }
}
@media (min-width: 640px) and (max-width: 900px) {
  .features3, .banner__grid, .token__grid, .grid6, .enclave__grid { grid-template-columns: repeat(2, 1fr); }
  .banner__grid .bcard:first-child { grid-column: span 2; }
}
@media (max-width: 560px) {
  .flow { flex-direction: column; }
  .flow__arrow { transform: rotate(90deg); animation: none; }
  .cta__inner { padding: 52px 24px; box-shadow: 8px 8px 0 var(--ink); }
  .footer__bottom { flex-direction: column; gap: 12px; }
  .hero__title { font-size: clamp(40px, 12vw, 60px); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .orbit__ring--2, .marquee__track, .flow__arrow { animation: none; }
  html { scroll-behavior: auto; }
}
