*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* ── Official StockX Brand Palette ── */
    --black: #0F0F0F;
    --white: #FFFFFF;
    --green: #006340;
    --green-light: #95C0A4;
    --green-glow: rgba(0, 99, 64, 0.25);
    --gray-dark: #5A5A5A;
    --gray-light: #EEEEEE;
    --gold: #F5BA1A;
    --orange: #F06142;
    --blush: #E8BFBA;
    --blue: #3770B8;
    --g900: #111111;
    --g800: #1a1a1a;
    --g700: #252525;
    --g600: #333333;
    --g400: #888888;
    --g300: #bbbbbb;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 36px;
}

.sec {
    padding: 128px 0;
}

.sec-sm {
    padding: 80px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 18px;
    font-family: Arial, Helvetica, sans-serif;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--green-light);
}

/* Suisse Medium for display headings */
.h1 {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 6vw, 96px);
    line-height: .92;
    letter-spacing: -.01em;
}

.h2 {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 5.5vw, 88px);
    line-height: .96;
    letter-spacing: -.005em;
}

.h3 {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 2.8vw, 44px);
    line-height: 1.05;
}

.h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.2;
}

.g {
    color: var(--green-light);
}

.gold {
    color: var(--gold);
}

.body {
    font-size: 17px;
    line-height: 1.78;
    color: var(--g300);
}

.body-sm {
    font-size: 14px;
    line-height: 1.68;
    color: var(--g400);
}

.gline {
    width: 44px;
    height: 3px;
    background: var(--green);
    margin-bottom: 32px;
}

.btn {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 42px;
    transition: all .22s;
    cursor: pointer;
    border: 1px solid transparent;
    font-family: Arial, Helvetica, sans-serif;
}

.btn-g {
    background: var(--green);
    color: #fff;
}

.btn-g:hover {
    background: #4a9068;
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: #000;
}

.btn-gold:hover {
    background: #ffc82a;
    transform: translateY(-2px);
}

.btn-ol {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--g600);
}

.btn-ol:hover {
    border-color: var(--green-light);
    color: var(--green-light);
}

/* Scroll reveal */
.fr {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
}

.fr.on {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .08s
}

.d2 {
    transition-delay: .17s
}

.d3 {
    transition-delay: .26s
}

.d4 {
    transition-delay: .35s
}

.d5 {
    transition-delay: .44s
}

.d6 {
    transition-delay: .53s
}

.media-network-pg {
    color: var(--white) !important;
}

/* ── NAV ───────────────────────────────────────────────────── */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    transition: background .35s, border-color .35s;
    border-bottom: 1px solid transparent;
}

#nav.scrolled {
    background: rgba(15, 15, 15, 0.94);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--g800);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 36px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--g300);
    text-decoration: none;
    transition: color .2s;
    font-family: Arial, sans-serif;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    font-size: 12px;
}

/* ── HERO ──────────────────────────────────────────────────── */
#hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a1a10;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 55%;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.85;
}

.hero-bg-grad {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(15, 15, 15, 0.98) 0%, rgba(15, 15, 15, 0.92) 45%, rgba(15, 15, 15, 0.3) 70%, transparent 100%);
}

#canvas-hero {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: .07;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 160px 36px 100px;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

.hero-tag {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 6px 14px;
    margin-bottom: 32px;
    font-family: Arial, sans-serif;
}

.hero-h1 {
    margin-bottom: 28px;
}

.hero-sub {
    font-size: clamp(17px, 1.8vw, 22px);
    line-height: 1.6;
    color: var(--g300);
    max-width: 580px;
    margin-bottom: 48px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 56px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.hero-stat-n {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 4vw, 56px);
    color: var(--white);
    line-height: 1;
}

.hero-stat-l {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-top: 4px;
}

.hero-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* ── TICKER ─────────────────────────────────────────────────── */
.ticker-bar {
    background: var(--green);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 50;
}

.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: ticker 28s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.tick-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    padding: 0 28px;
    font-family: Arial, sans-serif;
}

.tick-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

/* ── MARQUEE (brands) ────────────────────────────────────────── */
.marquee-wrap {
    overflow: hidden;
    padding: 56px 0;
    border-top: 1px solid var(--g800);
    border-bottom: 1px solid var(--g800);
}

.marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marq 22s linear infinite;
}

@keyframes marq {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.mq-item {
    display: inline-block;
    padding: 0 44px;
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2vw, 26px);
    letter-spacing: .06em;
    color: var(--g300);
    text-transform: uppercase;
    white-space: nowrap;
}

.mq-item span {
    color: var(--g700);
    margin-left: 44px;
}

/* ── PLATFORM STATS ─────────────────────────────────────────── */
#platform {
    position: relative;
    overflow: hidden;
    background: #0a1005;
}

.platform-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.platform-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(10, 16, 5, 0.97) 0%, rgba(0, 60, 30, 0.85) 100%);
}

.platform-inner {
    position: relative;
    z-index: 2;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 72px;
    border-top: 3px solid rgba(0, 128, 80, 0.4);
}

.stat-cell {
    background: rgba(0, 99, 64, 0.05);
    padding: 48px 36px;
    border-bottom: 3px solid rgba(0, 128, 80, 0.4);
    transition: background .3s, border-bottom-color .3s;
}

.stat-cell:hover {
    background: rgba(0, 99, 64, 0.1);
    border-bottom-color: var(--green-light);
}

.stat-n {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(52px, 5.5vw, 80px);
    line-height: 1;
    color: var(--green-light);
    display: block;
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-top: 8px;
    font-family: Arial, sans-serif;
}

.stat-note {
    font-size: 13px;
    color: var(--g400);
    margin-top: 10px;
    line-height: 1.5;
}

.stat-accent {
    color: var(--gold);
}

/* metric trio */
.metric-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.metric-card {
    background: rgba(0, 99, 64, 0.08);
    border: 1px solid rgba(0, 99, 64, 0.25);
    padding: 32px 28px;
}

.metric-n {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 3.5vw, 48px);
    color: var(--green-light);
}

.metric-l {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--g400);
    margin-top: 6px;
    font-family: Arial, sans-serif;
}

.metric-sub {
    font-size: 13px;
    color: var(--gold);
    margin-top: 4px;
    font-weight: 700;
    font-family: Arial, sans-serif;
}

/* ── AUDIENCE ────────────────────────────────────────────────── */
#audience {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.aud-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.aud-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.aud-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: saturate(0.9);
}

.aud-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(15, 15, 15, 0.8) 100%);
}

.aud-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    background: var(--green);
    color: #fff;
    padding: 16px 22px;
}

.aud-badge-n {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
}

.aud-badge-l {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-top: 4px;
    font-family: Arial, sans-serif;
}

.bars {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.bar-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bar-meta {
    display: flex;
    justify-content: space-between;
}

.bar-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    font-family: Arial, sans-serif;
}

.bar-pct {
    font-size: 13px;
    font-weight: 700;
    color: var(--green-light);
    font-family: Arial, sans-serif;
}

.bar-track {
    height: 4px;
    background: var(--g800);
}

.bar-fill {
    height: 100%;
    background: var(--green);
    width: 0;
    transition: width 1.1s cubic-bezier(.16, 1, .3, 1);
}

.aud-callout {
    background: var(--green);
    padding: 28px 32px;
    margin-top: 32px;
}

.aud-callout-n {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #fff;
}

.aud-callout-l {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 6px;
    font-family: Arial, sans-serif;
}

/* ── AD SOLUTIONS ────────────────────────────────────────────── */
#solutions {
    background: #0a0a0a;
}

.sol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 72px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sol-card {
    background: #0f0f0f;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s cubic-bezier(.25, .46, .45, .94), box-shadow .3s;
    position: relative;
}

.sol-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--green);
    z-index: 2;
}

.sol-card.wide {
    grid-column: span 3;
    flex-direction: row;
}

.sol-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.sol-card.wide .sol-img {
    width: 45%;
    height: auto;
    min-height: 280px;
}

.sol-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s cubic-bezier(.25, .46, .45, .94);
    display: block;
}

.sol-card:hover .sol-img img {
    transform: scale(1.07);
}

.sol-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 15, 15, 0.85) 100%);
}

.sol-card.wide .sol-img-overlay {
    width: 45%;
    height: 100%;
}

.sol-num {
    position: absolute;
    top: 18px;
    left: 18px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: var(--green);
    color: #fff;
    padding: 5px 12px;
    z-index: 3;
}

.sol-content {
    padding: 30px 32px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-top: 2px solid rgba(255, 255, 255, 0.07);
}

.sol-card:hover .sol-content {
    border-top-color: var(--green);
}

.sol-card.wide .sol-content {
    justify-content: center;
    padding: 40px 48px;
}

.sol-title {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.sol-card.wide .sol-title {
    font-size: 20px;
}

.sol-body {
    font-size: 14px;
    line-height: 1.75;
    color: var(--g400);
    font-family: Arial, sans-serif;
    flex: 1;
}

.sol-reach {
    display: inline-block;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--green);
    font-family: Arial, sans-serif;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ── CASE STUDIES ────────────────────────────────────────────── */
#casestudies {
    background: var(--black);
}

.cs-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--g800);
    margin-top: 72px;
}

.cs-left {
    background: var(--green);
}

.cs-brand {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    font-family: Arial, sans-serif;
}

.cs-image {
    width: 88px;
    opacity: 0.82;
    flex-shrink: 0;
}

.cs-image img {
    width: 88px;
}

.cs-headline {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 3.5vw, 52px);
    color: #fff;
    line-height: 1.05;
    margin-bottom: 36px;
}

.cs-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cs-metric-n {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 4vw, 56px);
    color: #fff;
    line-height: 1;
}

.cs-metric-l {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-family: Arial, sans-serif;
}

.cs-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--g800);
}

.cs-mini {
    background: var(--g900);
    padding: 40px 44px;
    flex: 1;
}

.cs-mini-brand {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 12px;
    font-family: Arial, sans-serif;
}

.cs-mini-stat {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3vw, 44px);
    color: var(--white);
    line-height: 1;
}

.cs-mini-desc {
    font-size: 13px;
    color: var(--g400);
    margin-top: 8px;
    font-family: Arial, sans-serif;
}

/* ── INVESTMENT TIERS ────────────────────────────────────────── */
#tiers {
    background: var(--g900);
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--g800);
    margin-top: 72px;
}

.tier-card {
    background: var(--g900);
    padding: 44px 32px;
    position: relative;
}

.tier-card.featured {
    background: var(--green);
}

.tier-badge {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 4px 10px;
    margin-bottom: 24px;
    font-family: Arial, sans-serif;
}

.tier-name {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 8px;
}

.tier-card.featured .tier-name {
    color: #fff;
}

.tier-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--green-light);
    margin-bottom: 28px;
    font-family: Arial, sans-serif;
}

.tier-card.featured .tier-price {
    color: rgba(255, 255, 255, 0.8);
}

.tier-ch {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 52px;
    color: var(--white);
    line-height: 1;
}

.tier-ch-l {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--g400);
    margin-top: 4px;
    font-family: Arial, sans-serif;
}

.tier-card.featured .tier-ch-l {
    color: rgba(255, 255, 255, 0.7);
}

.tier-features {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tier-feat {
    font-size: 13px;
    color: var(--g400);
    padding-left: 16px;
    position: relative;
    font-family: Arial, sans-serif;
}

.tier-feat::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--green-light);
    font-size: 12px;
}

.tier-card.featured .tier-feat {
    color: rgba(255, 255, 255, 0.7);
}

.tier-card.featured .tier-feat::before {
    color: rgba(255, 255, 255, 0.9);
}

/* ── CULTURAL CALENDAR ────────────────────────────────────────── */
#calendar {
    position: relative;
    overflow: hidden;
    background: #050e05;
}

.cal-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.cal-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(5, 14, 5, 0.97) 0%, rgba(0, 50, 25, 0.9) 100%);
}

.cal-inner {
    position: relative;
    z-index: 2;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--g800);
    margin-top: 72px;
}

.cal-q {
    background: var(--g900);
    padding: 36px 30px;
}

.cal-q-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 18px;
    font-family: Arial, sans-serif;
}

.cal-q-title {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.1;
}

.cal-moments {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cal-moment {
    font-size: 13px;
    color: var(--g300);
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-left: 2px solid var(--green);
    font-family: Arial, sans-serif;
}

/* ── RELEASES CARD ────────────────────────────────────────────── */
.releases-card {
    background: #0e1c15;
    border-top: 3px solid var(--green);
    padding: 40px 48px;
    margin-top: 2px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.releases-card-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.releases-card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.1;
    margin-bottom: 14px;
}

.releases-card-body {
    font-size: 14px;
    color: var(--g300);
    line-height: 1.7;
    font-family: Arial, sans-serif;
    max-width: 560px;
}

@media(max-width:768px) {
    .releases-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 24px;
    }

    .releases-card-title {
        font-size: 18px;
    }
}

/* ── AS SEEN IN / PRESS BAR ──────────────────────────────────── */
#press-bar {
    background: var(--g800);
    border-top: 1px solid var(--g700);
    border-bottom: 1px solid var(--g700);
    padding: 40px 0;
    text-align: center;
}

.press-bar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.press-bar-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--green-light);
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
}

.press-bar-logos {
    display: flex;
    align-items: center;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.press-logo-link {
    opacity: .55;
    transition: opacity .25s;
    line-height: 0;
    flex-shrink: 0;
}

.press-logo-link:hover {
    opacity: 1;
}

.press-logo-link img {
    display: block;
    height: 36px;
    width: auto;
    object-fit: contain;
}

@media(max-width:900px) {
    .press-bar-logos {
        gap: 32px;
    }
}

@media(max-width:768px) {
    .press-bar-logos {
        gap: 24px;
    }

    .press-logo-link img {
        height: 28px;
    }
}


/* ── INSTAGRAM VIDEOS ────────────────────────────────────────── */
.ig-video-grid {
    display: flex;
    justify-content: flex-start;
    gap: 32px;
    flex-wrap: wrap;
}

.ig-video-card {
    width: 260px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    transition: border-color .25s, transform .25s;
}

.ig-video-card:hover {
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-4px);
}

.ig-video-video-wrap video,
.ig-video-placeholder {
    width: 100%;
    aspect-ratio: 9/16;
    display: block;
    background: #000;
}

.ig-video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ig-video-icon {
    color: rgba(255, 255, 255, 0.2);
}

.ig-video-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
}

.ig-video-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    font-family: Arial, sans-serif;
}

.ig-video-caption {
    padding: 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ig-video-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
}

.ig-video-desc {
    font-size: 11px;
    color: var(--g300);
    line-height: 1.5;
    font-family: Arial, Helvetica, sans-serif;
}

@media(max-width:600px) {
    .ig-video-card {
        width: 220px;
    }
}

/* ── CEO QUOTE ────────────────────────────────────────────────── */
#quote {
    background: var(--green);
    padding: 96px 0;
}

.quote-inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-mark {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.15);
    line-height: .6;
    display: block;
    margin-bottom: 16px;
}

.quote-text {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 2.8vw, 38px);
    color: #fff;
    line-height: 1.45;
    margin-bottom: 32px;
}

.quote-author {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    font-family: Arial, sans-serif;
}

/* ── WHY STOCKX (data/green section) ─────────────────────────── */
#why {
    background: #0a1005;
    position: relative;
    overflow: hidden;
}

.why-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.06;
}

.why-inner {
    position: relative;
    z-index: 2;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 72px;
}

.why-card {
    padding: 48px 36px;
    background: rgba(0, 99, 64, 0.05);
    border-top: 3px solid rgba(0, 128, 80, 0.4);
    transition: background .3s, border-color .3s;
}

.why-card:last-child:nth-child(3n + 1) {
    grid-column: 2 / 3;
}

.why-card:hover {
    background: rgba(0, 99, 64, 0.12);
    border-top-color: var(--green-light);
}

.why-n {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 4vw, 56px);
    color: var(--green-light);
    line-height: 1.2;
}

.why-l {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--g400);
    margin-top: 6px;
    font-family: Arial, sans-serif;
}

.why-desc {
    font-size: 14px;
    color: var(--g300);
    margin-top: 14px;
    line-height: 1.7;
    font-family: Arial, sans-serif;
}

/* ── CTA ──────────────────────────────────────────────────────── */
#cta {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(0.8);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(15, 15, 15, 0.97) 40%, rgba(15, 15, 15, 0.55) 100%);
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* ── CONTACT ──────────────────────────────────────────────────── */
#contact {
    background: var(--black);
    border-top: 1px solid var(--g800);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-grid .wpforms-container {
    margin-bottom: 0;
}

.contact-grid .wpforms-container .wpforms-field,
.contact-grid .wp-core-ui div.wpforms-container .wpforms-field {
    padding: 0 0 15px 0;
}

.contact-grid .wpforms-container .wpforms-field.wpforms-field-textarea {
    padding: 0;
}

.contact-container {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 6px;
    font-family: Arial, sans-serif;
    line-height: 17px;
}

.contact-email {
    font-size: 16px;
    color: var(--white);
    font-family: Arial, sans-serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-input,
.form-select,
.form-textarea {
    background: var(--g900);
    border: 1px solid var(--g700);
    color: var(--white);
    font-size: 14px;
    padding: 16px 20px;
    width: 100%;
    font-family: Arial, sans-serif;
    transition: border-color .2s;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--green-light);
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

.form-select {
    appearance: none;
    cursor: pointer;
}

.form-disclaimer,
.case-study-disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    margin-top: 15px;
    font-family: Arial, sans-serif;
    font-style: italic;
}

.form-disclaimer a,
.case-study-disclaimer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
footer {
    background: var(--g900);
    border-top: 1px solid var(--g800);
    padding: 48px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
}

.footer-logo span {
    color: var(--green-light);
}

.footer-copy {
    font-size: 12px;
    color: var(--g400);
    font-family: Arial, sans-serif;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 12px;
    color: var(--g400);
    text-decoration: none;
    transition: color .2s;
    font-family: Arial, sans-serif;
}

.footer-links a:hover {
    color: var(--white);
}

/* ── LIVE TICKER (bottom) ──────────────────────────────────────── */
.live-ticker {
    background: var(--g900);
    border-top: 1px solid var(--g800);
    padding: 12px 0;
    overflow: hidden;
}

.lt-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 35s linear infinite;
}

.lt-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    letter-spacing: .04em;
    color: var(--g400);
    padding: 0 32px;
    font-family: Arial, sans-serif;
}

.lt-brand {
    font-weight: 700;
    color: var(--white);
}

.lt-price {
    color: var(--green-light);
    font-weight: 700;
}

.lt-up {
    color: var(--green-light);
}

.lt-dot {
    color: var(--g700);
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media(max-width:900px) {

    .stat-grid,
    .sol-grid,
    .tier-grid,
    .cal-grid,
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-card:last-child:nth-child(3n + 1) {
        grid-column: auto;
    }

    .cs-featured {
        grid-template-columns: 1fr;
    }

    .aud-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .metric-trio {
        grid-template-columns: 1fr 1fr;
    }

    .sol-card.wide {
        grid-column: span 3;
        flex-direction: column;
    }

    .sol-card.wide .sol-img {
        width: 100%;
        min-height: 240px;
    }

    .sol-card.wide .sol-img-overlay {
        width: 100%;
    }

    .hero-right {
        display: none;
    }
}

@media(max-width:600px) {

    .stat-grid,
    .sol-grid,
    .tier-grid,
    .cal-grid,
    .why-grid,
    .metric-trio {
        grid-template-columns: 1fr;
    }

    .sol-card.wide {
        grid-column: span 1;
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

/* ── Enhanced Mobile Responsive Styles ── */

/* 768px — tablets / large phones landscape */
@media(max-width:768px) {

    /* Spacing */
    .wrap {
        padding: 0 20px !important;
    }

    .nav-inner {
        padding: 16px 20px !important;
    }

    .sec {
        padding: 72px 0;
    }

    /* Typography */
    .h1 {
        font-size: clamp(36px, 9vw, 56px);
    }

    .h2 {
        font-size: clamp(34px, 8.5vw, 52px);
    }

    .hero-sub {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .eyebrow {
        font-size: 12px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 100px 0 64px;
    }

    .hero-inner {
        max-width: 100%;
    }

    /* Grids → single column earlier on tablets */
    .aud-grid {
        gap: 48px;
    }

    .contact-grid {
        gap: 48px;
    }

    /* Cards */
    .tier-card {
        padding: 32px 24px;
    }

    .why-card {
        padding: 32px 24px;
    }

    .cs-left {
        padding: 48px 32px;
    }

    .cs-right {
        padding: 48px 32px;
    }

    /* PDF download bar — stack on small tablets */
    #download .wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    /* CTA section */
    .cta-inner {
        padding: 64px 0;
    }
}

/* 480px — phones */
@media(max-width:480px) {

    /* Spacing */
    .wrap {
        padding: 0 16px !important;
    }

    .nav-inner {
        padding: 14px 16px !important;
    }

    .sec {
        padding: 56px 0;
    }

    /* Typography */
    .h1 {
        font-size: clamp(32px, 9vw, 44px);
        line-height: .95;
    }

    .h2 {
        font-size: clamp(30px, 8vw, 42px);
        line-height: .97;
    }

    .hero-sub {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 28px;
    }

    .body {
        font-size: 15px;
    }

    /* Hero */
    .hero {
        padding: 88px 0 56px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btns .btn {
        text-align: center;
    }

    /* Sol cards */
    .sol-card {
        min-height: 280px;
    }

    .sol-img {
        min-height: 200px;
    }

    /* Tier cards */
    .tier-card {
        padding: 28px 20px;
    }

    .tier-name {
        font-size: 24px;
    }

    .tier-ch {
        font-size: 48px;
    }

    /* Why cards */
    .why-card {
        padding: 28px 20px;
    }

    .why-n {
        font-size: 28px;
    }

    /* Stat grid */
    .stat-num {
        font-size: clamp(40px, 12vw, 64px);
    }

    /* Case study */
    .cs-left {
        padding: 40px 20px;
    }

    .cs-left>div[style*="display:flex"] {
        flex-direction: column;
    }

    .cs-left>div[style*="display:flex"]>div[style*="flex:1"] {
        min-height: 180px;
    }

    .cs-video-wrap {
        flex: none !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9 !important;
    }

    .cs-right {
        padding: 40px 20px;
    }

    .cs-mini-grid {
        grid-template-columns: 1fr;
    }

    /* Contact form */
    .btn {
        padding: 14px 28px;
        font-size: 12px;
    }

    .form-input,
    .form-select,
    textarea {
        font-size: 16px;
    }

    /* prevent iOS zoom */

    /* Calendar */
    .cal-inner {
        padding: 56px 0;
    }

    /* Footer */
    .footer-inner {
        padding: 40px 0;
        gap: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 12px;
    }

    /* PDF bar */
    #download {
        padding: 20px 0;
    }

    #download .wrap {
        gap: 14px;
    }
}

/* ── Mobile: Solutions — hide images, show content only ── */
@media(max-width:768px) {
    .sol-img {
        display: none;
    }

    .sol-card {
        min-height: auto;
    }

    .sol-card.wide {
        flex-direction: column;
    }

    .sol-card.wide .sol-content {
        padding: 28px 24px;
    }

    .sol-content {
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding: 24px !important;
    }

    /* Numbers section — compact 2-col grid */
    #platform .h2 {
        font-size: clamp(28px, 7vw, 40px);
    }

    #platform>.wrap>.body {
        display: none;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1px;
        margin-top: 36px;
    }

    .stat-cell {
        padding: 24px 16px;
    }

    .stat-n {
        font-size: clamp(32px, 8vw, 48px) !important;
    }

    .stat-label {
        font-size: 11px;
        margin-top: 6px;
    }

    .stat-note {
        display: none;
    }

    #platform {
        padding: 56px 0;
    }
}

@media(max-width:480px) {
    .stat-cell {
        padding: 20px 12px;
    }

    .stat-n {
        font-size: clamp(28px, 8vw, 40px) !important;
    }

    .stat-label {
        font-size: 11px;
    }
}

/* ── Mobile: Cultural Calendar — 2×2 accordion ── */
@media(max-width:768px) {
    #calendar {
        padding: 56px 0;
    }

    #calendar .h2 {
        font-size: clamp(28px, 7vw, 40px);
    }

    #calendar>.wrap>.body {
        display: none;
    }

    .cal-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1px;
        margin-top: 32px;
    }

    .cal-q {
        padding: 22px 28px 20px 28px;
        cursor: pointer;
        user-select: none;
    }

    .cal-q-label {
        font-size: 12px;
        margin-bottom: 6px;
        padding-top: 2px;
    }

    .cal-q-title {
        font-size: 15px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .cal-q-title::after {
        content: '+';
        font-size: 18px;
        font-weight: 300;
        color: var(--green-light);
        flex-shrink: 0;
        transition: transform .25s;
    }

    .cal-q.open .cal-q-title::after {
        transform: rotate(45deg);
    }

    .cal-moments {
        display: none;
        margin-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding-top: 14px;
        gap: 2px;
        padding-left: 0;
    }

    .cal-q.open .cal-moments {
        display: block;
    }

    .cal-q.open {
        padding-bottom: 16px;
    }

    .cal-moment {
        font-size: 12px;
        padding: 8px 0 8px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        line-height: 1.4;
    }

    /* ── Mobile: Investment Tiers — compact 2×2, hide feature lists ── */
    #tiers {
        padding: 56px 0;
    }

    #tiers .h2 {
        font-size: clamp(28px, 7vw, 40px);
    }

    #tiers>.wrap>.body {
        display: none;
    }

    .tier-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 2px;
        margin-top: 32px;
    }

    .tier-card {
        padding: 24px 18px;
    }

    .tier-name {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .tier-price {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .tier-ch {
        font-size: 36px;
    }

    .tier-ch-l {
        font-size: 12px;
    }

    .tier-features {
        display: none;
    }

    .tier-badge {
        font-size: 12px;
    }
}

/* ── Mobile Sticky Bottom Nav ── */
#mobile-nav {
    display: none;
}

@media(max-width:768px) {
    #mobile-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--g900);
        border-top: 1px solid var(--g700);
        padding: 0 0 env(safe-area-inset-bottom, 0);
    }

    .mn-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 10px 4px 8px;
        color: var(--g400);
        text-decoration: none;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .03em;
        transition: color .2s;
        -webkit-tap-highlight-color: transparent;
    }

    .mn-item svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
    }

    .mn-item.mn-active,
    .mn-item:hover {
        color: var(--green-light);
    }

    /* Push page content above the nav bar */
    body {
        padding-bottom: calc(60px + env(safe-area-inset-bottom, 0));
    }
}

/* ── Simplified Ad Solutions Grid (why-card style) ── */
.sol-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(0, 180, 100, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.sol-card-icon img {
    width: 24px;
    height: 24px;
}

.sol-grid-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 72px;
    border-top: 3px solid rgba(0, 128, 80, 0.4);
}

.sol-card-simple {
    padding: 48px 36px;
    background: rgba(0, 99, 64, 0.05);
    border-bottom: 3px solid rgba(0, 128, 80, 0.4);
    transition: background .3s, border-bottom-color .3s;
}

.sol-card-simple:last-child:nth-child(3n + 1) {
    grid-column: 2 / 3;
}

.sol-card-simple:hover {
    background: rgba(0, 99, 64, 0.1);
    border-bottom-color: var(--green-light);
}

.sol-card-l {
    font-family: 'SuisseIntl-Medium', 'Suisse Medium', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(17px, 1.5vw, 20px);
    color: var(--white);
    line-height: 1.2;
    letter-spacing: 0;
}

.sol-card-desc {
    font-size: 14px;
    color: var(--g300);
    margin-top: 14px;
    line-height: 1.7;
    font-family: Arial, sans-serif;
}

@media(max-width:900px) {
    .sol-grid-simple {
        grid-template-columns: 1fr 1fr;
    }

    .sol-card-simple:last-child:nth-child(3n + 1) {
        grid-column: auto;
    }
}

@media(max-width:600px) {
    .sol-grid-simple {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    .sol-grid-simple {
        margin-top: 32px;
    }

    .sol-card-simple {
        padding: 28px 20px;
    }

    .sol-card-l {
        font-size: 17px;
    }
}

/* ── Option A case study ───────────────────────────────────── */
.cs-opt-a {
    display: grid;
    grid-template-columns: 1fr 360px;
    min-height: 640px;
    overflow: hidden;
    position: relative;
}

.cs-opt-a-content {
    background: #0d0d0d;
    padding: 52px 56px;
    display: flex;
    flex-direction: column;
}

.cs-opt-a-video {
    position: relative;
    overflow: hidden;
}

/* Desktop: slight zoom to trim Drive player chrome */
.cs-opt-a-iframe {
    position: absolute;
    top: 46%;
    left: 50%;
    width: 108%;
    height: 108%;
    transform: translate(-50%, -50%);
    border: 0;
    display: block;
}

.cs-opt-a-metrics {
    display: flex;
    gap: 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
}

.cs-opt-a-metric {
    flex: 1;
}

.cs-opt-a-metric:first-child {
    padding-right: 20px;
}

.cs-opt-a-metric:last-child {
    padding-left: 20px;
}

.cs-opt-a-metric--mid {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 20px;
}

@media(max-width:768px) {

    /* Full module: dark bg so video section matches content panel */
    .cs-opt-a {
        grid-template-columns: 1fr;
        min-height: auto;
        max-width: 100%;
        overflow: hidden;
        background: #0d0d0d;
    }

    .cs-opt-a-content {
        padding: 36px 24px 28px;
    }

    /* Metrics: stack vertically, number + label inline */
    .cs-opt-a-metrics {
        flex-direction: column;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 24px;
        padding-top: 0;
    }

    .cs-opt-a-metric {
        padding: 16px 0 !important;
        border-left: none !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: baseline;
        gap: 14px;
    }

    .cs-opt-a-metric:last-child {
        border-bottom: none;
    }

    .cs-opt-a-metric--mid {
        border-left: none !important;
        border-right: none !important;
        padding: 16px 0 !important;
    }

    .cs-opt-a-metrics .cs-metric-n {
        font-size: 28px !important;
        flex-shrink: 0;
        line-height: 1;
    }

    .cs-opt-a-metrics .cs-metric-l {
        font-size: 11px;
    }

    /* Mobile video: 16:9 landscape — Drive embed works reliably at this ratio */
    .cs-opt-a-video {
        width: 100%;
        /* aspect-ratio: 16/9; */
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        margin: 28px 0 40px;
        position: relative;
    }

    .cs-opt-a-iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: none;
        border: 0;
        display: block;
    }
}