/* =========================================================
   ATLAS LIQUIDITY — v7 (rev. 2)
   Architectural-minimal. Pure B&W. Single typeface: Jost.
   ========================================================= */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body { min-height: 100vh; background: var(--paper); color: var(--ink); font-family: var(--font-body); font-size: 16px; line-height: 1.55; font-feature-settings: "tnum" 0; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select, button { font: inherit; color: inherit; }
::selection { background: var(--ink); color: var(--paper); }

/* ---------- Tokens ---------- */
:root {
  --black: #000000;
  --ink:   #0e0e0e;
  --body:  #1f1f1f;
  --muted: #6b6b6b;
  --rule:  #d5d5d5;
  --line:  #e9e9e9;
  --paper: #f7f6f3;
  --white: #ffffff;

  /* Single geometric sans — matches the Atlas Liquidity logo */
  --font-display: "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-body:    "Jost", "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(20px, 4vw, 56px);
  --page-pad-x: clamp(20px, 6vw, 88px);
  --section-y:  clamp(88px, 13vw, 176px);
  --section-y-tight: clamp(56px, 8vw, 112px);

  --ease: cubic-bezier(.2,.7,.2,1);
  --utility-h: 36px;
}

/* ---------- Typography ---------- */
.eyebrow { font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.eyebrow .dot { display: inline-block; width: 4px; height: 4px; background: var(--ink); border-radius: 999px; vertical-align: middle; margin: 0 0.7em 2px 0; }

.display { font-family: var(--font-display); font-weight: 300; font-style: normal; letter-spacing: -0.025em; line-height: 0.98; color: var(--ink); }
.display em { font-style: italic; font-weight: 300; color: var(--body); }

h1.display { font-size: clamp(3rem, 9.5vw, 9.75rem); line-height: 0.95; letter-spacing: -0.035em; }
h2.display { font-size: clamp(2.2rem, 6vw, 5.75rem); line-height: 1; letter-spacing: -0.03em; }
h3.display { font-size: clamp(1.6rem, 3.4vw, 2.75rem); line-height: 1.05; letter-spacing: -0.02em; }

.lede { font-family: var(--font-body); font-weight: 300; font-size: clamp(1.15rem, 1.9vw, 1.5rem); line-height: 1.4; letter-spacing: -0.005em; color: var(--body); max-width: 40ch; }
.body-text { font-size: clamp(0.95rem, 1.05vw, 1.0625rem); line-height: 1.65; color: var(--body); max-width: 62ch; font-weight: 400; }
.body-text + .body-text { margin-top: 1em; }
.meta-row { font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.num { font-feature-settings: "tnum" 1, "lnum" 1; font-variant-numeric: tabular-nums lining-nums; }
.section-index { font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-feature-settings: "tnum" 1; }
.section-index .sep { margin: 0 0.6em; color: var(--rule); }

/* ---------- Layout primitives ---------- */
.page { overflow-x: hidden; }
.container { padding-left: var(--page-pad-x); padding-right: var(--page-pad-x); }
.row { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gutter); }
.rule { height: 1px; background: var(--rule); border: 0; }
section { padding-top: var(--section-y); padding-bottom: var(--section-y); position: relative; }
section + section { border-top: 1px solid var(--line); }

/* ---------- Utility bar (retail redirect) ---------- */
.utility-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 51;
  height: var(--utility-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--page-pad-x);
  background: var(--ink); color: var(--paper);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
}
.utility-bar .u-left { color: color-mix(in srgb, var(--paper) 65%, transparent); }
.utility-bar .u-right { display: inline-flex; align-items: center; gap: 10px; color: var(--paper); transition: color 0.2s; }
.utility-bar .u-right:hover { color: color-mix(in srgb, var(--paper) 75%, transparent); }
.utility-bar .u-right .ext {
  display: inline-block; width: 10px; height: 10px; position: relative;
  border-right: 1px solid currentColor; border-top: 1px solid currentColor;
}
.utility-bar .u-right .ext::before {
  content: ""; position: absolute; top: 8px; right: 7px; width: 12px; height: 1px;
  background: currentColor; transform-origin: right center; transform: rotate(-45deg);
}
@media (max-width: 600px) { .utility-bar .u-left { display: none; } .utility-bar { justify-content: center; } }

/* ---------- Top nav ---------- */
.topnav {
  position: fixed; top: var(--utility-h); left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--page-pad-x);
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  color: var(--ink);
}
.topnav.is-scrolled { border-bottom-color: var(--line); }
.topnav.is-hero-light {
  background: color-mix(in srgb, var(--ink) 22%, transparent);
  color: var(--paper);
  border-bottom-color: transparent;
}
.topnav.is-hero-light .nav-links a, .topnav.is-hero-light .nav-cta { color: var(--paper); }
.topnav.is-hero-light .nav-cta { border-color: var(--paper); }

/* ---------- Brand / Logo ---------- */
.brand { display: inline-flex; align-items: center; color: currentColor; }
.brand svg { display: block; height: 20px; width: auto; color: currentColor; }
.brand svg path, .brand svg circle { fill: currentColor; }
.brand .brand-fsp { margin-left: 14px; padding-left: 14px; border-left: 1px solid currentColor; font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.7; }
@media (max-width: 700px) { .brand svg { height: 16px; } .brand .brand-fsp { display: none; } }

.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: currentColor; padding: 6px 0; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: currentColor; border: 1px solid currentColor; border-radius: 0; transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.topnav:not(.is-hero-light) .nav-cta:hover { color: var(--paper); background: var(--ink); }
.topnav.is-hero-light .nav-cta:hover { color: var(--ink); background: var(--paper); }

.nav-toggle { display: none; }
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: currentColor; }
  .nav-toggle .bars { display: inline-block; width: 18px; height: 10px; position: relative; }
  .nav-toggle .bars::before, .nav-toggle .bars::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: currentColor; }
  .nav-toggle .bars::before { top: 2px; } .nav-toggle .bars::after { bottom: 2px; }
  .mobile-menu { position: fixed; inset: 0; background: var(--paper); z-index: 100; display: none; flex-direction: column; padding: 24px var(--page-pad-x); overflow-y: auto; }
  .mobile-menu.is-open { display: flex; }
  .mobile-menu .mm-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
  .mobile-menu a { display: block; padding: 14px 0; font-family: var(--font-display); font-size: clamp(1.5rem, 7vw, 2.5rem); font-weight: 300; letter-spacing: -0.025em; border-bottom: 1px solid var(--line); }
  .mobile-menu .mm-retail { margin-top: 24px; padding: 18px; background: var(--ink); color: var(--paper); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; display: flex; justify-content: center; align-items: center; gap: 10px; border-bottom: 0; }
  .mobile-menu .mm-meta { margin-top: 32px; padding-top: 32px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); border-top: 1px solid var(--line); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 64px;
  padding-top: calc(var(--utility-h) + 64px);
  color: var(--paper);
  overflow: hidden;
}
.hero .hero-img { position: absolute; inset: 0; z-index: 0; }
.hero .hero-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.02); }
.hero .hero-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.18) 38%, rgba(0,0,0,0.58) 100%); }
.hero-inner { position: relative; z-index: 1; padding: 0 var(--page-pad-x); }
.hero-top { position: absolute; top: calc(var(--utility-h) + 80px); left: var(--page-pad-x); right: var(--page-pad-x); display: flex; justify-content: space-between; align-items: baseline; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: color-mix(in srgb, var(--paper) 85%, transparent); }
.hero-top .lhs { display: flex; gap: 16px; align-items: baseline; flex-wrap: wrap; }
.hero-top .sep { opacity: 0.5; }

.hero h1.display { color: var(--paper); max-width: 15ch; font-weight: 300; }
.hero h1.display em { color: color-mix(in srgb, var(--paper) 85%, transparent); }
.hero-meta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 40px 56px; }
.hero-meta .m { max-width: 240px; }
.hero-meta .m-label { display: block; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--paper) 65%, transparent); margin-bottom: 6px; font-weight: 500; }
.hero-meta .m-value { font-size: 13px; color: var(--paper); letter-spacing: 0.02em; line-height: 1.5; }

.hero-scroll { position: absolute; right: var(--page-pad-x); bottom: 56px; z-index: 2; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--paper) 75%, transparent); display: flex; align-items: center; gap: 10px; }
.hero-scroll .tick { width: 40px; height: 1px; background: currentColor; display: inline-block; }

/* ---------- Break ---------- */
.break { margin: 0; position: relative; padding: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.break-figure { position: relative; height: clamp(320px, 60vh, 720px); overflow: hidden; }
.break-figure img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.break-caption { display: flex; justify-content: space-between; align-items: baseline; padding: 18px var(--page-pad-x); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); border-top: 1px solid var(--line); font-weight: 500; }

/* ---------- Section head ---------- */
.section-head { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gutter); align-items: end; margin-bottom: clamp(48px, 7vw, 96px); }
.section-head .idx { grid-column: 1 / span 3; }
.section-head .title { grid-column: 4 / span 9; }
@media (max-width: 900px) { .section-head .idx, .section-head .title { grid-column: 1 / -1; } .section-head .idx { margin-bottom: 12px; } }

/* ---------- Statement ---------- */
.statement .row > .stmt { grid-column: 1 / span 8; }
.statement .row > .aside { grid-column: 10 / span 3; align-self: end; }
@media (max-width: 900px) { .statement .row > .stmt, .statement .row > .aside { grid-column: 1 / -1; } .statement .row > .aside { margin-top: 32px; } }

/* ---------- Stats ---------- */
.stats { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(40px, 5vw, 72px) clamp(20px, 3vw, 40px); border-right: 1px solid var(--line); position: relative; }
.stat:last-child { border-right: 0; }
.stat .n { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.8rem, 5.5vw, 4.75rem); line-height: 0.92; letter-spacing: -0.035em; color: var(--ink); font-feature-settings: "tnum" 1; }
.stat .n sup { font-size: 0.38em; vertical-align: super; margin-left: 2px; font-family: var(--font-body); font-weight: 400; letter-spacing: 0; top: -0.4em; position: relative; }
.stat .l { display: block; margin-top: 18px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: var(--muted); }
.stat .idx { position: absolute; top: 16px; right: 16px; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(2) { border-right: 0; } .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); } }
@media (max-width: 500px) { .stats-grid { grid-template-columns: 1fr; } .stat { border-right: 0; border-bottom: 1px solid var(--line); } .stat:last-child { border-bottom: 0; } }

/* ---------- Tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.tile { padding: clamp(32px, 3.5vw, 48px) clamp(20px, 2.5vw, 32px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 280px; display: flex; flex-direction: column; justify-content: space-between; position: relative; transition: background 0.3s var(--ease); }
.tile:nth-child(4n) { border-right: 0; }
.tile:nth-last-child(-n+4) { border-bottom: 0; }
.tile:hover { background: var(--white); }
.tile .t-idx { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 500; font-feature-settings: "tnum" 1; }
.tile .t-title { margin-top: 56px; font-family: var(--font-display); font-weight: 300; font-size: clamp(1.3rem, 1.7vw, 1.625rem); line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
.tile .t-body { margin-top: 16px; font-size: 14px; line-height: 1.55; color: var(--muted); max-width: 30ch; }
@media (max-width: 1024px) { .tiles { grid-template-columns: repeat(2, 1fr); } .tile:nth-child(2n) { border-right: 0; } .tile:nth-child(4n) { border-right: 0; } .tile:nth-last-child(-n+2) { border-bottom: 0; } .tile:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); } .tile:nth-last-child(-n+2) { border-bottom: 0; } }
@media (max-width: 560px) { .tiles { grid-template-columns: 1fr; } .tile { border-right: 0; } .tile:not(:last-child) { border-bottom: 1px solid var(--line); } }

/* ---------- Asset rows ---------- */
.assets { }
.asset-row { display: grid; grid-template-columns: 80px 1fr 1fr 100px; gap: var(--gutter); align-items: baseline; padding: clamp(36px, 5vw, 64px) 0; border-top: 1px solid var(--line); }
.asset-row:last-of-type { border-bottom: 1px solid var(--line); }
.asset-row .a-idx { font-size: 12px; letter-spacing: 0.22em; font-weight: 500; color: var(--muted); font-feature-settings: "tnum" 1; }
.asset-row .a-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.8rem, 4.5vw, 3.75rem); letter-spacing: -0.03em; line-height: 0.98; color: var(--ink); }
.asset-row .a-body { font-size: 14px; line-height: 1.6; color: var(--body); max-width: 40ch; }
.asset-row .a-mark { text-align: right; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
@media (max-width: 900px) { .asset-row { grid-template-columns: 1fr; gap: 16px; } .asset-row .a-mark { text-align: left; } }

/* ---------- Partners row ---------- */
.partners-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.partner { display: flex; align-items: center; justify-content: center; padding: clamp(32px, 4vw, 56px) 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 130px; font-family: var(--font-display); font-weight: 300; font-size: clamp(1.05rem, 1.5vw, 1.375rem); letter-spacing: -0.015em; color: var(--body); transition: color 0.2s var(--ease), background 0.2s var(--ease); }
.partner:hover { color: var(--ink); background: var(--white); }
.partner:nth-child(4n) { border-right: 0; }
.partner:nth-last-child(-n+4) { border-bottom: 0; }
@media (max-width: 900px) { .partners-list { grid-template-columns: repeat(2, 1fr); } .partner:nth-child(4n), .partner:nth-child(2n) { border-right: 0; } .partner:nth-child(2n-1) { border-right: 1px solid var(--line); } .partner:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); } .partner:nth-last-child(-n+2) { border-bottom: 0; } }

/* ---------- CTA ---------- */
.cta-block { padding: clamp(80px, 12vw, 160px) var(--page-pad-x); background: var(--ink); color: var(--paper); position: relative; }
.cta-block h2.display { color: var(--paper); max-width: 16ch; }
.cta-block h2.display em { color: color-mix(in srgb, var(--paper) 80%, transparent); }
.cta-block .c-meta { margin-top: 48px; display: flex; gap: 56px; flex-wrap: wrap; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--paper) 70%, transparent); font-weight: 500; }
.cta-actions { margin-top: 64px; display: flex; gap: 16px; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; gap: 12px; padding: 16px 28px; font-size: 12px; letter-spacing: 0.22em; font-weight: 500; text-transform: uppercase; color: var(--ink); background: var(--paper); border: 1px solid var(--paper); transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.btn .arrow { display: inline-block; width: 20px; height: 1px; background: currentColor; position: relative; transition: width 0.25s var(--ease); }
.btn .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }
.btn:hover .arrow { width: 32px; }
.btn:hover { background: transparent; color: var(--paper); }
.btn-outline { background: transparent; color: var(--paper); }
.btn-outline:hover { background: var(--paper); color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-dark:hover { background: transparent; color: var(--ink); }
.btn-dark-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-dark-outline:hover { background: var(--ink); color: var(--paper); }

/* ---------- Disclosure ---------- */
.disclosure { padding: 40px var(--page-pad-x); background: var(--ink); color: color-mix(in srgb, var(--paper) 80%, transparent); font-size: 12px; line-height: 1.7; letter-spacing: 0.01em; border-top: 1px solid var(--ink); }
.disclosure .row { align-items: start; }
.disclosure .eyebrow { color: color-mix(in srgb, var(--paper) 55%, transparent); margin-bottom: 12px; }
.disclosure .col-left { grid-column: 1 / span 4; }
.disclosure .col-right { grid-column: 5 / span 8; max-width: 88ch; }
@media (max-width: 900px) { .disclosure .col-left, .disclosure .col-right { grid-column: 1 / -1; } .disclosure .col-left { margin-bottom: 20px; } }

/* ---------- Footer ---------- */
.foot { background: var(--paper); color: var(--ink); border-top: 1px solid var(--ink); padding: clamp(64px, 8vw, 112px) var(--page-pad-x) 32px; }
.foot-top { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gutter); align-items: start; }
.foot-brand { grid-column: 1 / span 4; }
.foot-brand svg { display: block; height: 28px; width: auto; color: var(--ink); }
.foot-brand svg path, .foot-brand svg circle { fill: currentColor; }
.foot-brand .b-tag { margin-top: 22px; font-size: 13px; color: var(--muted); max-width: 36ch; line-height: 1.55; }
.foot-brand .b-retail { margin-top: 24px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border: 1px solid var(--ink); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.foot-brand .b-retail:hover { background: var(--ink); color: var(--paper); }
.foot-col { grid-column: span 2; }
.foot-col.wide { grid-column: span 3; }
.foot-col h5 { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 20px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 10px; }
.foot-col a, .foot-col .item { font-size: 13px; color: var(--ink); line-height: 1.5; }
.foot-col a:hover { color: var(--muted); }
.foot-bottom { margin-top: clamp(64px, 9vw, 120px); padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 11px; letter-spacing: 0.12em; color: var(--muted); font-weight: 500; }
.foot-bottom .left { display: flex; gap: 32px; flex-wrap: wrap; }
.foot-bottom .right { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-bottom a:hover { color: var(--ink); }
@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; margin-bottom: 48px; } .foot-col, .foot-col.wide { grid-column: span 1; } }

/* ---------- About masthead ---------- */
.masthead { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gutter); padding: clamp(56px, 8vw, 112px) 0; border-bottom: 1px solid var(--line); }
.masthead .mh-label { grid-column: 1 / span 3; }
.masthead .mh-body { grid-column: 4 / span 9; }
.masthead dl { display: grid; grid-template-columns: 180px 1fr; gap: 12px 24px; }
.masthead dt { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); padding-top: 3px; font-weight: 500; }
.masthead dd { font-size: 15px; color: var(--ink); }
@media (max-width: 900px) { .masthead .mh-label, .masthead .mh-body { grid-column: 1 / -1; } .masthead .mh-label { margin-bottom: 16px; } .masthead dl { grid-template-columns: 1fr; gap: 4px 0; } .masthead dt { margin-top: 14px; } }

.pullquote { padding: clamp(80px, 10vw, 144px) 0; border-top: 1px solid var(--line); }
.pullquote .pq-row { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gutter); }
.pullquote blockquote { grid-column: 2 / span 9; font-family: var(--font-display); font-weight: 300; font-style: italic; font-size: clamp(1.65rem, 3.8vw, 3.125rem); line-height: 1.15; letter-spacing: -0.025em; color: var(--ink); }
.pullquote .pq-attr { grid-column: 2 / span 6; margin-top: 32px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

/* ---------- Live quotes ---------- */
.quotes-table-wrap { border: 1px solid var(--ink); background: var(--paper); }
.tv-slot { background: var(--paper); border: 1px solid var(--ink); }
.tv-slot-head { padding: 20px 24px; border-bottom: 1px solid var(--ink); display: flex; justify-content: space-between; align-items: baseline; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.tv-slot-body { min-height: 520px; }
.ticker-tape-wrap { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper); }

/* ---------- Form ---------- */
.quote-form-section { padding-top: clamp(64px, 9vw, 128px); padding-bottom: clamp(88px, 13vw, 176px); }
.quote-form-wrap { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gutter); align-items: start; }
.quote-form-aside { grid-column: 1 / span 4; position: sticky; top: calc(var(--utility-h) + 100px); }
.quote-form-aside .q-aside-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.4rem, 2.2vw, 1.875rem); line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }
.quote-form-aside dl { margin-top: 40px; }
.quote-form-aside dt { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 20px; font-weight: 500; }
.quote-form-aside dd { font-size: 14px; color: var(--ink); margin-top: 4px; line-height: 1.6; }
.quote-form-wrap form { grid-column: 6 / span 7; }
@media (max-width: 900px) { .quote-form-aside { grid-column: 1 / -1; position: static; margin-bottom: 48px; } .quote-form-wrap form { grid-column: 1 / -1; } }

.fieldset { padding: 0; border: 0; margin-bottom: 48px; }
.fieldset > legend { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; font-weight: 500; }
.radio-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.radio-group label { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; cursor: pointer; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; border-right: 1px solid var(--line); transition: background 0.2s var(--ease); }
.radio-group label:last-child { border-right: 0; }
.radio-group input { position: absolute; opacity: 0; pointer-events: none; }
.radio-group .dot { width: 12px; height: 12px; border: 1px solid var(--ink); border-radius: 50%; flex-shrink: 0; position: relative; }
.radio-group input:checked + .dot::after { content: ""; position: absolute; inset: 2px; background: var(--ink); border-radius: 50%; }
.radio-group label:hover, .radio-group label:has(input:checked) { background: var(--white); }
@media (max-width: 700px) { .radio-group { grid-template-columns: 1fr; } .radio-group label { border-right: 0; border-bottom: 1px solid var(--line); } .radio-group label:last-child { border-bottom: 0; } }

.field { position: relative; padding: 20px 0; border-bottom: 1px solid var(--ink); margin-bottom: 0; transition: border-color 0.2s var(--ease); }
.field + .field { margin-top: 0; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.field-grid .field { border-bottom: 1px solid var(--ink); }
.field-grid .field:nth-child(odd) { border-right: 1px solid var(--ink); padding-right: 24px; }
.field-grid .field:nth-child(even) { padding-left: 24px; }
@media (max-width: 700px) { .field-grid { grid-template-columns: 1fr; } .field-grid .field:nth-child(odd) { border-right: 0; padding-right: 0; } .field-grid .field:nth-child(even) { padding-left: 0; } }
.field label { display: block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; border: 0; outline: 0; background: transparent; font-family: var(--font-body); font-size: 16px; color: var(--ink); padding: 4px 0; line-height: 1.4; border-radius: 0; }
.field textarea { resize: vertical; min-height: 120px; }
.field:focus-within label { color: var(--ink); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%230e0e0e' stroke-width='1'/></svg>"); background-repeat: no-repeat; background-position: right center; padding-right: 28px; }

.form-submit { margin-top: 48px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.submit-btn { display: inline-flex; align-items: center; gap: 14px; padding: 18px 32px; background: var(--ink); color: var(--paper); font-size: 12px; letter-spacing: 0.22em; font-weight: 500; text-transform: uppercase; border: 1px solid var(--ink); cursor: pointer; transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.submit-btn .arrow { display: inline-block; width: 24px; height: 1px; background: currentColor; position: relative; transition: width 0.25s var(--ease); }
.submit-btn .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }
.submit-btn:hover { background: transparent; color: var(--ink); }
.submit-btn:hover .arrow { width: 36px; }
.form-note { font-size: 12px; color: var(--muted); letter-spacing: 0.01em; }

.form-status { margin-top: 24px; padding: 16px 20px; border: 1px solid var(--line); font-size: 14px; display: none; }
.form-status.is-success { display: block; border-color: var(--ink); background: var(--white); }
.form-status.is-error { display: block; border-color: var(--ink); background: var(--paper); color: var(--ink); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gutter); }
.contact-grid .c-aside { grid-column: 1 / span 4; }
.contact-grid .c-main { grid-column: 5 / span 8; }
@media (max-width: 900px) { .contact-grid .c-aside, .contact-grid .c-main { grid-column: 1 / -1; } .contact-grid .c-aside { margin-bottom: 48px; } }
.contact-list dl { display: grid; grid-template-columns: 180px 1fr; gap: 20px 32px; border-top: 1px solid var(--ink); padding-top: 32px; }
.contact-list dt { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); padding-top: 6px; font-weight: 500; }
.contact-list dd { font-family: var(--font-display); font-weight: 300; font-size: clamp(1rem, 1.3vw, 1.25rem); line-height: 1.3; color: var(--ink); letter-spacing: -0.01em; }
.contact-list dd a:hover { color: var(--muted); }
@media (max-width: 700px) { .contact-list dl { grid-template-columns: 1fr; gap: 4px 0; } .contact-list dt { margin-top: 20px; } }

.map-box { margin-top: 64px; height: 420px; border: 1px solid var(--ink); position: relative; overflow: hidden; background: var(--paper); }
.map-box::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(to right, var(--line) 1px, transparent 1px), linear-gradient(to bottom, var(--line) 1px, transparent 1px); background-size: 48px 48px; opacity: 0.8; }
.map-pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 16px; height: 16px; border: 1px solid var(--ink); background: var(--paper); z-index: 2; }
.map-pin::before, .map-pin::after { content: ""; position: absolute; background: var(--ink); }
.map-pin::before { left: -24px; right: -24px; top: 50%; height: 1px; transform: translateY(-50%); }
.map-pin::after { top: -24px; bottom: -24px; left: 50%; width: 1px; transform: translateX(-50%); }
.map-label { position: absolute; left: 50%; top: calc(50% + 28px); transform: translateX(-50%); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); white-space: nowrap; z-index: 2; background: var(--paper); padding: 2px 8px; font-weight: 500; }
.map-coords { position: absolute; left: 16px; bottom: 16px; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-feature-settings: "tnum" 1; z-index: 2; font-weight: 500; }
.map-scale { position: absolute; right: 16px; bottom: 16px; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); z-index: 2; display: flex; align-items: center; gap: 8px; font-weight: 500; }
.map-scale .bar { display: inline-block; width: 60px; height: 1px; background: var(--ink); }

/* ---------- 404 ---------- */
.err-hero { min-height: 100vh; }
.err-num { font-family: var(--font-display); font-weight: 200; font-size: clamp(9rem, 30vw, 26rem); line-height: 0.85; letter-spacing: -0.06em; color: var(--paper); }

/* ---------- Legal / Privacy doc ---------- */
.doc { padding: clamp(64px, 9vw, 128px) 0 clamp(80px, 12vw, 160px); }
.doc-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gutter); }
.doc-toc { grid-column: 1 / span 3; position: sticky; top: calc(var(--utility-h) + 100px); align-self: start; }
.doc-toc h4 { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 16px; }
.doc-toc ul { list-style: none; }
.doc-toc li { padding: 6px 0; font-size: 13px; line-height: 1.5; }
.doc-toc li a { color: var(--body); transition: color 0.2s; }
.doc-toc li a:hover { color: var(--ink); }
.doc-toc li .tnum { color: var(--muted); margin-right: 10px; font-size: 11px; font-feature-settings: "tnum" 1; font-weight: 500; }
.doc-body { grid-column: 5 / span 8; max-width: 68ch; }
.doc-body h3 { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.5rem, 2.2vw, 2rem); line-height: 1.15; letter-spacing: -0.02em; margin-top: 64px; margin-bottom: 20px; scroll-margin-top: calc(var(--utility-h) + 100px); }
.doc-body h3:first-child { margin-top: 0; }
.doc-body h3 .sec-num { color: var(--muted); font-size: 0.5em; margin-right: 16px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; vertical-align: middle; position: relative; top: -0.2em; font-feature-settings: "tnum" 1; }
.doc-body p { font-size: 15px; line-height: 1.75; margin-bottom: 14px; color: var(--body); }
.doc-body p.lead { font-size: 17px; color: var(--ink); }
.doc-body ul { list-style: none; margin: 8px 0 14px; }
.doc-body ul li { position: relative; padding-left: 20px; margin-bottom: 8px; font-size: 15px; line-height: 1.7; color: var(--body); }
.doc-body ul li::before { content: "—"; position: absolute; left: 0; color: var(--muted); }
.doc-body strong { font-weight: 500; color: var(--ink); }
.doc-body a { color: var(--ink); border-bottom: 1px solid var(--rule); }
.doc-body a:hover { border-bottom-color: var(--ink); }
@media (max-width: 900px) { .doc-toc { grid-column: 1 / -1; position: static; margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--line); } .doc-body { grid-column: 1 / -1; } .doc-toc ul { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; } }

/* ---------- Retail split ---------- */
.retail-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.retail-pane { padding: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 72px); border-right: 1px solid var(--ink); min-height: 520px; display: flex; flex-direction: column; justify-content: space-between; }
.retail-pane:last-child { border-right: 0; background: var(--ink); color: var(--paper); }
.retail-pane .rp-label { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 32px; }
.retail-pane:last-child .rp-label { color: color-mix(in srgb, var(--paper) 55%, transparent); }
.retail-pane .rp-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.8rem, 3.2vw, 2.75rem); line-height: 1.1; letter-spacing: -0.025em; }
.retail-pane .rp-body { margin-top: 24px; font-size: 15px; line-height: 1.65; color: var(--body); max-width: 40ch; }
.retail-pane:last-child .rp-body { color: color-mix(in srgb, var(--paper) 85%, transparent); }
.retail-pane .rp-cta { margin-top: 40px; }
.retail-pane .rp-meta { margin-top: 32px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.retail-pane:last-child .rp-meta { color: color-mix(in srgb, var(--paper) 55%, transparent); }
@media (max-width: 800px) { .retail-split { grid-template-columns: 1fr; } .retail-pane { border-right: 0; border-bottom: 1px solid var(--ink); min-height: 380px; } .retail-pane:last-child { border-bottom: 0; } }

/* ---------- Tech cards ---------- */
.tech-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.tech-card { grid-column: span 4; padding: clamp(32px, 4vw, 56px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; }
.tech-card:nth-child(3n) { border-right: 0; }
.tech-card:nth-last-child(-n+3) { border-bottom: 0; }
.tech-card .tc-idx { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 500; font-feature-settings: "tnum" 1; }
.tech-card .tc-title { margin-top: 48px; font-family: var(--font-display); font-weight: 300; font-size: clamp(1.4rem, 2vw, 1.75rem); line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
.tech-card .tc-body { margin-top: 16px; font-size: 14px; line-height: 1.6; color: var(--body); }
.tech-card .tc-specs { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.tech-card .tc-spec { display: inline-block; padding: 4px 10px; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); border: 1px solid var(--rule); font-weight: 500; }
@media (max-width: 900px) { .tech-grid { grid-template-columns: 1fr 1fr; } .tech-card { grid-column: span 1; border-right: 1px solid var(--line); } .tech-card:nth-child(2n) { border-right: 0; } .tech-card:nth-child(3n) { border-right: 1px solid var(--line); } .tech-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); } .tech-card:nth-last-child(-n+2) { border-bottom: 0; } }
@media (max-width: 560px) { .tech-grid { grid-template-columns: 1fr; } .tech-card { grid-column: 1 / -1; border-right: 0; } }

/* ---------- Partners directory ---------- */
.dir-list { border-top: 1px solid var(--ink); }
.dir-row { display: grid; grid-template-columns: 60px 220px 1fr 140px; gap: var(--gutter); align-items: baseline; padding: 32px 0; border-bottom: 1px solid var(--line); }
.dir-row .d-idx { font-size: 11px; letter-spacing: 0.22em; font-weight: 500; color: var(--muted); font-feature-settings: "tnum" 1; }
.dir-row .d-name { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.25rem, 1.7vw, 1.5rem); letter-spacing: -0.02em; color: var(--ink); }
.dir-row .d-body { font-size: 14px; line-height: 1.65; color: var(--body); max-width: 56ch; }
.dir-row .d-cat { text-align: right; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
@media (max-width: 900px) { .dir-row { grid-template-columns: 1fr; gap: 8px; } .dir-row .d-cat { text-align: left; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }

/* ---------- Hero entrance ---------- */
@keyframes hero-rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero h1.display { animation: hero-rise 1.1s var(--ease) 0.15s both; }
.hero-meta { animation: hero-rise 1.1s var(--ease) 0.3s both; }
.hero-top { animation: hero-rise 1.1s var(--ease) 0.05s both; }

/* ---------- Utility ---------- */
@media (max-width: 700px) { .hide-mobile { display: none !important; } }
.col-full { grid-column: 1 / -1; }
