@charset "UTF-8";
/* =====================================================================
   Aventus Hi-Fi — brand applied to the approved wireframe structure.
   Layout, spacing, type sizes and weights inherited from wireframe spec.
   This file applies brand COLOUR + surfaces only.
   ===================================================================== */
:root { /* ── brand palette ─────────────────────────────── */ --paper: #FFFFFF; --gallery: #EBEBEB; --blue-zodiac: #10243C; --blue-zodiac-soft: #2A3D54; --electric-violet: #5100FF; --cornflower: #2C6DEB; /* ── text ──────────────────────────────────────── */ --ink: #10243C; --ink-soft: #3F4E61; --on-dark: #FFFFFF; --on-dark-soft: #B9C3D0; /* ── dividers ──────────────────────────────────── */ --stroke-light: #E4E7EC; --stroke-dark: rgba(255,255,255,0.14); /* ── shadow ────────────────────────────────────── */ --card-shadow: 0 2px 12px rgba(16,36,60,0.08); /* ── type system (unchanged from wireframe spec) ── */ --sans: "Mona Sans", "Montserrat", system-ui, -apple-system, sans-serif; --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace; --t-hero: 72px; --t-h1: 79px; --t-h2: 58px; --t-h3: 43px; --t-h4: 32px; --t-h5: 25px; --t-lead: 24px; --t-body: 20px; --t-small: 18px; --t-micro: 16px; }
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: var(--sans); font-feature-settings: "ss01", "cv01", "cv02"; background: var(--paper); color: var(--ink); font-size: var(--t-body); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
/* ── containers ──────────────────────────────────────── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
section { padding: 88px 0; position: relative; }
/* ── section backgrounds ─────────────────────────────── */
.section--paper { background: var(--paper); color: var(--ink); }
.section--gallery { background: var(--gallery); color: var(--ink); }
.section--dark { background: var(--blue-zodiac); color: var(--on-dark); }
.section--dark .muted { color: var(--on-dark-soft); }
.section--paper .muted, .section--gallery .muted { color: var(--ink-soft); }
/* ── accessibility utilities ─────────────────────────── */
.skip-link { position: absolute; top: -100px; left: 16px; z-index: 1000; background: var(--electric-violet); color: var(--paper); font-family: var(--sans); font-size: 14px; font-weight: 600; padding: 12px 18px; border-radius: 6px; text-decoration: none; transition: top 160ms ease; }
.skip-link:focus { top: 12px; outline: 3px solid var(--cornflower); outline-offset: 2px; }
:focus-visible { outline: 2px solid var(--electric-violet); outline-offset: 3px; border-radius: 2px; }
.btn:focus-visible, .cs-card:focus-visible { outline-offset: 4px; }
main:focus { outline: none; }
/* ── nav ─────────────────────────────────────────────── */
.nav { background: var(--paper); padding: 16px 0; position: sticky; top: 0; z-index: 10; border-bottom: 1px solid var(--stroke-light); backdrop-filter: blur(6px); }
.nav .wrap { display: flex; align-items: center; gap: 32px; }
.logo-box { display: inline-flex; align-items: center; text-decoration: none; }
.logo-box img { display: block; height: 46px; width: auto; }
.nav-links { flex: 1; display: flex; justify-content: center; align-items: center; gap: 32px; font-family: var(--sans); font-size: var(--t-micro); font-weight: 500; }
.nav-links a { color: var(--ink); text-decoration: none; padding-top: 4px; border-bottom: 1.5px solid transparent; transition: color 140ms, border-color 140ms; }
.nav-links a.has-caret { position: relative; padding-right: 18px; }
.nav-links a.has-caret::after { content: "▾"; font-size: 22px; line-height: 1; color: var(--ink-soft); position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.nav-links a:hover { color: var(--electric-violet); }
.nav-cta { background: var(--electric-violet); color: var(--paper); padding: 10px 18px; border-radius: 8px; font-family: var(--sans); font-size: var(--t-micro); font-weight: 600; text-decoration: none; transition: filter 140ms; }
.nav-cta:hover { filter: brightness(1.1); }
/* ── mobile nav (hamburger + drawer) ─────────────────── */
.nav-hamburger { display: none; width: 44px; height: 44px; background: transparent; border: 1px solid var(--stroke-light); border-radius: 8px; cursor: pointer; padding: 0; position: relative; }
.nav-hamburger span { position: absolute; left: 11px; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 180ms, opacity 140ms, top 180ms; }
.nav-hamburger span:nth-child(1) { top: 14px; }
.nav-hamburger span:nth-child(2) { top: 21px; }
.nav-hamburger span:nth-child(3) { top: 28px; }
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 78px; /* nav height: ~46px logo + 16+16 padding */ left: 0; right: 0; bottom: 0; background: var(--paper); z-index: 9; overflow-y: auto; padding: 16px 24px 48px; opacity: 0; transform: translateY(-8px); transition: opacity 160ms, transform 160ms; }
.mobile-menu[data-open="true"] { display: block; opacity: 1; transform: translateY(0); }
.mobile-menu a { display: block; padding: 16px 4px; font-family: var(--sans); font-size: 20px; font-weight: 600; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--stroke-light); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a.is-current { color: var(--electric-violet); }
.mobile-menu .mobile-section { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); padding: 24px 4px 8px; border-bottom: 1px solid var(--stroke-light); }
.mobile-menu .mobile-cta { margin-top: 24px; display: inline-block; background: var(--electric-violet); color: var(--paper); padding: 14px 22px; border-radius: 8px; font-size: 16px; border-bottom: none; }
@media (max-width: 768px) {
  .nav-hamburger { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  .nav .wrap .nav-cta { display: none; }
  /* Home hero — globe becomes a 220px banner above the stacked text. */
  .hero { padding: 0 0 56px; }
  .hero-visual-spacer { display: none; }
  .hero-canvas { position: relative; inset: auto; width: 100%; height: 220px; display: block; -webkit-mask-image: none; mask-image: none; }
  .hero .wrap { padding-top: 40px; }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}
/* ── nav dropdown ────────────────────────────────────── */
.nav-dropdown { position: relative; display: inline-flex; }
/* Hoverable bridge below the trigger — always present so the cursor never
   loses :hover while travelling from the trigger to the panel. */
.nav-dropdown::after { content: ""; position: absolute; top: 100%; left: -16px; right: -16px; height: 18px; z-index: 19; }
.nav-dropdown > .dropdown-panel { position: absolute; top: 100%; right: 0; margin-top: 14px; background: var(--paper); border: 1px solid var(--stroke-light); border-radius: 12px; padding: 10px; min-width: 240px; box-shadow: var(--card-shadow); opacity: 0; pointer-events: none; transition: opacity 140ms; z-index: 20; }
.nav-dropdown:hover > .dropdown-panel, .nav-dropdown:focus-within > .dropdown-panel { opacity: 1; pointer-events: auto; }
.dropdown-panel a { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; font-family: var(--sans); font-size: var(--t-micro); font-weight: 500; color: var(--ink); text-decoration: none; border-radius: 6px; }
.dropdown-panel a:hover { background: var(--gallery); color: var(--electric-violet); }
.dropdown-panel a.is-planned { color: var(--ink-soft); opacity: 0.6; pointer-events: none; }
.dropdown-panel .ext-tag { font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); background: var(--gallery); padding: 2px 6px; border-radius: 4px; }
/* Inline "opens in new tab" arrow used in footer Community links and similar lists */
.ext-arrow { display: inline-block; font-size: 0.85em; margin-left: 2px; opacity: 0.75; transition: opacity 140ms, transform 140ms; }
a:hover .ext-arrow { opacity: 1; transform: translate(1px, -1px); }
/* ── typography ──────────────────────────────────────── */
.eyebrow { font-family: var(--mono); font-size: 16px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 20px 0; }
.section--dark .eyebrow { color: var(--on-dark-soft); }
h1, h2, h3, h4, h5 { font-family: var(--sans); margin: 0 0 24px 0; color: inherit; }
h1.display { font-size: var(--t-hero); line-height: 0.94; font-weight: 800; letter-spacing: -0.035em; max-width: 14ch; }
h1.t-h1 { font-size: var(--t-h1); line-height: 0.95; font-weight: 800; letter-spacing: -0.035em; }
h2.section-h { font-size: var(--t-h2); line-height: 1.0; font-weight: 800; letter-spacing: -0.028em; margin-bottom: 28px; max-width: 18ch; }
h3.card-h { font-size: var(--t-h5); line-height: 1.28; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; }
p { margin: 0 0 16px 0; }
p.lead { font-size: var(--t-lead); line-height: 1.45; font-weight: 400; letter-spacing: -0.005em; color: var(--ink-soft); max-width: 52ch; }
.section--dark p.lead { color: var(--on-dark-soft); }
ul.dash { list-style: none; padding: 0; margin: 0 0 28px 0; }
ul.dash li { position: relative; padding-left: 24px; margin-bottom: 12px; font-size: var(--t-body); line-height: 1.5; }
ul.dash li::before { content: "➛"; position: absolute; left: 0; top: 0; line-height: 1.5; font-size: 1em; color: var(--electric-violet); }
.section--dark ul.dash li::before { color: var(--paper); }
/* ── buttons ────────────────────────────────────────── */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 22px; border-radius: 8px; border: 2px solid transparent; font-family: var(--sans); font-size: var(--t-micro); font-weight: 600; text-decoration: none; cursor: pointer; background: transparent; transition: transform 120ms, filter 140ms, background 140ms, color 140ms; }
.btn:hover { transform: translateY(-1px); }
.btn--filled { background: var(--electric-violet); color: var(--paper); border-color: var(--electric-violet); }
.btn--filled:hover { filter: brightness(1.1); }
.btn--outline { background: transparent; border: 2px solid var(--cornflower); color: var(--cornflower); }
.btn--outline:hover { background: rgba(44,109,235,0.08); }
.section--dark .btn--outline { border-color: var(--cornflower); color: var(--paper); }
.section--dark .btn--outline:hover { background: rgba(44,109,235,0.18); }
.btn--link { border: none; padding: 13px 4px; color: var(--ink-soft); }
.btn--link:hover { color: var(--electric-violet); }
.section--dark .btn--link { color: var(--on-dark-soft); }
.section--dark .btn--link:hover { color: var(--paper); }
.btn--lg { padding: 18px 28px; font-size: var(--t-small); }
/* ── placeholders — clean, no stripes ─────────────────── */
.ph { position: relative; border-radius: 12px; background: var(--blue-zodiac-soft); color: var(--on-dark); display: grid; place-items: center; text-align: center; padding: 24px; }
.ph .ph-label { font-family: var(--sans); font-size: 18px; font-weight: 600; letter-spacing: -0.005em; color: var(--on-dark); }
.ph.ph--photo, .two-col .ph.ph--photo { background: transparent; padding: 0; overflow: hidden; aspect-ratio: 1 / 1; min-height: 0; display: block; }
.ph--photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
/* ── hero ───────────────────────────────────────────── */
.hero { padding: 96px 0 50px; position: relative; overflow: hidden; background: radial-gradient(ellipse 110% 90% at 70% 50%, #142a47 0%, #10243C 35%, #0A0F1A 100%), #10243C; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; pointer-events: none; z-index: 0; -webkit-mask-image: linear-gradient( to right, transparent 0%, transparent 22%, rgba(0,0,0,0.4) 38%, rgba(0,0,0,0.9) 55%, #000 70%, #000 100% ); mask-image: linear-gradient( to right, transparent 0%, transparent 22%, rgba(0,0,0,0.4) 38%, rgba(0,0,0,0.9) 55%, #000 70%, #000 100% ); }
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-copy { max-width: 36rem; min-width: 0; }
.hero-visual-spacer { min-height: 460px; }
/* ── two-column propositions ─────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col .ph { aspect-ratio: 4 / 3; min-height: 320px; }
.disclaimer { font-family: var(--sans); font-size: var(--t-small); color: var(--ink-soft); font-style: italic; margin-top: 20px; max-width: 64ch; line-height: 1.55; }
.section--dark .disclaimer { color: var(--on-dark-soft); }
/* ── marquee strip ───────────────────────────────────── */
.marquee { padding: 50px 0 25px; background: var(--paper); overflow: hidden; }
.marquee .wrap { overflow: hidden; }
.marquee h4 { font-family: var(--mono); font-size: var(--t-micro); font-weight: 500; color: var(--ink-soft); text-align: center; margin: 0 0 32px; letter-spacing: 0.08em; text-transform: uppercase; }
.marquee-track { border-top: 1px solid var(--stroke-light); border-bottom: 1px solid var(--stroke-light); padding: 10px 0; overflow: hidden; position: relative; /* fade the edges so logos slide in/out gracefully */ -webkit-mask-image: linear-gradient( to right, transparent 0%, #000 8%, #000 92%, transparent 100% ); mask-image: linear-gradient( to right, transparent 0%, #000 8%, #000 92%, transparent 100% ); }
.marquee-inner { display: flex; gap: 10px; align-items: center; width: max-content; /* Slight delay lets images decode + layout settle before motion starts,
     eliminating the first-frame jerk where columns expand into final size. */ animation: marquee-scroll 50s linear infinite; animation-delay: 0.6s; will-change: transform; }
.marquee-inner:has(.logo-ph:hover) { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
  /* full cycle — list is duplicated in DOM for seamless loop */
}
.logo-ph { flex: 0 0 auto; min-width: 140px; height: 44px; border-radius: 6px; display: grid; place-items: center; font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: -0.005em; color: var(--ink-soft); padding: 0 18px; background: var(--gallery); white-space: nowrap; }
.logo-ph--img { background: transparent; padding: 0 8px; min-width: 0; height: 140px; display: flex; align-items: center; justify-content: center; }
.logo-ph--img img { display: block; height: 125px; width: auto; max-width: 360px; object-fit: contain; object-position: center; transition: filter 200ms ease; }
.logo-ph--img:hover img { filter: grayscale(1); }
/* ── AVT introduction (centred) ─────────────────────── */
.avt-intro { text-align: center; }
.avt-intro .wrap > * { margin-left: auto; margin-right: auto; }
.avt-intro h2 { max-width: 22ch; }
.avt-intro p.lead { max-width: 56ch; }
.token-mark { width: 96px; height: 96px; border-radius: 50%; background: var(--blue-zodiac-soft); color: var(--on-dark); overflow: hidden; display: grid; place-items: center; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.2; text-align: center; margin: 0 auto 32px; }
.token-mark img { width: 100%; height: 100%; object-fit: contain; display: block; transform: scale(1.7); transform-origin: center; }
/* ── grids ──────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-3.tight { gap: 16px; }
.grid-3.gappy { gap: 32px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
/* ── community cards ─────────────────────────────────── */
.comm-card { border: 1px solid var(--stroke-light); border-radius: 12px; padding: 24px; background: var(--paper); box-shadow: var(--card-shadow); display: flex; flex-direction: column; gap: 12px; min-height: 160px; transition: transform 140ms, box-shadow 140ms; color: inherit; text-decoration: none; }
.comm-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16,36,60,0.10); }
.comm-head { display: flex; align-items: center; gap: 12px; }
.icon-ph { width: 40px; height: 40px; background: var(--blue-zodiac); color: var(--paper); border-radius: 8px; display: grid; place-items: center; flex: 0 0 auto; }
.icon-ph svg { width: 20px; height: 20px; display: block; }
.icon-ph.is-aventus { background: #000; padding: 0; overflow: hidden; }
.icon-ph.is-aventus img { width: 100%; height: 100%; display: block; object-fit: cover; }
.comm-name { font-family: var(--sans); font-size: 22px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.comm-context { font-size: var(--t-small); line-height: 1.5; margin: 0; color: var(--ink-soft); }
.comm-cta { margin-top: auto; font-family: var(--sans); font-size: var(--t-micro); font-weight: 600; color: var(--electric-violet); border-top: 1px solid var(--stroke-light); padding-top: 12px; }
/* ── resources cards ─────────────────────────────────── */
.resources-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1024px) {
  .resources-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .resources-row { grid-template-columns: 1fr; }
}
.res-card { border: 1px solid var(--stroke-light); border-radius: 12px; padding: 32px 28px; background: var(--paper); box-shadow: var(--card-shadow); display: flex; flex-direction: column; min-height: 240px; transition: transform 140ms, box-shadow 140ms; color: inherit; text-decoration: none; }
.res-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(16,36,60,0.10); }
.res-card p { font-size: var(--t-small); line-height: 1.55; flex: 1; color: var(--ink-soft); }
.res-card .link { font-family: var(--sans); font-size: var(--t-micro); font-weight: 600; border-top: 1px solid var(--stroke-light); padding-top: 14px; margin-top: 16px; color: var(--electric-violet); }
/* ── blog card ───────────────────────────────────────── */
.blog-card { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border: 1px solid var(--stroke-light); border-radius: 12px; overflow: hidden; background: var(--paper); box-shadow: var(--card-shadow); }
.blog-card .ph-img { aspect-ratio: 16 / 9; border-radius: 0; min-height: 280px; }
.blog-body { padding: 32px 36px; display: flex; flex-direction: column; justify-content: center; }
.blog-meta { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
.blog-title { font-family: var(--sans); font-size: var(--t-h4); font-weight: 700; line-height: 1.18; letter-spacing: -0.016em; margin: 0 0 14px; color: var(--ink); }
.blog-excerpt { font-size: var(--t-small); line-height: 1.55; color: var(--ink-soft); margin-bottom: 22px; }
.blog-cta { font-family: var(--sans); font-size: var(--t-micro); font-weight: 600; color: var(--electric-violet); padding: 10px 0; align-self: flex-start; }
.see-all { text-align: right; margin-top: 20px; font-family: var(--sans); font-size: var(--t-micro); font-weight: 600; }
.see-all a { color: var(--electric-violet); text-decoration: none; padding-bottom: 2px; border-bottom: 1.5px solid currentColor; }
/* ===================================================================
   FOOTER — global component (from Footer System wireframe, brand-applied)
   =================================================================== */
.av-footer { background: var(--blue-zodiac); color: var(--on-dark); font-family: var(--sans); width: 100%; }
.av-footer .av-wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.av-footer .av-main { padding: 64px 0 48px; }
.av-grid { display: grid; grid-template-columns: 30% 1fr 1fr 1fr; gap: 56px; }
.av-brand .av-logo { display: inline-block; margin: 0 0 20px; text-decoration: none; }
.av-brand .av-logo img { display: block; height: 52px; width: auto; }
.av-brand .av-desc { font-size: 15px; line-height: 1.55; color: var(--on-dark-soft); margin: 0 0 24px; max-width: 36ch; }
.av-socials { display: flex; gap: 12px; }
.av-soc { width: 36px; height: 36px; border: 1px solid var(--stroke-dark); border-radius: 8px; display: grid; place-items: center; color: var(--on-dark); text-decoration: none; background: transparent; transition: background 140ms, border-color 140ms, color 140ms; }
.av-soc svg { width: 18px; height: 18px; display: block; }
.av-soc:hover { background: var(--electric-violet); border-color: var(--electric-violet); color: var(--paper); }
.av-col h4 { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-soft); margin: 0 0 18px; }
.av-col ul { list-style: none; padding: 0; margin: 0; }
.av-col li { margin: 0 0 10px; }
.av-col a { color: var(--on-dark); font-size: 15px; line-height: 1.4; text-decoration: none; border-bottom: 1px solid transparent; padding-bottom: 2px; transition: color 140ms, border-color 140ms; }
.av-col a:hover { color: var(--paper); border-bottom-color: var(--electric-violet); }
.av-bottom { background: #0A192C; /* slightly darker shade of Blue Zodiac */ color: var(--on-dark-soft); border-top: 1px solid var(--stroke-dark); }
.av-bottom .av-bottom-row { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-size: 14px; }
.av-bottom .copyright { margin: 0; color: var(--on-dark-soft); }
.av-bottom .legal { display: flex; align-items: center; }
.av-bottom .legal a, .av-bottom .legal button { color: var(--on-dark-soft); background: transparent; border: none; text-decoration: none; padding: 0 14px; border-right: 1px solid var(--stroke-dark); font-size: 14px; font-family: var(--sans); cursor: pointer; transition: color 140ms; }
.av-bottom .legal *:last-child { border-right: none; padding-right: 0; }
.av-bottom .legal *:first-child { padding-left: 0; }
.av-bottom .legal a:hover, .av-bottom .legal button:hover { color: var(--paper); }
/* =====================================================================
   CLOUD PAGE — additional components
   ===================================================================== */
/* ── dark page hero — shared base ────────────────────── */
/* Every page with a dark hero uses three classes:
     <section class="page-hero {page}-hero section--dark">
   - .page-hero         → shared layout, padding, hero-grid, ph sizing
   - .{page}-hero       → page-specific gradient (cloud/appchains/avt/about)
   - .section--dark     → pulls in shared dark-section text rules:
                            • white headings/body
                            • muted lead colour (--on-dark-soft)
                            • muted btn--link colour
                            • muted eyebrow + disclaimer
   This is the contract — adding .section--dark is required so future
   pages inherit lead colour, link colour, and disclaimer colour for free.

   Light-bg pages (Resources, Help, Case Studies, Blog) skip all of this
   and use .section--gallery / .section--paper directly.
*/
.page-hero { color: var(--on-dark); overflow: hidden; padding: 96px 0 88px; position: relative; }
.page-hero .hero-grid { grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.page-hero .ph { aspect-ratio: 5 / 4; min-height: 360px; background: rgba(255,255,255,0.06); border: 1px solid var(--stroke-dark); }
/* Hero gradient system — per-page recipes.
   All share: very dark base + soft radial light sources from corners.
   Text column always sits on near-black so white text stays legible.

   • Cloud     — base #10243C, Electric Violet glow top-right, deep purple bottom-right
   • Appchains — base #10243C, Cornflower glow top-right, Aquamarine hint far-right
   • AVT       — base #10243C, Electric Violet glow centred above mid-height, restrained
   • About     — base #10243C, Cornflower glow top-left, most restrained
*/
/* Cloud page hero — isometric node canvas spans the entire section.
   The node canvas is positioned as an absolute backdrop; .wrap sits above
   it. A spacer in the grid's right column preserves the 1fr 1fr layout
   so the copy stays constrained to the left half. */
.hero-node-canvas { position: absolute; inset: 0; width: 100% !important; height: 100% !important; display: block; z-index: 0; pointer-events: none; }
.cloud-hero > .wrap { position: relative; z-index: 1; }
.hero-node-spacer { aspect-ratio: 5 / 4; min-height: 360px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; }
.iso-cube { width: 20%; max-width: 90px; height: auto; display: block; filter: drop-shadow(0 0 30px rgba(81, 0, 255, 0.35)); }
/* Appchains page hero — chain canvas (in-grid stage) */
.hero-chain-stage { aspect-ratio: 5 / 4; min-height: 360px; width: 100%; position: relative; overflow: visible; background: transparent; }
.hero-chain-canvas { position: absolute; inset: 0; width: 100% !important; height: 100% !important; display: block; }
/* Cloud page hero gradient */
.cloud-hero { background: /* Electric Violet glow — top right */ radial-gradient(ellipse 55% 75% at 100% 0%, rgba(81,0,255,0.55) 0%, rgba(81,0,255,0.18) 35%, rgba(81,0,255,0) 65%), /* Deep purple glow — bottom right */ radial-gradient(ellipse 50% 65% at 105% 105%, rgba(123,47,255,0.45) 0%, rgba(123,47,255,0.12) 38%, rgba(123,47,255,0) 65%), /* very dark base — left side stays near-black */ linear-gradient(90deg, #0D1B2E 0%, #0D1B2E 42%, #10243C 100%); }
/* Appchains page hero gradient */
.appchains-hero { background: radial-gradient(ellipse 55% 75% at 100% 0%, rgba(44,109,235,0.50) 0%, rgba(44,109,235,0.15) 38%, rgba(44,109,235,0) 68%), radial-gradient(ellipse 35% 80% at 110% 60%, rgba(105,241,192,0.20) 0%, rgba(105,241,192,0.06) 38%, rgba(105,241,192,0) 65%), linear-gradient(90deg, #0D1B2E 0%, #0D1B2E 42%, #10243C 100%); }
/* AVT page hero gradient */
.avt-hero { background: radial-gradient(ellipse 50% 60% at 50% 30%, rgba(81,0,255,0.35) 0%, rgba(81,0,255,0.10) 40%, rgba(81,0,255,0) 70%), linear-gradient(180deg, #0D1B2E 0%, #10243C 100%); }
/* Get-a-Node page hero gradient — softer than Cloud, centered glow */
.node-hero { background: /* Electric Violet halo — upper right */ radial-gradient(ellipse 55% 70% at 100% 0%, rgba(81,0,255,0.55) 0%, rgba(81,0,255,0.18) 35%, rgba(81,0,255,0) 65%), /* Deep purple halo — lower left for asymmetric balance */ radial-gradient(ellipse 55% 70% at 0% 110%, rgba(123,47,255,0.40) 0%, rgba(123,47,255,0.10) 38%, rgba(123,47,255,0) 65%), linear-gradient(90deg, #10243C 0%, #1a1830 60%, #2a1f4a 100%); padding: 96px 0 88px; }
.node-hero-copy { /* No constraint on the wrapper. Individual elements set their own max-width below. */ }
.node-hero-copy h1.display { max-width: none; margin: 0 0 18px; }
.node-hero-copy .lead { max-width: 52ch; margin: 0; }
/* ── Seller cards (Get a Node, Section 02) ─────────── */
.seller-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.seller-card { display: flex; flex-direction: column; gap: 24px; background: var(--paper); border: 1px solid var(--stroke-light); border-radius: 6px; padding: 36px 32px 32px; text-decoration: none; color: inherit; cursor: pointer; transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease; }
.seller-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(16, 36, 60, 0.10); border-color: var(--electric-violet); }
.seller-card .seller-logo { width: 100%; max-width: 240px; height: 96px; border-radius: 4px; background: linear-gradient(135deg, rgba(81,0,255,0.06), rgba(44,109,235,0.04)); border: 1px dashed rgba(81,0,255,0.25); display: grid; place-items: center; padding: 16px; }
.seller-card .seller-logo--img { background: transparent; border: none; padding: 0; }
.seller-card .seller-logo--img img { display: block; max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.seller-card .seller-logo-name { font-family: var(--sans); font-weight: 700; font-size: 28px; letter-spacing: -0.02em; color: var(--electric-violet); }
.seller-card h3 { font-family: var(--sans); font-size: 28px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.1; color: var(--ink); margin: 0; }
.seller-card > p { font-size: var(--t-small); line-height: 1.55; color: var(--ink-soft); margin: 0; flex: 1; }
.seller-card .btn { align-self: flex-start; margin-top: 4px; }
.seller-card.is-placeholder { align-items: center; justify-content: center; text-align: center; gap: 18px; border-style: dashed; border-color: var(--stroke-light); background: transparent; min-height: 320px; }
.seller-card.is-placeholder:hover { transform: none; box-shadow: none; border-color: var(--stroke-light); cursor: default; }
.seller-card .seller-placeholder-plus { width: 56px; height: 56px; border: 1.5px solid var(--electric-violet); border-radius: 50%; display: grid; place-items: center; color: var(--electric-violet); opacity: 0.65; }
.seller-card .seller-placeholder-plus svg { width: 22px; height: 22px; }
.seller-card .seller-placeholder-label { font-family: var(--mono); font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-soft); margin: 0; }
/* ── Process row, five-step variant — tighter so 5 fit on one desktop row.
   Selector includes both classes so it wins over the base .process-row
   rule that's declared later in the file. */
.process-row.process-row--five { grid-template-columns: repeat(5, 1fr); gap: 0; }
.process-row.process-row--five .process-step { padding: 24px 20px; gap: 10px; }
.process-row.process-row--five .process-step .step-icon { width: 40px; height: 40px; }
.process-row.process-row--five .process-step .step-icon svg { width: 20px; height: 20px; }
.process-row.process-row--five .process-step h4 { font-size: 18px; letter-spacing: -0.005em; }
.process-row.process-row--five .process-step p { font-size: 14px; line-height: 1.5; }
.process-row.process-row--five .process-step .step-arrow { right: -10px; font-size: 18px; }
/* ── Before-you-buy disclaimer panel (Get a Node, Section 04) */
.before-buy { background: var(--gallery); border: 1px solid var(--stroke-light); border-left: 4px solid var(--electric-violet); border-radius: 6px; padding: 40px 48px; max-width: 920px; }
.before-buy-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.before-buy-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(81, 0, 255, 0.10); display: grid; place-items: center; color: var(--electric-violet); flex: 0 0 auto; }
.before-buy-icon svg { width: 22px; height: 22px; }
.before-buy h2 { font-family: var(--sans); font-size: 30px; font-weight: 600; letter-spacing: -0.015em; color: var(--ink); margin: 0; }
.before-buy-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.before-buy-list li { position: relative; padding-left: 22px; font-size: var(--t-small); line-height: 1.55; color: var(--ink-soft); }
.before-buy-list li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--electric-violet); }
.before-buy-list li a { color: var(--electric-violet); border-bottom: 1px dashed var(--electric-violet); text-decoration: none; }
.before-buy-list li a:hover { filter: brightness(0.85); }
@media (max-width: 900px) {
  .seller-grid { grid-template-columns: repeat(2, 1fr); }
  .before-buy { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .seller-grid { grid-template-columns: 1fr; }
  .node-hero { padding: 80px 0 64px; }
}
/* About page hero gradient */
.about-hero { background: radial-gradient(ellipse 55% 70% at 0% 0%, rgba(44,109,235,0.32) 0%, rgba(44,109,235,0.10) 40%, rgba(44,109,235,0) 70%), linear-gradient(90deg, #10243C 0%, #0D1B2E 60%, #0D1B2E 100%); }
.hero-meta { display: inline-block; max-width: 100%; font-family: var(--mono); font-size: var(--t-micro); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border: 1px solid var(--stroke-dark); border-radius: 999px; color: var(--on-dark-soft); margin: 0 0 28px; white-space: normal; word-break: break-word; }
/* ── counter strip ───────────────────────────────────── */
.counter-strip { padding: 56px 0; background: var(--gallery); }
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.counter { padding: 8px 28px; border-left: 1px solid var(--stroke-light); }
.counter:first-child { border-left: none; padding-left: 0; }
.counter-label { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 12px; }
.counter-value { font-family: var(--sans); font-size: 40px; font-weight: 800; letter-spacing: -0.025em; line-height: 1; color: var(--electric-violet); }
.counter-value-sm { font-size: 40px; }
/* ── feature cards (Section 03) ──────────────────────── */
.feat-card { background: var(--paper); border: 1px solid var(--stroke-light); border-radius: 12px; box-shadow: var(--card-shadow); padding: 32px 28px; display: flex; flex-direction: column; gap: 16px; min-height: 280px; transition: transform 140ms, box-shadow 140ms; }
.feat-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(16,36,60,0.10); }
.feat-icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(81,0,255,0.10); color: var(--electric-violet); display: grid; place-items: center; flex: 0 0 auto; }
.feat-icon svg { width: 24px; height: 24px; display: block; }
.feat-card h3 { font-family: var(--sans); font-size: var(--t-h5); font-weight: 700; letter-spacing: -0.01em; line-height: 1.22; margin: 0; color: var(--ink); }
.feat-card p { font-size: var(--t-small); line-height: 1.55; margin: 0; color: var(--ink-soft); }
/* ── reward streams ──────────────────────────────────── */
.reward-stream { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 32px; padding-top: 48px; border-top: 1px solid var(--stroke-light); }
.reward-stream:first-of-type { border-top: none; padding-top: 0; margin-top: 32px; }
.reward-stream .chart-ph { aspect-ratio: 4 / 3; min-height: 320px; }
.reward-stream .chart-frame { background: #fff; border: 1px solid var(--stroke-light); border-radius: 4px; padding: 0; display: flex; align-items: center; justify-content: center; }
.reward-stream .chart-frame img { width: 100%; height: auto; display: block; }
.stream-label { font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--electric-violet); margin: 0 0 10px; }
.reward-stream h3 { font-family: var(--sans); font-size: var(--t-h4); font-weight: 700; letter-spacing: -0.018em; line-height: 1.1; margin: 0 0 18px; color: var(--ink); }
.reward-stream p { font-size: var(--t-body); line-height: 1.55; color: var(--ink-soft); margin: 0 0 14px; }
/* ── callout (formula) ───────────────────────────────── */
.callout { background: var(--blue-zodiac-soft); color: var(--on-dark); border-left: 4px solid var(--electric-violet); border-radius: 8px; padding: 22px 26px; margin: 18px 0; }
.callout p { color: var(--on-dark); margin: 0; }
.callout .callout-label { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-soft); margin: 0 0 10px; }
.callout .callout-formula { font-family: var(--mono); font-size: 20px; font-weight: 500; letter-spacing: -0.005em; line-height: 1.3; color: var(--on-dark); margin: 0; }
/* ── testimonial cards ───────────────────────────────── */
.testimonial-card { background: var(--blue-zodiac-soft); border-radius: 12px; padding: 32px 28px; display: flex; flex-direction: column; gap: 20px; color: var(--on-dark); }
.testimonial-photo { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.10); overflow: hidden; display: grid; place-items: center; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.06em; color: var(--on-dark-soft); text-align: center; line-height: 1.15; flex: 0 0 auto; }
.testimonial-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial-quote { font-family: var(--sans); font-size: var(--t-body); line-height: 1.5; font-weight: 400; margin: 0; color: var(--on-dark); }
.testimonial-name { font-family: var(--sans); font-size: var(--t-micro); font-weight: 600; letter-spacing: 0; color: var(--on-dark-soft); margin: 0; }
.testimonial-card--featured { background: var(--paper); color: var(--ink); border: 1px solid rgba(81, 0, 255, 0.15); box-shadow: 0 12px 32px rgba(16, 36, 60, 0.35), 0 0 0 1px var(--electric-violet) inset; position: relative; }
.testimonial-card--featured .testimonial-quote { color: var(--ink); font-weight: 500; }
.testimonial-card--featured .testimonial-name { color: var(--electric-violet); }
.testimonial-card--featured .testimonial-photo { background: rgba(81, 0, 255, 0.08); box-shadow: 0 0 0 2px var(--electric-violet); }
/* ── step cards ──────────────────────────────────────── */
.step-card { background: var(--paper); border: 1px solid var(--stroke-light); border-radius: 12px; box-shadow: var(--card-shadow); padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; }
.step-num { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin: 0; color: var(--electric-violet); }
.step-card h3 { font-family: var(--sans); font-size: var(--t-h5); font-weight: 700; letter-spacing: -0.01em; line-height: 1.22; margin: 0; color: var(--ink); }
.step-card p { font-size: var(--t-small); line-height: 1.55; margin: 0; color: var(--ink-soft); }
.step-card .btn { align-self: flex-start; margin-top: 8px; }
.step-card .video-ph { margin-top: auto; }
/* ── video placeholders ──────────────────────────────── */
.video-ph { aspect-ratio: 16 / 9; background: var(--blue-zodiac-soft); color: var(--on-dark); border-radius: 10px; display: grid; place-items: center; padding: 20px; position: relative; overflow: hidden; }
.video-ph.has-embed { padding: 0; display: block; }
.video-facade { cursor: pointer; transition: outline-color 0.15s ease; }
.video-facade:hover, .video-facade:focus-visible { outline: 2px solid var(--electric-violet); outline-offset: 3px; }
.video-facade .video-consent-note { position: absolute; top: 16px; left: 18px; right: 18px; text-align: center; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark); opacity: 0.55; }
.video-ph iframe { width: 100%; height: 100%; display: block; border: 0; }
.video-ph:not(.has-embed)::before { content: ""; width: 0; height: 0; border-left: 18px solid var(--on-dark); border-top: 12px solid transparent; border-bottom: 12px solid transparent; opacity: 0.6; }
.video-ph .video-label { position: absolute; bottom: 14px; left: 18px; right: 18px; text-align: center; font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--on-dark); letter-spacing: -0.005em; }
/* ── architecture diagram ────────────────────────────── */
.arch-diagram { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 8px; border-top: 1px solid var(--stroke-dark); border-bottom: 1px solid var(--stroke-dark); }
.arch-layer { padding: 36px 28px; border-right: 1px solid var(--stroke-dark); display: flex; flex-direction: column; gap: 12px; position: relative; }
.arch-layer:last-child { border-right: none; }
.arch-layer .layer-num { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-soft); margin: 0; }
.arch-layer .layer-tag { font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: var(--on-dark-soft); margin: 0; }
.arch-layer h3 { font-family: var(--sans); font-size: var(--t-h5); font-weight: 700; letter-spacing: -0.01em; line-height: 1.22; margin: 0; color: var(--on-dark); }
.arch-layer p { font-size: var(--t-small); line-height: 1.55; margin: 0; color: var(--on-dark-soft); }
.arch-arrows { display: grid; grid-template-columns: repeat(3, 1fr); font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-soft); margin-top: 18px; }
.arch-arrows span { text-align: center; position: relative; }
.arch-arrows span:not(:last-child)::after { content: " → "; color: var(--electric-violet); }
/* ── compare cards ───────────────────────────────────── */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0; }
.compare-card { background: var(--paper); border: 1px solid var(--stroke-light); border-radius: 12px; box-shadow: var(--card-shadow); padding: 32px 28px; }
.compare-card h3 { font-family: var(--sans); font-size: var(--t-h5); font-weight: 700; letter-spacing: -0.01em; line-height: 1.22; margin: 0 0 18px; color: var(--ink); }
.compare-card ul { list-style: none; padding: 0; margin: 0; }
.compare-card li { position: relative; padding: 14px 0 14px 32px; font-size: var(--t-small); line-height: 1.45; color: var(--ink-soft); border-top: 1px solid var(--stroke-light); }
.compare-card li:first-child { border-top: none; }
.compare-card.you-get li::before { content: "✓"; position: absolute; left: 0; top: 14px; color: var(--electric-violet); font-weight: 700; }
.compare-card.you-skip li::before { content: "✕"; position: absolute; left: 0; top: 14px; color: var(--ink); font-weight: 700; }
/* ── final CTA centring ──────────────────────────────── */
.final-cta { text-align: center; }
.final-cta .wrap > * { margin-left: auto; margin-right: auto; }
.final-cta h2.section-h { max-width: 24ch; }
.final-cta p.lead { max-width: 60ch; }
.final-cta .btn-row { justify-content: center; }
.final-cta .disclaimer { max-width: 64ch; }
/* =====================================================================
   APPCHAINS PAGE — additional components
   ===================================================================== */
/* ── trust metrics (Section 02) ─────────────────────── */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 48px; }
.trust-metric { padding-top: 20px; border-top: 2px solid var(--electric-violet); }
.trust-metric .stat-key { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink); margin: 0 0 12px; }
.trust-metric .stat { font-family: var(--sans); font-size: 56px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--electric-violet); margin: 0 0 14px; }
.trust-metric .stat-caption { font-size: var(--t-small); line-height: 1.5; color: var(--ink-soft); margin: 0; }
/* ── priority panels (Section 03) ───────────────────── */
.priority-stack { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.priority-panel { display: grid; grid-template-columns: 220px 64px 1fr; gap: 36px; align-items: start; padding: 40px 36px; background: var(--paper); border: 1px solid var(--stroke-light); border-radius: 12px; box-shadow: var(--card-shadow); }
.priority-num { font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); line-height: 1.4; }
.priority-num .big { display: block; font-family: var(--sans); font-size: 64px; font-weight: 800; letter-spacing: -0.03em; color: var(--electric-violet); line-height: 1; margin-bottom: 14px; }
.priority-icon { width: 56px; height: 56px; border-radius: 12px; background: rgba(81,0,255,0.10); color: var(--electric-violet); display: grid; place-items: center; flex: 0 0 auto; }
.priority-icon svg { width: 28px; height: 28px; display: block; }
.priority-body h3 { font-family: var(--sans); font-size: 26px; font-weight: 700; letter-spacing: -0.012em; line-height: 1.25; margin: 0 0 14px; color: var(--ink); }
.priority-body p { font-size: var(--t-small); line-height: 1.55; color: var(--ink-soft); margin: 0 0 12px; }
.priority-body ul.dash li { font-size: var(--t-small); }
/* ── comparison table (Section 04) ──────────────────── */
.compare-table-wrap { margin-top: 32px; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: var(--t-small); table-layout: fixed; }
.compare-table th, .compare-table td { padding: 18px 22px; text-align: left; vertical-align: top; line-height: 1.5; }
.compare-table thead th { font-family: var(--sans); font-size: 17px; font-weight: 700; letter-spacing: -0.005em; color: var(--on-dark); background: var(--blue-zodiac); border-top: 2px solid var(--blue-zodiac); border-bottom: 2px solid var(--blue-zodiac); }
.compare-table thead th:first-child { background: transparent; color: var(--ink-soft); border-color: transparent; font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; }
.compare-table thead th.col-aventus { background: var(--electric-violet); border-top: 2px solid var(--electric-violet); border-bottom: 2px solid var(--electric-violet); }
.compare-table tbody td { border-bottom: 1px solid var(--stroke-light); color: var(--ink-soft); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td.col-aventus { background: rgba(81,0,255,0.06); color: var(--ink); font-weight: 500; border-left: 1px solid rgba(81,0,255,0.20); border-right: 1px solid rgba(81,0,255,0.20); }
.compare-table tbody tr:last-child td.col-aventus { border-bottom: 2px solid var(--electric-violet); border-radius: 0 0 8px 8px; }
.compare-table .row-label { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-soft); width: 18%; }
/* ── case study cards (Section 05) ──────────────────── */
.case-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--stroke-light); border-radius: 12px; overflow: hidden; box-shadow: var(--card-shadow); transition: transform 140ms, box-shadow 140ms; }
.case-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(16,36,60,0.10); }
.case-card .case-image { aspect-ratio: 16 / 9; border-radius: 0; min-height: 0; padding: 16px; }
.case-body { padding: 32px 32px 28px; display: flex; flex-direction: column; gap: 18px; }
.case-tag { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--electric-violet); margin: 0; }
.case-card h3 { font-family: var(--sans); font-size: 30px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.15; margin: 0; color: var(--ink); }
.case-stats { list-style: none; padding: 0; margin: 0; }
.case-stats li { padding: 12px 0 12px 24px; position: relative; font-size: var(--t-small); line-height: 1.5; color: var(--ink-soft); border-top: 1px solid var(--stroke-light); }
.case-stats li:first-child { border-top: none; }
.case-stats li::before { content: "➛"; position: absolute; left: 0; top: 10px; line-height: 1.5; color: var(--electric-violet); }
.case-quote { font-style: italic; color: var(--ink); font-size: var(--t-small); line-height: 1.5; border-left: 3px solid var(--electric-violet); padding: 4px 0 4px 18px; margin: 0; }
.case-download { color: var(--electric-violet); font-family: var(--sans); font-size: var(--t-micro); font-weight: 600; text-decoration: none; border-top: 1px solid var(--stroke-light); padding-top: 18px; margin-top: 4px; display: flex; justify-content: space-between; align-items: center; }
.case-download:hover { filter: brightness(0.85); }
/* ── case study results summary (Section 05) ───────── */
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 48px; border-top: 1px solid var(--stroke-light); border-left: 1px solid var(--stroke-light); }
.result-card { padding: 28px 28px 32px; border-right: 1px solid var(--stroke-light); border-bottom: 1px solid var(--stroke-light); background: transparent; display: flex; flex-direction: column; gap: 12px; position: relative; }
.result-card .result-tag { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin: 0; }
.result-card .result-name { font-family: var(--sans); font-size: 18px; font-weight: 600; color: var(--ink); margin: 0 0 8px; letter-spacing: -0.01em; }
.result-card .result-stat { font-family: var(--sans); font-size: 72px; font-weight: 700; line-height: 0.95; letter-spacing: -0.03em; color: var(--electric-violet); margin: 8px 0 4px; }
.result-card .result-line { font-size: var(--t-small); line-height: 1.5; color: var(--ink); margin: 0; }
@media (max-width: 900px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .results-grid { grid-template-columns: 1fr; }
}
/* ── tech strip (Section 06, dark) ──────────────────── */
.tech-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 32px; border-top: 1px solid var(--stroke-dark); border-bottom: 1px solid var(--stroke-dark); }
.tech-col { padding: 36px 28px 32px; border-right: 1px solid var(--stroke-dark); }
.tech-col:last-child { border-right: none; }
.tech-col h3 { font-family: var(--sans); font-size: 22px; font-weight: 700; letter-spacing: -0.012em; line-height: 1.25; margin: 0 0 14px; color: var(--on-dark); }
.tech-col p { font-size: var(--t-small); line-height: 1.55; color: var(--on-dark-soft); margin: 0; }
/* ── process row (Section 07) ───────────────────────── */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 48px 0 32px; position: relative; }
.process-step { padding: 32px 28px; background: var(--paper); border: 1px solid var(--stroke-light); border-radius: 12px; box-shadow: var(--card-shadow); position: relative; display: flex; flex-direction: column; gap: 14px; }
.process-step .step-icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(81,0,255,0.10); color: var(--electric-violet); display: grid; place-items: center; flex: 0 0 auto; }
.process-step .step-icon svg { width: 24px; height: 24px; display: block; }
.process-step .step-num { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--electric-violet); margin: 0; }
.process-step h4 { font-family: var(--sans); font-size: 22px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; margin: 0; color: var(--ink); }
.process-step p { font-size: var(--t-small); line-height: 1.55; color: var(--ink-soft); margin: 0; }
.process-step .step-arrow { position: absolute; right: -16px; top: 36px; width: 32px; height: 24px; display: grid; place-items: center; background: var(--paper); color: var(--electric-violet); font-family: var(--sans); font-weight: 700; font-size: 20px; border-radius: 50%; z-index: 2; }
.process-step:last-child .step-arrow { display: none; }
/* =====================================================================
   AVT PAGE — additional components
   ===================================================================== */
/* ── hero reference links ────────────────────────────── */
.ref-links { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; }
.ref-links a { color: var(--on-dark-soft); text-decoration: none; padding-bottom: 4px; border-bottom: 1px solid var(--stroke-dark); transition: color 140ms, border-color 140ms; }
.ref-links a:hover { color: var(--paper); border-bottom-color: var(--electric-violet); }
/* ── AVT hero token mark visual ──────────────────────── */
.token-mark--lg { width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, rgba(81,0,255,0.35) 0%, rgba(81,0,255,0) 60%), var(--blue-zodiac-soft); border: 1px solid var(--stroke-dark); color: var(--on-dark); overflow: hidden; display: grid; place-items: center; font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; line-height: 1.4; text-align: center; margin: 0 auto; }
.token-mark--lg .ticker { display: block; font-family: var(--sans); font-size: 72px; font-weight: 800; letter-spacing: -0.025em; color: var(--on-dark); margin-bottom: 4px; }
.token-mark--lg img { width: 100%; height: 100%; object-fit: contain; display: block; transform: scale(1.7); transform-origin: center; filter: drop-shadow(0 0 24px rgba(81, 0, 255, 0.45)); }
/* ── utility grid (5-up) ─────────────────────────────── */
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
/* ── governance recent-changes list ──────────────────── */
.gov-list { list-style: none; padding: 0; margin: 0 0 24px; }
.gov-list li { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 14px 0; border-top: 1px solid var(--stroke-light); font-size: var(--t-small); line-height: 1.5; color: var(--ink-soft); }
.gov-list li:first-child { border-top: none; padding-top: 0; }
.gov-list .gov-date { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: var(--electric-violet); padding-top: 2px; }
/* ── homepage appchain partner logo row (dark section) ───── */
.appchain-logos { display: flex; align-items: center; gap: 14px; margin-top: 14px; flex-wrap: wrap; }
.appchain-logos img { display: block; height: 75px; width: auto; max-width: 260px; object-fit: contain; background: var(--paper); padding: 10px 20px; border-radius: 6px; }
@media (max-width: 1024px) {
  .appchain-logos img { height: 60px; max-width: 220px; padding: 8px 16px; }
}
@media (max-width: 768px) {
  .appchain-logos { gap: 10px; }
  .appchain-logos img { height: 50px; max-width: 180px; padding: 8px 14px; }
}
/* ── exchange row ────────────────────────────────────── */
.exchange-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.exchange-logo { background: var(--paper); border: 1px solid var(--stroke-light); border-radius: 12px; box-shadow: var(--card-shadow); min-height: 160px; padding: 24px 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; font-family: var(--sans); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); text-decoration: none; transition: transform 140ms, box-shadow 140ms; }
.exchange-logo img { display: block; height: 88px; width: auto; max-width: 100%; object-fit: contain; object-position: center; }
.exchange-logo:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16,36,60,0.10); }
/* ── inline dashed-underline links ───────────────────── */
.dashed-link { color: inherit; text-decoration: none; border-bottom: 1px dashed currentColor; padding-bottom: 1px; transition: color 140ms, border-color 140ms; }
.dashed-link:hover { color: var(--electric-violet); border-bottom-color: var(--electric-violet); }
.section--dark .dashed-link:hover { color: var(--paper); border-bottom-color: var(--paper); }
/* ── compliance block ────────────────────────────────── */
.compliance-block { background: var(--gallery); border-top: 1px solid var(--stroke-light); padding: 48px 0; }
.compliance-label { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 14px; }
.compliance-text { font-family: var(--sans); font-style: italic; font-size: var(--t-small); line-height: 1.6; color: var(--ink-soft); max-width: 84ch; margin: 0; }
/* =====================================================================
   RESOURCES HUB — additional components
   ===================================================================== */
/* ── light hero (no animation, no CTA) ───────────────── */
.light-hero { padding: 104px 0 96px; background: var(--gallery); }
.light-hero h1.t-h1 { max-width: 14ch; margin: 0 0 28px; }
.light-hero p.lead { max-width: 60ch; }
@media (max-width: 1024px) {
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ── resource hub cards ──────────────────────────────── */
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.resource-card { background: var(--paper); border: 1px solid var(--stroke-light); border-radius: 12px; box-shadow: var(--card-shadow); padding: 32px 28px; display: flex; flex-direction: column; gap: 18px; min-height: 320px; color: inherit; text-decoration: none; transition: transform 140ms, box-shadow 140ms; }
.resource-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(16,36,60,0.10); }
.resource-card .resource-icon { width: 56px; height: 56px; border-radius: 12px; background: rgba(81,0,255,0.10); color: var(--electric-violet); display: grid; place-items: center; flex: 0 0 auto; }
.resource-card .resource-icon svg { width: 28px; height: 28px; display: block; }
.resource-card h3 { font-family: var(--sans); font-size: var(--t-h5); font-weight: 700; line-height: 1.2; letter-spacing: -0.012em; margin: 0; color: var(--ink); }
.resource-card p { font-size: var(--t-small); line-height: 1.55; margin: 0; color: var(--ink-soft); flex: 1; }
.resource-card .res-cta { font-family: var(--sans); font-size: var(--t-micro); font-weight: 600; color: var(--electric-violet); border-top: 1px solid var(--stroke-light); padding-top: 16px; margin-top: 4px; display: flex; align-items: center; justify-content: space-between; }
.resource-card.is-ghost { background: transparent; border-style: dashed; border-color: var(--stroke-light); box-shadow: none; pointer-events: none; }
.resource-card.is-ghost:hover { transform: none; box-shadow: none; }
.resource-card.is-ghost .resource-icon { background: rgba(63,78,97,0.06); color: var(--ink-soft); }
.resource-card.is-ghost h3, .resource-card.is-ghost p, .resource-card.is-ghost .res-cta { color: var(--ink-soft); opacity: 0.7; }
.resource-card.is-ghost .res-cta { border-top-color: var(--stroke-light); }
.ghost-pill { display: inline-block; font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-soft); border: 1px dashed var(--stroke-light); padding: 4px 10px; border-radius: 999px; align-self: flex-start; }
/* nav: active state */
.nav-links a.is-current { color: var(--electric-violet); border-bottom-color: var(--electric-violet); }
.nav-links a.has-caret.is-current { color: var(--electric-violet); border-bottom-color: var(--electric-violet); }
.nav-links a.has-caret.is-current::after { color: var(--electric-violet); }
/* =====================================================================
   HELP AND SUPPORT PAGE — additional components
   ===================================================================== */
/* ── submit-a-ticket cards ───────────────────────────── */
.ticket-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.ticket-card { background: var(--paper); border: 1px solid var(--stroke-light); border-radius: 12px; box-shadow: var(--card-shadow); padding: 36px 32px; display: flex; flex-direction: column; gap: 18px; min-height: 280px; }
.ticket-icon { width: 56px; height: 56px; border-radius: 12px; background: rgba(81,0,255,0.10); color: var(--electric-violet); display: grid; place-items: center; flex: 0 0 auto; }
.ticket-icon svg { width: 28px; height: 28px; display: block; }
.ticket-card h3 { font-family: var(--sans); font-size: var(--t-h4); font-weight: 700; letter-spacing: -0.018em; line-height: 1.15; margin: 4px 0 0; color: var(--ink); }
.ticket-card p { font-size: var(--t-body); line-height: 1.55; color: var(--ink-soft); flex: 1; margin: 0; }
.ticket-card .btn { align-self: flex-start; }
.ticket-note { margin-top: 28px; font-family: var(--sans); font-size: var(--t-small); font-style: italic; color: var(--ink-soft); max-width: 80ch; line-height: 1.55; }
/* ── FAQ tabs ────────────────────────────────────────── */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--stroke-light); margin: 40px 0 0; }
.tab { flex: 1; padding: 22px 26px; text-align: left; font-family: var(--sans); font-size: var(--t-small); font-weight: 600; color: var(--ink-soft); background: transparent; border: 1px solid var(--stroke-light); border-bottom: none; border-right: none; border-radius: 8px 8px 0 0; cursor: pointer; position: relative; display: flex; flex-direction: column; gap: 6px; transition: color 140ms, background 140ms; }
.tab:last-child { border-right: 1px solid var(--stroke-light); }
.tab:hover { color: var(--electric-violet); }
.tab .tab-count { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-soft); }
.tab.is-active { background: var(--paper); color: var(--ink); box-shadow: inset 0 3px 0 var(--electric-violet); }
.tab.is-active .tab-count { color: var(--electric-violet); }
.tab.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; background: var(--paper); }
/* tab panels */
.tab-panel { background: var(--paper); border: 1px solid var(--stroke-light); border-top: none; border-radius: 0 0 8px 8px; padding: 14px 32px 28px; }
.tab-panel.is-hidden { display: none; }
.mobile-tab-label { display: none; font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: var(--electric-violet); padding: 24px 0 4px; }
/* ── FAQ accordion rows ──────────────────────────────── */
.faq-row { border-top: 1px solid var(--stroke-light); padding: 22px 4px; display: grid; grid-template-columns: 32px 1fr 24px; gap: 16px; align-items: flex-start; cursor: pointer; transition: background 140ms; }
.faq-row:first-child { border-top: none; }
.faq-row:hover { background: rgba(81,0,255,0.04); }
.faq-row .q-mark { font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--electric-violet); padding-top: 2px; }
.faq-row .q-text { font-family: var(--sans); font-size: var(--t-body); font-weight: 600; letter-spacing: -0.008em; line-height: 1.35; color: var(--ink); }
.faq-row .q-chevron { font-family: var(--sans); font-size: 22px; line-height: 1; color: var(--ink-soft); text-align: right; padding-top: 2px; transition: transform 140ms, color 140ms; }
.faq-row.is-open .q-chevron { transform: rotate(90deg); color: var(--electric-violet); }
.faq-row.is-open { background: rgba(81,0,255,0.04); }
/* answer body — revealed when row is open */
.q-answer { grid-column: 2 / span 1; margin: 12px 0 4px; font-size: var(--t-small); line-height: 1.6; color: var(--ink-soft); max-width: 72ch; display: none; }
.faq-row.is-open .q-answer { display: block; }
.q-answer p { margin: 0 0 10px; }
.q-answer p:last-child { margin-bottom: 0; }
.q-answer a { color: var(--electric-violet); text-decoration: none; border-bottom: 1px dashed currentColor; }
/* inline video shown when FAQ row is open */
.faq-video { grid-column: 2 / span 1; margin-top: 18px; max-width: 640px; }
.faq-video .video-ph { border-radius: 10px; }
.faq-video .video-caption { font-family: var(--sans); font-size: var(--t-small); font-style: italic; color: var(--ink-soft); margin: 10px 0 0; }
.ticket-anchor { margin-top: 22px; font-family: var(--sans); font-size: var(--t-small); color: var(--ink-soft); }
.ticket-anchor a { color: var(--electric-violet); text-decoration: none; border-bottom: 1px dashed currentColor; padding-bottom: 1px; }
/* ── still need help — contact + channels ───────────── */
.help-bottom-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; margin-top: 40px; align-items: flex-start; }
.contact-block h3, .channels-block h3 { font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--electric-violet); margin: 0 0 22px; }
.contact-row { padding: 18px 0; border-top: 1px solid var(--stroke-light); display: grid; grid-template-columns: 200px 1fr; gap: 16px; font-size: var(--t-body); }
.contact-row:last-of-type { border-bottom: 1px solid var(--stroke-light); }
.contact-row .label { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-soft); padding-top: 4px; }
.contact-row a { color: var(--ink); text-decoration: none; border-bottom: 1px dashed var(--electric-violet); padding-bottom: 1px; align-self: start; transition: color 140ms; }
.contact-row a:hover { color: var(--electric-violet); }
.channel-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 8px; }
.channel { background: var(--paper); border: 1px solid var(--stroke-light); border-radius: 10px; padding: 22px 8px 16px; display: flex; flex-direction: column; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); transition: transform 140ms, box-shadow 140ms, border-color 140ms; }
.channel:hover { transform: translateY(-2px); box-shadow: var(--card-shadow); border-color: rgba(81,0,255,0.30); }
.channel .ch-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(81,0,255,0.10); color: var(--electric-violet); display: grid; place-items: center; }
.channel .ch-icon svg { width: 20px; height: 20px; display: block; }
.channel .ch-name { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--ink); }
/* dropdown panel — current-item highlight */
.dropdown-panel a.is-current { background: rgba(81,0,255,0.08); color: var(--electric-violet); }
/* =====================================================================
   ABOUT PAGE — additional components
   ===================================================================== */
/* about hero — mark left, copy right; dark with restrained Cornflower glow */
.about-hero { padding: 96px 0 104px; }
.about-hero-grid { display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: center; }
.about-hero .token-mark--lg { width: 220px; height: 220px; margin: 0; }
.about-mark { display: block; width: 220px; height: 220px; border-radius: 16px; box-shadow: 0 8px 28px rgba(81,0,255,0.25); }
.about-hero .token-mark--lg .av-mark { display: block; font-family: var(--sans); font-size: 64px; font-weight: 800; letter-spacing: -0.025em; color: var(--on-dark); margin-bottom: 6px; }
.about-hero h1.t-h1 { max-width: 14ch; margin-bottom: 24px; }
.about-hero .lead-sub { font-family: var(--sans); font-size: var(--t-h5); line-height: 1.25; font-weight: 500; letter-spacing: -0.012em; color: var(--on-dark); margin: 0 0 24px; max-width: 32ch; }
.about-hero .body-copy { font-size: var(--t-body); line-height: 1.55; color: var(--on-dark-soft); margin: 0; max-width: 60ch; }
/* plain two-column text — "What we do" */
.plain-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 40px; }
.plain-two-col h3 { font-family: var(--sans); font-size: var(--t-h4); font-weight: 700; line-height: 1.15; letter-spacing: -0.018em; margin: 0 0 18px; color: var(--ink); }
.plain-two-col p { font-size: var(--t-body); line-height: 1.55; margin: 0 0 22px; max-width: 52ch; color: var(--ink-soft); }
.plain-link { font-family: var(--sans); font-size: var(--t-small); font-weight: 600; color: var(--electric-violet); text-decoration: none; border-bottom: 1.5px solid var(--electric-violet); padding-bottom: 2px; transition: filter 140ms; }
.plain-link:hover { filter: brightness(0.85); }
/* ── timeline ────────────────────────────────────────── */
.timeline { position: relative; margin: 40px 0 0; }
.timeline::before { content: ""; position: absolute; top: 56px; bottom: 56px; left: 27px; width: 0; border-left: 3px dotted rgba(81,0,255,0.35); z-index: 0; }
.tl-entry { position: relative; display: grid; grid-template-columns: 96px 1fr; gap: 40px; align-items: flex-start; padding: 28px 0; }
.tl-marker { width: 56px; height: 56px; border-radius: 50%; background: var(--electric-violet); color: var(--paper); display: grid; place-items: center; font-family: var(--mono); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; position: relative; z-index: 1; box-shadow: 0 0 0 6px var(--gallery); }
.tl-body h3 { font-family: var(--sans); font-size: var(--t-h5); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; margin: 6px 0 14px; color: var(--ink); }
.tl-body p { font-size: var(--t-body); line-height: 1.55; margin: 0; max-width: 64ch; color: var(--ink-soft); }
/* ── values grid (4 cards, single-line copy) ─────────── */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.value-card { background: var(--paper); border: 1px solid var(--stroke-light); border-radius: 12px; box-shadow: var(--card-shadow); padding: 32px 28px; display: flex; flex-direction: column; gap: 24px; min-height: 220px; }
.value-card .value-icon { width: 56px; height: 56px; border-radius: 12px; background: rgba(81,0,255,0.10); color: var(--electric-violet); display: grid; place-items: center; flex: 0 0 auto; }
.value-card .value-icon svg { width: 28px; height: 28px; display: block; }
.value-card p { font-family: var(--sans); font-size: var(--t-lead); font-weight: 600; line-height: 1.22; letter-spacing: -0.012em; margin: 0; color: var(--ink); }
/* ── team grid (3 over 2) ────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.team-card { background: var(--paper); border: 1px solid var(--stroke-light); border-radius: 12px; box-shadow: var(--card-shadow); padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.team-photo { aspect-ratio: 1 / 1; width: 100%; border-radius: 8px; background: var(--blue-zodiac-soft); color: var(--on-dark); overflow: hidden; display: grid; place-items: center; text-align: center; font-family: var(--sans); font-size: 16px; font-weight: 600; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-name { font-family: var(--sans); font-size: var(--t-h5); font-weight: 700; line-height: 1.15; letter-spacing: -0.012em; margin: 4px 0 -8px; color: var(--ink); }
.team-role { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: var(--electric-violet); margin: 0; }
.team-bio { font-size: var(--t-small); line-height: 1.55; color: var(--ink-soft); margin: 0; flex: 1; }
.team-link { font-family: var(--sans); font-size: var(--t-micro); font-weight: 600; color: var(--electric-violet); text-decoration: none; border-top: 1px solid var(--stroke-light); padding-top: 16px; margin-top: 4px; display: flex; align-items: center; justify-content: space-between; }
/* ── address block (About — full width) ───────────────── */
.address-block { margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--stroke-light); }
.address-block h3 { font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--electric-violet); margin: 0 0 20px; }
.address-block p { font-family: var(--sans); font-size: var(--t-body); line-height: 1.6; color: var(--ink); margin: 0; max-width: 60ch; }
/* ── how the DAO works — centred ─────────────────────── */
.dao-block { text-align: center; }
.dao-block .wrap > * { margin-left: auto; margin-right: auto; }
.dao-block h2.section-h { max-width: 22ch; }
.dao-block p { max-width: 60ch; font-size: var(--t-body); line-height: 1.55; margin: 0 auto 18px; color: var(--ink-soft); }
.dao-link { display: inline-block; margin-top: 16px; font-family: var(--sans); font-size: var(--t-small); font-weight: 600; color: var(--electric-violet); text-decoration: none; border-bottom: 1.5px solid var(--electric-violet); padding-bottom: 3px; }
/* =====================================================================
   LEGAL TEMPLATE PAGE — long-form text
   ===================================================================== */
.legal-page { background: var(--paper); padding: 96px 0 120px; }
.legal-page .wrap { max-width: 720px; padding: 0 32px; }
.legal-page h1 { font-family: var(--sans); font-size: 48px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; color: var(--ink); margin: 0 0 16px; }
.legal-page .last-updated { font-family: var(--mono); font-size: 13px; font-weight: 500; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 48px; }
.legal-page h2 { font-family: var(--sans); font-size: 28px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; color: var(--ink); margin: 48px 0 16px; }
.legal-page h3 { font-family: var(--sans); font-size: 20px; font-weight: 700; letter-spacing: -0.005em; line-height: 1.25; color: var(--ink); margin: 32px 0 12px; }
.legal-page p { font-family: var(--sans); font-size: 17px; line-height: 1.7; color: var(--ink); margin: 0 0 18px; }
.legal-page p.muted, .legal-page small { font-size: 15px; color: var(--ink-soft); }
.legal-page a { color: var(--cornflower); text-decoration: none; border-bottom: 1px solid rgba(44,109,235,0.30); transition: border-color 140ms; }
.legal-page a:hover { border-bottom-color: var(--cornflower); }
.legal-page ul, .legal-page ol { padding-left: 24px; margin: 0 0 18px; }
.legal-page ul li, .legal-page ol li { font-family: var(--sans); font-size: 17px; line-height: 1.7; color: var(--ink); margin-bottom: 8px; }
.legal-page ul li::marker { color: var(--cornflower); }
.legal-page ol li::marker { font-family: var(--mono); font-weight: 600; color: var(--cornflower); }
.legal-page ul ul, .legal-page ol ul { margin: 8px 0 4px; }
.legal-page ul ul li { margin-bottom: 4px; }
.legal-page .legal-inline-btn { appearance: none; background: transparent; border: 0; padding: 0; font: inherit; color: var(--cornflower); border-bottom: 1.5px solid transparent; cursor: pointer; transition: border-color 140ms; }
.legal-page .legal-inline-btn:hover { border-bottom-color: var(--cornflower); }
@media (max-width: 768px) {
  .legal-page { padding: 64px 0 80px; }
  .legal-page h1 { font-size: 40px; }
  .legal-page h2 { font-size: 24px; }
}
/* =====================================================================
   CASE STUDIES HUB — additional components
   ===================================================================== */
.cs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.cs-card { background: var(--paper); border: 1px solid var(--stroke-light); border-radius: 12px; box-shadow: var(--card-shadow); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform 140ms, box-shadow 140ms, border-color 140ms; }
.cs-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(16,36,60,0.12); border-color: rgba(81,0,255,0.30); }
.cs-card .cs-image { aspect-ratio: 16 / 9; border-radius: 0; min-height: 0; padding: 0; overflow: hidden; }
.cs-card .cs-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-card .cs-body { padding: 32px 32px 28px; display: flex; flex-direction: column; gap: 18px; flex: 1; }
.cs-tag { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--electric-violet); margin: 0; }
.cs-card h3 { font-family: var(--sans); font-size: var(--t-h4); font-weight: 800; line-height: 1.12; letter-spacing: -0.018em; margin: 0; max-width: 22ch; color: var(--ink); }
.cs-stats { list-style: none; padding: 0; margin: 4px 0; display: flex; flex-direction: column; gap: 10px; }
.cs-stats li { position: relative; padding-left: 24px; font-size: var(--t-small); line-height: 1.45; color: var(--ink-soft); }
.cs-stats li::before { content: "➛"; position: absolute; left: 0; top: 0; line-height: 1.5; color: var(--electric-violet); }
.cs-quote { font-family: var(--sans); font-style: italic; font-size: var(--t-small); line-height: 1.5; color: var(--ink); margin: 4px 0 0; padding-left: 16px; border-left: 3px solid var(--electric-violet); max-width: 60ch; }
.cs-download { margin-top: auto; border-top: 1px solid var(--stroke-light); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.cs-dl-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--electric-violet); color: var(--paper); padding: 11px 18px; border-radius: 8px; font-family: var(--sans); font-size: var(--t-micro); font-weight: 600; text-decoration: none; transition: filter 140ms; }
.cs-card:hover .cs-dl-btn { filter: brightness(1.1); }
.cs-dl-meta { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); text-align: right; line-height: 1.4; }
@media (max-width: 768px) {
  .cs-grid { grid-template-columns: 1fr; gap: 24px; }
  .cs-card h3 { font-size: 28px; }
  .cs-download { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cs-dl-meta { text-align: left; }
}
/* ── responsive ──────────────────────────────────────── */
@media (max-width: 1100px) {
  h1.display { font-size: 60px; }
  h2.section-h { font-size: 52px; }
  .counter-value { font-size: 34px; }
  .counter-value-sm { font-size: 34px; }
}
@media (max-width: 1024px) {
  .av-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .av-brand { grid-column: 1 / -1; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .exchange-row { grid-template-columns: repeat(2, 1fr); }
  .channel-row { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .plain-two-col { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-grid, .two-col, .grid-3, .grid-2, .blog-card, .counter-grid, .reward-stream, .arch-diagram, .compare-grid, .trust-grid, .priority-panel, .tech-strip, .process-row, .grid-5, .grid-4, .exchange-row, .gov-list li { grid-template-columns: 1fr; gap: 32px; }
  .page-hero .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-row.process-row--five { grid-template-columns: 1fr; gap: 0; }
  .process-row.process-row--five .process-step .step-arrow { display: none; }
  .resource-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-card .ph-img { border-radius: 0; }
  h1.display { font-size: 52px; }
  h1.t-h1 { font-size: 56px; letter-spacing: -0.025em; }
  h2.section-h { font-size: 44px; }
  h3.card-h { font-size: 24px; }
  p.lead { font-size: 20px; }
  .wrap { padding: 0 24px; }
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .av-grid { grid-template-columns: 1fr; }
  .av-bottom .av-bottom-row { flex-direction: column; align-items: flex-start; }
  .av-footer .av-wrap { padding: 0 24px; }
  .counter { border-left: none; border-top: 1px solid var(--stroke-light); padding: 24px 0; }
  .counter:first-child { border-top: none; padding-top: 0; }
  .arch-layer { border-right: none; border-bottom: 1px solid var(--stroke-dark); }
  .arch-layer:last-child { border-bottom: none; }
  .arch-arrows { display: none; }
  .callout .callout-formula { font-size: 16px; }
  .tech-col { border-right: none; border-bottom: 1px solid var(--stroke-dark); }
  .tech-col:last-child { border-bottom: none; }
  .process-step .step-arrow { display: none; }
  .priority-panel { padding: 28px 24px; gap: 16px; }
  .compare-table { min-width: 720px; }
  .ticket-grid { grid-template-columns: 1fr; }
  .help-bottom-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-row { grid-template-columns: 1fr; gap: 4px; }
  .tabs { display: none; }
  .tab-panel { border-radius: 12px; border-top: 1px solid var(--stroke-light); padding: 14px 24px 20px; margin-top: 12px; }
  .tab-panel.is-hidden { display: block; }
  .mobile-tab-label { display: block; }
  .channel-row { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 19px; }
  .tl-entry { grid-template-columns: 40px 1fr; gap: 20px; padding: 20px 0; }
  .tl-marker { width: 40px; height: 40px; font-size: 11px; }
  .values-grid, .team-grid { grid-template-columns: 1fr; }
  .about-hero { padding: 80px 0; }
  .about-hero .token-mark--lg, .about-hero .about-mark { width: 160px; height: 160px; }
}
