/* ═══════════════════════════════════════════════════════════
   BEZALT · home.css: landing page layout
   Editorial ledger: a masthead headline, then ruled sections
   with generous whitespace. Footage is framed (bands, insets,
   panels), never a full-screen backdrop. Loads after site.css.
   ═══════════════════════════════════════════════════════════ */

.wrap {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ─────────────────────────────
   TOP BAR
───────────────────────────── */
.top {
    border-bottom: 1px solid var(--line);
    background: #000;
}

.top-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: 76px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.top-nav a {
    color: var(--text-2);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.top-nav a:hover {
    color: var(--gold);
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-sm {
    min-width: 0;
    height: 42px;
    padding: 0 20px;
    font-size: 14px;
}

/* $BEZALT ticker chip: gold hairline pill with a live dot */
.ticker-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line-gold-strong);
    border-radius: 999px;
    color: var(--gold);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none;
    background: rgba(242, 180, 65, 0.06);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ticker-chip:hover {
    background: rgba(242, 180, 65, 0.14);
    border-color: var(--gold);
    color: var(--gold-bright);
}

.ticker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(242, 180, 65, 0.6);
    animation: tickerPulse 2.2s ease-out infinite;
}

@keyframes tickerPulse {
    0% { box-shadow: 0 0 0 0 rgba(242, 180, 65, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(242, 180, 65, 0); }
    100% { box-shadow: 0 0 0 0 rgba(242, 180, 65, 0); }
}

.ticker-chip--lg {
    height: 36px;
    padding: 0 14px;
    font-size: 13px;
    vertical-align: middle;
    margin-right: 6px;
}

.token-line {
    margin-top: 22px;
    color: var(--text-3);
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 760px;
}

.footer-token {
    margin-top: 16px;
}

/* $BEZALT ticker chip: gold hairline pill with a live dot */
.ticker-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line-gold-strong);
    border-radius: 999px;
    color: var(--gold);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none;
    background: rgba(242, 180, 65, 0.06);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ticker-chip:hover {
    background: rgba(242, 180, 65, 0.14);
    border-color: var(--gold);
    color: var(--gold-bright);
}

.ticker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(242, 180, 65, 0.6);
    animation: tickerPulse 2.2s ease-out infinite;
}

@keyframes tickerPulse {
    0% { box-shadow: 0 0 0 0 rgba(242, 180, 65, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(242, 180, 65, 0); }
    100% { box-shadow: 0 0 0 0 rgba(242, 180, 65, 0); }
}

.ticker-chip--lg {
    height: 36px;
    padding: 0 14px;
    font-size: 13px;
    vertical-align: middle;
    margin-right: 6px;
}

.token-line {
    margin-top: 22px;
    color: var(--text-3);
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 760px;
}

.footer-token {
    margin-top: 16px;
}

/* compact menu where the inline links do not fit */
.nav-menu {
    display: none;
    position: relative;
}

.nav-menu summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition: border-color 0.2s;
}

.nav-menu summary::-webkit-details-marker {
    display: none;
}

.nav-menu summary:hover,
.nav-menu[open] summary {
    border-color: var(--gold);
}

.nav-menu-bars {
    width: 14px;
    height: 10px;
    background: linear-gradient(#fff 0 2px, transparent 2px 4px, #fff 4px 6px, transparent 6px 8px, #fff 8px 10px);
}

.nav-menu-list {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 190px;
    padding: 8px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: var(--bg-2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    z-index: 60;
}

.nav-menu-list a {
    padding: 11px 12px;
    border-radius: 8px;
    color: var(--text-2);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.nav-menu-list a:hover {
    color: var(--gold);
    background: rgba(242, 180, 65, 0.07);
}

/* ─────────────────────────────
   SHARED SECTION PIECES
───────────────────────────── */
.section-head {
    margin-bottom: 44px;
}

.section-head .eyebrow {
    margin-bottom: 18px;
}

.section-head--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px 48px;
    flex-wrap: wrap;
}

.section-head--row .link-arrow {
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(38px, 4.2vw, 60px);
    line-height: 1.02;
    color: #fff;
    max-width: 820px;
    text-wrap: balance;
}

/* ─────────────────────────────
   MASTHEAD
───────────────────────────── */
.masthead {
    position: relative;
    padding: 72px 0 0;
    background: #000;
    isolation: isolate;
}

.masthead > .wrap,
.masthead-band {
    position: relative;
    z-index: 1;
}

/* interactive dot field behind the headline: drawn by home.js, faded out
   toward the edges and the band so it reads as texture, not a grid */
.masthead-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse 70% 75% at 50% 32%, #000 30%, transparent 100%);
    mask-image: radial-gradient(ellipse 70% 75% at 50% 32%, #000 30%, transparent 100%);
}

.masthead .eyebrow {
    margin-bottom: 26px;
}

/* sized so "Borrow against it." always fits one line above 760px */
.masthead-title {
    font-size: clamp(56px, 8.6vw, 124px);
    line-height: 0.96;
    color: #fff;
    margin-bottom: 40px;
}

.masthead-line {
    white-space: nowrap;
}

.masthead-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px 48px;
    align-items: end;
    padding-bottom: 48px;
}

.masthead-lede {
    max-width: 560px;
    color: var(--text-2);
    font-size: 19px;
    line-height: 1.5;
}

.masthead-ctas {
    display: flex;
    align-items: center;
    gap: 26px;
}

/* the footage as a cinematic band with a ticker on its lower edge */
.masthead-band {
    position: relative;
    width: min(100% - var(--gutter) * 2, 1400px);
    margin: 0 auto;
    aspect-ratio: 16 / 6.4;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--line-gold);
    background: #000;
    isolation: isolate;
    box-shadow: 0 40px 120px rgba(242, 180, 65, 0.08);
}

.masthead-band .media video {
    object-position: 56% 46%;
}

.masthead-ticker {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.masthead-ticker span {
    flex: 1 1 auto;
    padding: 14px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-3);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.masthead-ticker span:last-child {
    border-right: 0;
}

.masthead-ticker b {
    color: var(--gold);
    font-weight: 700;
    margin-right: 8px;
}

/* ─────────────────────────────
   STEPS
───────────────────────────── */
.steps {
    padding: 112px 0 104px;
}

.steps-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line-strong);
}

.step {
    padding: 30px 28px 34px 0;
    border-right: 1px solid var(--line);
}

.step + .step {
    padding-left: 28px;
}

.step:last-child {
    border-right: 0;
    padding-right: 0;
}

.step-n {
    display: block;
    font-size: 48px;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 30px;
}

.step h3 {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-3);
    font-size: 15px;
    line-height: 1.6;
}

/* ─────────────────────────────
   BENTO
───────────────────────────── */
.bento-section {
    padding: 104px 0;
    border-top: 1px solid var(--line);
    background: var(--bg-1);
}

.bento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 16px;
}

.tile {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    background: var(--bg-2);
    transition: border-color 0.3s;
}

.tile:hover {
    border-color: var(--line-gold);
}

.tile--a { grid-column: span 5; }
.tile--b { grid-column: span 7; }
.tile--c,
.tile--d,
.tile--e { grid-column: span 4; }

/* footage sits in its own framed inset; copy is never laid over it */
.tile-media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.06);
    isolation: isolate;
}

.tile-media--square {
    aspect-ratio: 1 / 1;
}

.tile--a .tile-media--square {
    aspect-ratio: 5 / 4;
}

.tile-media .media video {
    transform: scale(1.06);
}

.tile-copy h3 {
    font-size: clamp(26px, 2.2vw, 32px);
    line-height: 1.06;
    color: #fff;
    margin-bottom: 10px;
    text-wrap: balance;
}

.tile-copy p {
    color: var(--text-3);
    font-size: 15px;
    line-height: 1.6;
}

.tile--b {
    padding: 34px 34px 28px;
    background: radial-gradient(circle at 100% 0%, rgba(242, 180, 65, 0.12), transparent 42%), var(--bg-2);
    justify-content: space-between;
}

.tile--b .tile-copy h3 {
    font-size: clamp(32px, 3vw, 44px);
}

.tile--b .tile-copy p {
    max-width: 520px;
    font-size: 16px;
}

.checklist {
    margin: 0;
    border-top: 1px solid var(--line-strong);
}

.checklist > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
}

.checklist dt {
    color: var(--text-2);
    font-weight: 600;
}

.checklist dd {
    margin: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: right;
}

.checklist-foot dt {
    color: var(--text-4);
}

.checklist-foot dd {
    color: var(--text-3);
}

.tile--e {
    justify-content: space-between;
    border-color: var(--line-gold);
    background: radial-gradient(circle at 0% 100%, rgba(242, 180, 65, 0.16), transparent 50%), var(--bg-2);
}

.stat {
    font-size: clamp(88px, 8vw, 128px);
    line-height: 0.9;
    color: var(--gold);
    letter-spacing: -0.03em;
}

.stat small {
    font-size: 0.42em;
    vertical-align: 0.9em;
    margin-left: 0.04em;
}

/* ─────────────────────────────
   MODEL · worked example
───────────────────────────── */
.model {
    padding: 112px 0 96px;
    border-top: 1px solid var(--line);
    background: radial-gradient(ellipse at 20% 0%, rgba(242, 180, 65, 0.09), transparent 45%), #000;
}

.model-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 48px 72px;
    align-items: start;
}

.model-side .eyebrow {
    margin-bottom: 18px;
}

.model-title {
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.04;
    color: #fff;
    margin-bottom: 30px;
    text-wrap: balance;
}

.model-classes {
    border: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.model-classes label {
    position: relative;
}

.model-classes input {
    position: absolute;
    opacity: 0;
    inset: 0;
}

.model-classes span {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--text-2);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.model-classes input:checked + span {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--gold-ink);
}

.model-classes input:focus-visible + span {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.model-range {
    display: block;
}

.model-range-label {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--text-3);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.model-range-label output {
    color: var(--text);
    font-variant-numeric: tabular-nums;
}

.model-range input[type="range"] {
    width: 100%;
    height: 28px;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
}

.model-range input[type="range"]::-webkit-slider-runnable-track {
    height: 2px;
    background: linear-gradient(to right, var(--gold) var(--fill, 10%), rgba(255, 255, 255, 0.16) var(--fill, 10%));
}

.model-range input[type="range"]::-moz-range-track {
    height: 2px;
    background: rgba(255, 255, 255, 0.16);
}

.model-range input[type="range"]::-moz-range-progress {
    height: 2px;
    background: var(--gold);
}

.model-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    margin-top: -8px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid #000;
    box-shadow: 0 0 0 1px var(--gold);
}

.model-range input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid #000;
    box-shadow: 0 0 0 1px var(--gold);
}

.model-foot {
    margin-top: 26px;
    color: var(--text-4);
    font-size: 13px;
    line-height: 1.55;
}

.model-foot a {
    color: var(--text-3);
}

.flow {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg-1);
}

.flow-item {
    padding: 26px 26px 24px;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flow-item:nth-child(2n) {
    border-right: 0;
}

.flow-item--last {
    grid-column: 1 / -1;
    border-bottom: 0;
    border-right: 0;
    background: rgba(242, 180, 65, 0.05);
}

.flow-k {
    color: var(--text-3);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.flow-item strong {
    font-size: clamp(36px, 3.2vw, 46px);
    line-height: 1;
    color: #fff;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
}

.flow-item--last strong {
    color: var(--gold);
}

.flow-item small {
    color: var(--text-4);
    font-size: 13px;
}

.model-open {
    margin-top: 28px;
    font-size: 15px;
}

/* ─────────────────────────────
   FEE FLOW · routing and buyback
───────────────────────────── */
.feeflow {
    padding: 104px 0;
    border-top: 1px solid var(--line);
    background: #000;
}

.route {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    counter-reset: route;
}

.route-node {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 22px 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--bg-2);
}

/* arrow connectors between nodes */
.route-node:not(.route-node--last)::after {
    content: '→';
    position: absolute;
    right: -13px;
    top: 26px;
    z-index: 2;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #000;
    border: 1px solid var(--line-gold);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1;
}

.route-node--last {
    border-color: var(--line-gold);
    background: radial-gradient(circle at 100% 0%, rgba(242, 180, 65, 0.14), transparent 50%), var(--bg-2);
}

.route-k {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.route-node strong {
    font-size: clamp(22px, 1.9vw, 27px);
    line-height: 1.12;
    color: #fff;
    font-weight: 400;
}

.route-node p {
    color: var(--text-3);
    font-size: 14px;
    line-height: 1.6;
}

.route-node p code.inline {
    font-size: 0.86em;
}

.route-params {
    margin: 18px 0 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-1);
}

.route-params > div {
    padding: 14px 18px;
    border-right: 1px solid var(--line);
}

.route-params > div:last-child {
    border-right: 0;
}

.route-params dt {
    color: var(--text-4);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.route-params dd {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

/* ─────────────────────────────
   SIDES · comparison ledger
───────────────────────────── */
.sides {
    padding: 104px 0;
    border-top: 1px solid var(--line);
    background: var(--bg-1);
}

.sides-grid {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 48px 64px;
    align-items: start;
}

.sides-figure {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 5;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--line-gold);
    background: #000;
    isolation: isolate;
    position: sticky;
    top: 32px;
}

/* the eclipse sphere sits in the right 45 % of the clip; a 4:5 crop from
   16:10 keeps roughly half the width, so anchor on the sphere's centre */
.sides-video {
    object-position: 66% 46%;
    transform: scale(1.15);
    transform-origin: 66% 46%;
}

/* the eclipse clip is mostly black; a faint amber floor keeps the frame from
   reading as an empty box while the crescent moves */
.sides-figure::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse at 60% 45%, rgba(242, 180, 65, 0.16), transparent 55%),
                linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 40%);
    pointer-events: none;
}

.sides-figure figcaption {
    position: absolute;
    z-index: 3;
    left: 18px;
    right: 18px;
    bottom: 16px;
    color: var(--text-2);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    line-height: 1.3;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.sides-ledger .eyebrow {
    margin-bottom: 18px;
}

.sides-ledger .section-title {
    margin-bottom: 34px;
}

.ledger {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid var(--line-strong);
}

.ledger th,
.ledger td {
    padding: 18px 20px 18px 0;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    line-height: 1.55;
}

.ledger thead th {
    padding-top: 14px;
    padding-bottom: 14px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ledger tbody th {
    width: 22%;
    color: var(--text);
    font-weight: 700;
}

.ledger td {
    width: 39%;
    color: var(--text-2);
    padding-right: 28px;
}

.ledger td:last-child {
    padding-right: 0;
}

/* ─────────────────────────────
   VENUES
───────────────────────────── */
.venues {
    padding: 104px 0 0;
    border-top: 1px solid var(--line);
    background: #000;
}

.venues-grid {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 40px 72px;
    align-items: end;
    margin-bottom: 56px;
}

.venues-grid .eyebrow {
    margin-bottom: 18px;
}

.venues-lede {
    max-width: 520px;
    margin: 18px 0 22px;
    color: var(--text-2);
    font-size: 17px;
    line-height: 1.55;
}

.venues-ledger {
    margin: 0;
    border-top: 1px solid var(--line-strong);
}

.venues-ledger > div {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.venues-ledger dt {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-top: 3px;
}

.venues-ledger dd {
    margin: 0;
    color: var(--text-2);
    font-size: 14.5px;
    line-height: 1.55;
}

/* full-width footage band with a static, ruled logo grid on top */
.venues-band {
    position: relative;
    min-height: 300px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    isolation: isolate;
    padding: 56px var(--gutter);
}

.venues-band::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.55) 30%, rgba(0, 0, 0, 0.55) 70%, #000 100%);
    pointer-events: none;
}

.logo-grid {
    position: relative;
    z-index: 2;
    list-style: none;
    max-width: var(--content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.logo-grid li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
}

.logo-grid li:nth-child(6n) {
    border-right: 0;
}

.logo-grid li:nth-child(n+7) {
    border-bottom: 0;
}

.logo-grid img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #fff;
    padding: 5px;
    object-fit: contain;
}

.logo-note {
    color: var(--text-4) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.4;
}

/* ─────────────────────────────
   FACTS
───────────────────────────── */
.facts {
    padding: 104px 0;
    background: #000;
}

.facts-grid {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line-strong);
}

.fact {
    padding: 34px 28px 30px 0;
    border-right: 1px solid var(--line);
}

.fact + .fact {
    padding-left: 28px;
}

.fact:last-child {
    border-right: 0;
    padding-right: 0;
}

.fact dt {
    font-size: clamp(48px, 4.6vw, 68px);
    line-height: 1;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
}

.fact dd {
    margin: 16px 0 0;
    color: var(--text-3);
    font-size: 13.5px;
    line-height: 1.55;
}

.fact dd b {
    display: block;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

/* ─────────────────────────────
   CLOSING
───────────────────────────── */
.closing {
    padding: 0 0 112px;
    background: #000;
}

.closing-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 40px;
    padding: 64px;
    border-radius: 28px;
    border: 1px solid var(--line-gold);
    overflow: hidden;
    background: #000;
    isolation: isolate;
    min-height: 520px;
}

.closing-video {
    transform: translateX(10%) scale(1.15);
    transform-origin: center;
}

.closing-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.closing-copy,
.presets {
    position: relative;
    z-index: 2;
}

.closing-copy .eyebrow {
    margin-bottom: 22px;
}

.closing-title {
    font-size: clamp(48px, 5.6vw, 84px);
    line-height: 0.98;
    color: #fff;
    margin-bottom: 22px;
}

.closing-lede {
    max-width: 480px;
    color: var(--text-2);
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 30px;
}

.closing-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.presets {
    list-style: none;
    align-self: end;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.presets a {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 4px 16px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(11, 10, 8, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, background 0.2s;
}

.presets a:hover {
    border-color: var(--gold);
    background: rgba(11, 10, 8, 0.8);
}

.preset-k {
    grid-row: span 2;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.presets strong {
    font-size: 15px;
    font-weight: 700;
}

.presets small {
    color: var(--text-3);
    font-size: 12.5px;
}

/* ─────────────────────────────
   FOOTER · home adds a big wordmark
───────────────────────────── */
.footer--home {
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}

.footer-wordmark {
    max-width: var(--content-max);
    margin: 0 auto 40px;
    font-size: clamp(96px, 18vw, 260px);
    line-height: 0.8;
    color: rgba(242, 180, 65, 0.12);
    letter-spacing: -0.03em;
    pointer-events: none;
    user-select: none;
}

/* ─────────────────────────────
   RESPONSIVE
───────────────────────────── */
@media (max-width: 1100px) {
    .tile--a { grid-column: span 6; }
    .tile--b { grid-column: span 6; }
    .tile--c,
    .tile--d { grid-column: span 6; }
    .tile--e { grid-column: span 12; flex-direction: row; align-items: center; gap: 32px; }
    .tile--e .tile-copy { flex: 1; }
    .logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .logo-grid li:nth-child(6n) { border-right: 1px solid rgba(255, 255, 255, 0.1); }
    .logo-grid li:nth-child(4n) { border-right: 0; }
    .logo-grid li:nth-child(n+7) { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .logo-grid li:nth-child(n+9) { border-bottom: 0; }
}

@media (max-width: 1024px) {
    .top-nav { display: none; }
    .nav-menu { display: block; }
    .masthead-band { aspect-ratio: 16 / 8; }
    .masthead-ticker { flex-wrap: nowrap; }
    .masthead-ticker span { flex: 1 1 0; padding: 12px 14px; font-size: 11px; letter-spacing: 0.06em; overflow: hidden; text-overflow: ellipsis; }
    .masthead-ticker span:nth-child(n+4) { display: none; }
    .steps-grid,
    .facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .step,
    .fact { border-bottom: 1px solid var(--line); }
    .step:nth-child(2n),
    .fact:nth-child(2n) { border-right: 0; padding-right: 0; }
    .step:nth-child(2n+1),
    .fact:nth-child(2n+1) { padding-left: 0; }
    .step:nth-child(n+3),
    .fact:nth-child(n+3) { border-bottom: 0; }
    .model-grid,
    .sides-grid,
    .venues-grid { grid-template-columns: 1fr; }
    .route { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .route-node:nth-child(2)::after { display: none; }
    .route-params { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .route-params > div:nth-child(3n) { border-right: 0; }
    .route-params > div:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
    .sides-figure { position: static; aspect-ratio: 16 / 9; max-width: 560px; }
    .sides-video { object-position: 60% 42%; transform: none; }
    .closing-panel { grid-template-columns: 1fr; padding: 44px; }
    .presets { align-self: stretch; }
}

@media (max-width: 760px) {
    .top-inner { height: 66px; gap: 16px; }
    .ticker-chip { height: 36px; padding: 0 12px; font-size: 12px; }
    .top-actions .btn-sm { display: none; }
    .masthead { padding-top: 48px; }
    .masthead-title { font-size: clamp(50px, 14vw, 88px); margin-bottom: 28px; }
    .masthead-line { white-space: normal; }
    .masthead-row { grid-template-columns: 1fr; padding-bottom: 32px; }
    .masthead-lede { font-size: 17px; }
    .masthead-ctas { flex-wrap: wrap; gap: 16px; }
    .masthead-band { aspect-ratio: 4 / 3.6; border-radius: 18px; }
    .masthead-band .media video { object-position: 46% 40%; }
    .masthead-ticker { flex-wrap: nowrap; overflow: hidden; }
    .masthead-ticker span { flex: 1 1 0; padding: 11px 12px; font-size: 10.5px; letter-spacing: 0.06em; overflow: hidden; text-overflow: ellipsis; }
    .masthead-ticker span:nth-child(n+3) { display: none; }
    .steps,
    .bento-section,
    .model,
    .sides,
    .facts { padding: 72px 0; }
    .venues { padding-top: 72px; }
    .closing { padding-bottom: 72px; }
    .section-head { margin-bottom: 30px; }
    .bento { gap: 12px; }
    .tile--a,
    .tile--b,
    .tile--c,
    .tile--d,
    .tile--e { grid-column: span 12; }
    .tile--e { flex-direction: column; align-items: flex-start; gap: 22px; }
    .tile--a .tile-media--square { aspect-ratio: 1 / 1; }
    .tile--b { padding: 24px 22px; }
    .flow { grid-template-columns: 1fr; }
    .feeflow { padding: 72px 0; }
    .route { grid-template-columns: 1fr; }
    .route-node::after { display: none !important; }
    .route-params { grid-template-columns: 1fr 1fr; }
    .route-params > div { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .route-params > div:nth-child(2n) { border-right: 0; }
    .route-params > div:nth-child(3n) { border-right: 1px solid var(--line); }
    .route-params > div:nth-child(4) { border-right: 0; }
    .route-params > div:last-child { border-bottom: 0; }
    .flow-item { border-right: 0; }
    .ledger thead { display: none; }
    .ledger,
    .ledger tbody,
    .ledger tr,
    .ledger th,
    .ledger td { display: block; width: auto; }
    .ledger tr { padding: 16px 0; border-bottom: 1px solid var(--line); }
    .ledger tbody th { width: auto; padding: 0 0 8px; border: 0; color: var(--gold); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
    .ledger td { padding: 6px 0; border: 0; }
    .ledger td::before { content: attr(data-side); display: block; color: var(--text); font-weight: 700; font-size: 13px; margin-bottom: 2px; }
    .venues-ledger > div { grid-template-columns: 1fr; gap: 6px; }
    .venues-band { padding: 36px var(--gutter); min-height: 0; }
    .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .logo-grid li { padding: 14px 14px; font-size: 14px; border-right: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .logo-grid li:nth-child(2n) { border-right: 0; }
    .logo-grid li:nth-child(n+11) { border-bottom: 0; }
    .logo-grid img { width: 28px; height: 28px; }
    .closing-panel { padding: 30px 22px; border-radius: 20px; min-height: 0; }
    .closing-panel::before { background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%); }
    .closing-btns .btn { flex: 1; min-width: 0; }
    .presets a { grid-template-columns: 1fr; }
    .preset-k { grid-row: auto; }
    .footer-wordmark { margin-bottom: 28px; }
}

@media (max-width: 480px) {
    .steps-grid,
    .facts-grid { grid-template-columns: 1fr; }
    .step,
    .fact,
    .step:nth-child(2n),
    .fact:nth-child(2n),
    .step + .step,
    .fact + .fact { padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .step:last-child,
    .fact:last-child { border-bottom: 0; }
    .step-n { font-size: 36px; margin-bottom: 18px; }
}

/* ─────────────────────────────
   REDUCED MOTION
───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .tile:hover,
    .presets a:hover {
        transform: none;
    }
    .ticker-dot {
        animation: none;
    }
}
