/* ==========================================================================
   Home page — page-specific styles (Salix-style redesign)
   ========================================================================== */

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
    padding-top: var(--space-20);
    padding-bottom: 0;
    text-align: center;
    overflow: hidden;
}

.hero__inner {
    max-width: 720px;
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--color-white);
    border: 1px solid var(--color-surface-2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    color: #555;
    margin-bottom: var(--space-6);
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-teal);
}

.hero__headline {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.08;
    color: var(--color-ink);
    letter-spacing: -0.035em;
    margin-bottom: var(--space-6);
}

.hero__subheadline {
    font-size: var(--font-size-lg);
    color: var(--color-slate);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-8);
    max-width: 520px;
    margin-inline: auto;
}

.hero__actions {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
}

.hero__footnote {
    font-size: var(--font-size-sm);
    color: var(--color-slate);
    opacity: 0.55;
    margin-bottom: var(--space-16);
}

/* ── Hero App Mockup Panel ──────────────────────────────────────────────── */
.hero__mockup-wrap {
    max-width: 960px;
    margin-inline: auto;
    padding-inline: var(--gutter);
    position: relative;
    /* Start slightly scaled down — JS drives this to scale(1) on scroll */
    transform: scale(0.88);
    transform-origin: top center;
    will-change: transform;
    transition: transform 0.05s linear;
    /* tiny easing so it doesn't feel jittery */
}

/* Subtle gradient fade at the bottom of the mockup */
.hero__mockup-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, var(--color-surface) 100%);
    pointer-events: none;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.hero__app {
    background: var(--color-white);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: var(--shadow-modal);
    overflow: hidden;
    border: 1px solid var(--color-surface-2);
    border-bottom: none;
}

/* App chrome bar */
.app__chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-surface-2);
}

.app__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-surface-2);
}

/* App layout */
.app__body {
    display: flex;
    min-height: 380px;
}

.app__sidebar {
    width: 180px;
    background: var(--color-ink);
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.app__sidebar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-5);
    padding-inline: 8px;
}

.app__sidebar-logo-icon {
    width: 22px;
    height: 22px;
    background: var(--color-teal);
    border-radius: 6px;
    flex-shrink: 0;
}

.app__nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
}

.app__nav-item--active {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}

.app__nav-icon {
    width: 14px;
    height: 14px;
    background: currentColor;
    border-radius: 3px;
    opacity: 0.6;
    flex-shrink: 0;
}

.app__nav-label {
    height: 8px;
    flex: 1;
    background: currentColor;
    border-radius: 3px;
    opacity: 0.5;
}

.app__main {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--color-cloud);
}

.app__main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.app__heading-block {
    height: 18px;
    width: 160px;
    background: var(--color-ink);
    border-radius: 4px;
    opacity: 0.12;
}

.app__user-block {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-teal);
    opacity: 0.6;
}

.app__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.app__stat {
    background: var(--color-white);
    border-radius: 10px;
    padding: 14px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.app__stat-label {
    height: 8px;
    width: 60%;
    background: var(--color-slate);
    border-radius: 3px;
    opacity: 0.15;
    margin-bottom: 8px;
}

.app__stat-value {
    height: 18px;
    width: 80%;
    background: var(--color-ink);
    border-radius: 4px;
    opacity: 0.12;
    margin-bottom: 8px;
}

.app__stat-trend {
    height: 7px;
    width: 40%;
    border-radius: 3px;
    opacity: 0.5;
}

.app__stat--up .app__stat-trend {
    background: var(--color-success);
}

.app__stat--down .app__stat-trend {
    background: var(--color-error);
}

.app__sparkline {
    height: 32px;
    width: 100%;
    border-radius: 4px;
    background: linear-gradient(to right, var(--color-teal-10), transparent);
    margin-top: 6px;
}

.app__chart {
    background: var(--color-white);
    border-radius: 10px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.app__chart-header {
    height: 10px;
    width: 30%;
    background: var(--color-ink);
    border-radius: 3px;
    opacity: 0.12;
    margin-bottom: 16px;
}

.app__chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.app__bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--color-navy-10);
}

.app__bar--active {
    background: var(--color-teal);
    opacity: 0.6;
}

/* ── Social Proof Bar ───────────────────────────────────────────────────── */
.proof-bar {
    padding-block: var(--space-12);
}

.proof-bar .container {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    justify-content: center;
}

.proof-bar__label {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-slate);
    opacity: 0.55;
    white-space: nowrap;
}

.proof-bar__divider {
    width: 1px;
    height: 20px;
    background: var(--color-surface-2);
    flex-shrink: 0;
}

.proof-bar__logos {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    flex-wrap: wrap;
    justify-content: center;
}

.proof-logo {
    width: 80px;
    height: 20px;
    background: var(--color-slate);
    border-radius: 3px;
    opacity: 0.12;
}

/* ── Features Section ───────────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

.feature-card {
    background: var(--color-white);
    border: 1px solid var(--color-surface-2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}

.feature-card:hover {
    box-shadow: var(--shadow-raised);
    transform: translateY(-3px);
}

.feature-card__preview {
    height: 180px;
    background: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-surface-2);
    overflow: hidden;
    position: relative;
}

/* Mini UI previews inside feature cards */
.mini-ui {
    width: 80%;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-surface-2);
}

.mini-ui__row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid var(--color-surface);
}

.mini-ui__row:last-child {
    border-bottom: none;
}

.mini-ui__avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-teal-20);
    flex-shrink: 0;
}

.mini-ui__line {
    flex: 1;
    height: 7px;
    background: var(--color-surface-2);
    border-radius: 3px;
}

.mini-ui__tag {
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 9px;
    font-weight: 600;
    flex-shrink: 0;
}

.mini-ui__tag--green {
    background: rgba(26, 122, 74, 0.12);
    color: var(--color-success);
}

.mini-ui__tag--amber {
    background: rgba(184, 104, 0, 0.12);
    color: var(--color-warning);
}

/* Token colour swatches mini-UI */
.mini-tokens {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    width: 70%;
}

.mini-token {
    height: 36px;
    border-radius: 6px;
}

/* Subdomain mini-UI */
.mini-domains {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mini-domain {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-white);
    border-radius: 8px;
    padding: 8px 10px;
    border: 1px solid var(--color-surface-2);
    box-shadow: var(--shadow-sm);
}

.mini-domain__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mini-domain__line {
    flex: 1;
    height: 7px;
    background: var(--color-surface-2);
    border-radius: 3px;
}

.mini-domain__status {
    width: 40px;
    height: 7px;
    border-radius: 3px;
    flex-shrink: 0;
}

.feature-card__body {
    padding: var(--space-6);
}

.feature-card__title {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-ink);
    margin-bottom: var(--space-2);
}

.feature-card__text {
    font-size: var(--font-size-sm);
    color: var(--color-slate);
    line-height: var(--line-height-relaxed);
}

/* ── Tabbed Feature Detail ───────────────────────────────────────────────── */
.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-12);
    align-items: start;
    margin-top: var(--space-6);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    border: 1px solid var(--color-surface-2);
    box-shadow: var(--shadow-card);
}

.feature-tabs {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-tab {
    display: block;
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: background-color var(--transition-base);
    border-left: 2px solid transparent;
}

.feature-tab__title {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: #999;
    margin-bottom: 4px;
    transition: color var(--transition-base);
}

.feature-tab__desc {
    font-size: var(--font-size-sm);
    color: var(--color-slate);
    line-height: var(--line-height-relaxed);
    display: none;
}

.feature-tab.is-active {
    border-left-color: var(--color-teal);
    background: var(--color-surface);
}

.feature-tab.is-active .feature-tab__title {
    color: var(--color-ink);
}

.feature-tab.is-active .feature-tab__desc {
    display: block;
}

.feature-panel {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--color-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-panel__inner {
    width: 85%;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-raised);
    border: 1px solid var(--color-surface-2);
}

/* Panel variant A – token editor */
.panel-tokens {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.panel-token-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-token-swatch {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    flex-shrink: 0;
}

.panel-token-name {
    flex: 1;
    height: 9px;
    background: var(--color-surface-2);
    border-radius: 3px;
}

.panel-token-value {
    width: 60px;
    height: 9px;
    background: var(--color-surface);
    border-radius: 3px;
    border: 1px solid var(--color-surface-2);
}

/* Panel variant B – progress */
.panel-progress {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.panel-progress-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.panel-progress-label {
    display: flex;
    justify-content: space-between;
}

.panel-progress-label-text {
    height: 8px;
    width: 40%;
    background: var(--color-surface-2);
    border-radius: 3px;
}

.panel-progress-label-pct {
    height: 8px;
    width: 25px;
    background: var(--color-teal);
    border-radius: 3px;
    opacity: 0.5;
}

.panel-progress-track {
    height: 6px;
    background: var(--color-surface);
    border-radius: 3px;
    overflow: hidden;
}

.panel-progress-fill {
    height: 100%;
    background: var(--color-teal);
    border-radius: 3px;
    opacity: 0.6;
}

/* ── Bento Stats / Testimonials ─────────────────────────────────────────── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-4);
}

.bento-cell {
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    overflow: hidden;
}

/* Stat cell — red */
.bento-cell--stat-red {
    grid-column: span 3;
    background: var(--color-bento-red);
    color: var(--color-white);
}

/* Quote cell — dark */
.bento-cell--quote-dark {
    grid-column: span 5;
    background: var(--color-bento-dark);
    color: var(--color-white);
}

/* Stat cell — white */
.bento-cell--stat-white {
    grid-column: span 4;
    background: var(--color-white);
    border: 1px solid var(--color-surface-2);
}

/* Second row: small stat, metric, large quote */
.bento-cell--stat-sm {
    grid-column: span 3;
    background: var(--color-white);
    border: 1px solid var(--color-surface-2);
}

.bento-cell--metric {
    grid-column: span 3;
    background: var(--color-bento-blue);
    color: var(--color-white);
}

.bento-cell--quote-light {
    grid-column: span 6;
    background: var(--color-white);
    border: 1px solid var(--color-surface-2);
}

.bento__stat-number {
    font-size: 2.75rem;
    font-weight: var(--font-weight-bold);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-3);
}

.bento__stat-label {
    font-size: var(--font-size-sm);
    opacity: 0.8;
    line-height: 1.4;
}

.bento__quote {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-5);
}

.bento__author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.bento__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.bento__avatar--dark {
    background: rgba(255, 255, 255, 0.12);
}

.bento__author-name {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    opacity: 0.9;
}

.bento__author-role {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 1px;
}

/* Colours for white stat cells */
.bento-cell--stat-white .bento__stat-number,
.bento-cell--stat-sm .bento__stat-number {
    color: var(--color-ink);
}

.bento-cell--stat-white .bento__stat-label,
.bento-cell--stat-sm .bento__stat-label {
    color: var(--color-slate);
}

.bento-cell--quote-light .bento__quote {
    color: var(--color-ink);
}

.bento-cell--quote-light .bento__author-name,
.bento-cell--quote-light .bento__author-role {
    color: var(--color-slate);
    opacity: 1;
}

.bento-cell--quote-light .bento__avatar {
    background: var(--color-surface);
}

/* ── How It Works ───────────────────────────────────────────────────────── */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(16.67% + 27px);
    right: calc(16.67% + 27px);
    height: 1px;
    background: var(--color-surface-2);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
}

.step__number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1.5px solid var(--color-surface-2);
    color: var(--color-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.step__title {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-semibold);
    color: var(--color-ink);
}

.step__body {
    font-size: var(--font-size-sm);
    color: var(--color-slate);
    line-height: var(--line-height-relaxed);
}

/* ── CTA Section ─────────────────────────────────────────────────────────── */
.cta-section {
    padding-block: var(--space-24);
    text-align: center;
}

.cta-section .container {
    max-width: 640px;
}

.cta-mockup-wrap {
    max-width: 700px;
    margin-inline: auto;
    margin-bottom: var(--space-10);
}

.cta-mockup {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-modal);
    overflow: hidden;
    border: 1px solid var(--color-surface-2);
}

.cta-mockup__body {
    display: flex;
    height: 240px;
}

.cta-mockup__sidebar {
    width: 140px;
    background: var(--color-ink);
    flex-shrink: 0;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-mockup__logo {
    height: 14px;
    width: 80px;
    background: var(--color-teal);
    border-radius: 3px;
    opacity: 0.8;
    margin-bottom: var(--space-4);
}

.cta-mockup__nav-item {
    height: 7px;
    background: var(--color-white);
    border-radius: 3px;
    opacity: 0.12;
}

.cta-mockup__nav-item--active {
    opacity: 0.4;
    background: var(--color-teal);
}

.cta-mockup__main {
    flex: 1;
    background: var(--color-cloud);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-mockup__heading {
    height: 14px;
    width: 50%;
    background: var(--color-ink);
    border-radius: 4px;
    opacity: 0.12;
}

.cta-mockup__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.cta-mockup__card {
    background: var(--color-white);
    border-radius: 8px;
    height: 60px;
    box-shadow: var(--shadow-sm);
}

.cta-mockup__row {
    height: 8px;
    background: var(--color-slate);
    opacity: 0.1;
    border-radius: 3px;
}

.cta-mockup__row--short {
    width: 60%;
}

.cta-section__logo {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-6);
}

.cta-logo-icon {
    width: 52px;
    height: 52px;
    background: var(--color-teal);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    font-size: var(--font-size-h4);
}

.cta-section__title {
    font-size: var(--font-size-h2);
    color: var(--color-ink);
    margin-bottom: var(--space-4);
    letter-spacing: -0.025em;
}

.cta-section__body {
    font-size: var(--font-size-base);
    color: var(--color-slate);
    margin-bottom: var(--space-8);
    opacity: 0.75;
}

.cta-section__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}



/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-detail {
        grid-template-columns: 1fr;
    }

    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .bento-cell--stat-red {
        grid-column: span 3;
    }

    .bento-cell--quote-dark {
        grid-column: span 3;
    }

    .bento-cell--stat-white {
        grid-column: span 6;
    }

    .bento-cell--stat-sm {
        grid-column: span 3;
    }

    .bento-cell--metric {
        grid-column: span 3;
    }

    .bento-cell--quote-light {
        grid-column: span 6;
    }

    .app__sidebar {
        width: 140px;
    }
}

@media (max-width: 768px) {
    .hero__headline {
        font-size: 2.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-detail {
        padding: var(--space-6);
    }

    .steps {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .steps::before {
        display: none;
    }

    .step {
        flex-direction: row;
        align-items: flex-start;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento-cell--stat-red,
    .bento-cell--quote-dark,
    .bento-cell--stat-white,
    .bento-cell--stat-sm,
    .bento-cell--metric {
        grid-column: span 1;
    }

    .bento-cell--quote-light {
        grid-column: span 2;
    }

    .proof-bar .container {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }

    .proof-bar__divider {
        display: none;
    }

    .app__sidebar {
        display: none;
    }
}

@media (max-width: 480px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-cell--stat-red,
    .bento-cell--quote-dark,
    .bento-cell--stat-white,
    .bento-cell--stat-sm,
    .bento-cell--metric,
    .bento-cell--quote-light {
        grid-column: span 1;
    }
}

/* ==========================================================================
   Logo marquee (Salix-style)
   ========================================================================== */

.logo-marquee-section {
    padding: var(--space-12) 0 var(--space-10);
    background: transparent;
    overflow: hidden;
}

.logo-marquee__label {
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-ink);
    opacity: 0.7;
    margin-bottom: var(--space-6);
}

/* Centred window — logos scroll inside it */
.logo-marquee {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

/* JS sets transform; no CSS animation here */
.logo-marquee__track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    will-change: transform;
}

.logo-marquee__item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.logo-marquee__item:hover {
    opacity: 1;
}

/* All SVGs the same rendered height */
.logo-marquee__item svg {
    height: 32px;
    width: auto;
    display: block;
}

.logo-marquee__item--placeholder {
    cursor: default;
}

/* ==========================================================================
   Mobile overrides — hero spacing + marquee containment
   ========================================================================== */

@media (max-width: 768px) {

  /* Reduce the gap between the navbar and the hero kicker on mobile */
  .hero {
    padding-top: var(--space-10);
  }

  /* Ensure the marquee can't escape its section on narrow viewports */
  .logo-marquee-section {
    overflow: hidden;
  }

  .logo-marquee {
    max-width: 100%;
  }
}
