/* Brand chrome: lockup, split hero, process, footer, Insights, legal.
   Loaded after styles.css. Tokens live on :root in styles.css. */

.btn-accent {
    background: var(--color-lime);
    color: var(--color-lime-ink);
    border-color: var(--color-lime);
}

.btn-accent:hover {
    background: var(--color-lime-deep);
    border-color: var(--color-lime-deep);
    color: var(--color-lime-ink);
}

/* ─── Lockup ─── */
.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--color-ink);
    text-decoration: none;
    min-width: 0;
}

.brand-mark {
    display: block;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 3px;
    overflow: hidden;
}

.brand-wordmark {
    font-family: var(--font-ui);
    font-size: 1.05rem;
    font-weight: 650;
    letter-spacing: 0.16em;
    line-height: 1;
}

.brand-lockup__rule {
    display: block;
    width: 1px;
    height: 1.1rem;
    background: rgba(17, 17, 17, 0.22);
    flex-shrink: 0;
}

.brand-tagline {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-ink-secondary);
    white-space: nowrap;
}

@media (max-width: 980px) {
    .header .brand-lockup__rule,
    .header .brand-tagline {
        display: none;
    }
}

/* ─── Header ─── */
.header--brand {
    background: var(--theme-header-bg);
}

.header--brand .nav-container {
    padding: 14px 32px;
    max-width: 1280px;
}

.header--brand .btn-nav-login {
    display: none;
}

.header--brand .btn-nav-account {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4375rem 0.5rem;
    background: var(--theme-header-toggle-bg);
    border: 1px solid var(--theme-header-toggle-border);
    border-radius: 8px;
    color: var(--color-ink);
    text-decoration: none;
    flex-shrink: 0;
    line-height: 0;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header--brand .btn-nav-account:hover {
    background: var(--theme-header-hover-bg-strong);
    border-color: var(--theme-header-border-scrolled);
    color: var(--color-ink);
}

.header--brand .btn-nav-account svg {
    display: block;
}

.header--brand .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.header--brand .brand-lockup {
    transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.header--brand .btn-nav-cta {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    max-width: none;
    padding: 0.55rem 0.95rem;
    margin: 0;
    overflow: visible;
    border-radius: 2px;
    background: var(--btn-primary-bg);
    color: var(--btn-primary-fg);
    border-color: var(--btn-primary-bg);
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.header--brand .btn-nav-cta:hover {
    background: var(--btn-primary-bg-hover);
    color: var(--btn-primary-fg);
}

.header--brand .brand-lockup:hover {
    opacity: 0.72;
}

.header--brand .nav-plain-link,
.header--brand .nav-menu a {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 0.7rem;
    border-radius: 0;
    color: var(--color-ink);
    background: transparent;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0 1px;
    background-position: 50% 100%;
    background-repeat: no-repeat;
    text-decoration: none;
    transition:
        color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background-size 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.header--brand .nav-plain-link:hover,
.header--brand .nav-menu a:hover {
    background-color: transparent;
    color: var(--color-ink);
    text-decoration: none;
    background-size: calc(100% - 1.4rem) 1px;
}

.header--brand .nav-mobile-toggle span {
    background: var(--theme-header-toggle-icon);
}

.header--brand .lang-trigger {
    color: var(--color-ink);
}

.header--brand .lang-menu {
    background: #fff;
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.1);
}

.header--brand .lang-option {
    color: var(--color-ink);
}

.header--brand .lang-option:hover,
.header--brand .lang-option.active {
    background: var(--color-surface-muted);
    color: var(--color-ink);
}

@media (max-width: 1100px) {
    .header--brand .nav-menu {
        background: #fff;
        color: var(--color-ink);
    }

    .header--brand .nav-menu > li {
        border-bottom-color: var(--color-border);
    }

    .header--brand .btn-nav-account {
        align-self: flex-start;
        width: auto;
    }
}

/* Simple four-link bar stays inline longer than the old mega menu. */
@media (min-width: 861px) {
    .header--brand .nav-mobile-toggle {
        display: none;
    }

    .header--brand .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background: transparent;
        padding: 0;
        overflow: visible;
    }

    .header--brand .nav-menu > li {
        border-bottom: 0;
    }

    .header--brand .nav-menu > li > a {
        width: auto;
        padding: 0.45rem 0.7rem;
        font-size: 0.6875rem;
    }
}

/* ─── Split hero ─── */
.brand-hero {
    position: relative;
    margin: 0;
    padding: 0;
    background: #d7dbe0;
}

.brand-hero__sky,
.brand-hero__sea {
    position: relative;
    min-height: 78vh;
    overflow: hidden;
}

.brand-hero__slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.brand-hero__slide {
    position: absolute;
    inset: 0;
    display: block;
    margin: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.brand-hero__slide.is-active {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .brand-hero__slide {
        transition: none;
    }
}

.brand-hero__sea > picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.brand-hero__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.brand-hero__sea .brand-hero__photo {
    object-position: center 55%;
}

.brand-hero__sky-content,
.brand-hero__sea-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 78vh;
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 40px;
    padding-top: 7.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-hero__sky-content {
    border-left-color: rgba(17, 17, 17, 0.12);
    border-right-color: rgba(17, 17, 17, 0.12);
}

.brand-hero__sky::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(247, 247, 245, 0.18) 0%, rgba(247, 247, 245, 0.08) 40%, rgba(247, 247, 245, 0.42) 100%);
    z-index: 1;
    pointer-events: none;
}

.brand-hero__sea::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 20, 22, 0.18) 0%, rgba(7, 20, 22, 0.38) 50%, rgba(7, 20, 22, 0.62) 100%);
    z-index: 1;
    pointer-events: none;
}

.brand-hero__copy {
    max-width: 38rem;
}

.brand-hero__headline {
    margin: 0 0 1.15rem;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.6vw, 3.35rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #111;
}

.brand-hero__headline strong {
    font-weight: 650;
}

.brand-hero__lead {
    margin: 0 0 1.6rem;
    max-width: 32rem;
    font-size: 1.02rem;
    line-height: 1.55;
    color: #2a2a2a;
}

.brand-hero__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}

.brand-hero__micro {
    margin: 0;
    padding: 0.38rem 0.8rem 0.38rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.35;
    color: var(--color-ink);
    background: rgba(247, 247, 245, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 4px solid var(--color-lime);
    border-radius: 0 2px 2px 0;
    box-shadow: 0 8px 22px rgba(17, 17, 17, 0.1);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

@media (prefers-reduced-transparency: reduce) {
    .brand-hero__micro {
        background: var(--color-surface-canvas);
        border-color: var(--color-accent-soft);
        border-left-color: var(--color-lime);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
    }
}

.brand-hero__sea,
.brand-hero__sea-content {
    min-height: 54vh;
}

.brand-hero__sea-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "main gauge";
    align-items: end;
    column-gap: 3.5rem;
    row-gap: 2rem;
    color: #fff;
    padding: 4.5rem 40px 3.75rem;
}

.brand-hero__gauge {
    grid-area: gauge;
    display: flex;
    gap: 0.7rem;
    align-items: stretch;
    min-height: 16rem;
}

.brand-hero__sea-main {
    grid-area: main;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.85rem;
    min-width: 0;
    max-width: 38rem;
}

.brand-hero__sea-copy {
    max-width: 36rem;
}

.brand-hero__sea-headline {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.95rem, 3.4vw, 2.75rem);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
}

.brand-hero__sea-lead {
    margin: 0.85rem 0 0;
    max-width: 32rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.brand-hero__sea-board {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    align-items: end;
    gap: 2rem 2.75rem;
    width: 100%;
    min-width: 0;
}

.brand-hero__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 2rem;
}

.brand-hero__metric {
    min-width: 0;
}

.brand-hero__metric-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 550;
    letter-spacing: -0.03em;
    line-height: 1.05;
    font-variant-numeric: tabular-nums;
}

.brand-hero__metric-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.brand-hero__metric-label--accent {
    color: var(--color-lime);
}

.brand-hero__layers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.brand-hero__gauge-track {
    position: relative;
    width: 1px;
    background: rgba(255, 255, 255, 0.28);
}

.brand-hero__gauge-track::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-lime);
    box-shadow: 0 0 0 0 rgba(212, 240, 87, 0.45);
}

.brand-hero__gauge-track::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 0;
    background: linear-gradient(180deg, var(--color-lime) 0%, rgba(212, 240, 87, 0) 100%);
}

.brand-hero__gauge-scale {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    min-width: 5.5rem;
}

.brand-hero__gauge-scale span {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

.brand-hero__gauge-scale em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.88);
}

/* ─── Process ─── */
.brand-process {
    background: var(--color-surface);
    padding: 0;
}

.brand-process .container {
    border-left-color: var(--color-border);
    border-right-color: var(--color-border);
}

.brand-process__title {
    margin: 0 0 2.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.4vw, 2.5rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--color-ink);
}

.brand-process__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 2rem;
}

.brand-process__step {
    min-width: 0;
}

.brand-process__head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 1.1rem;
    min-height: 1.25rem;
}

.brand-process__num {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    color: var(--color-ink-muted);
    font-variant-numeric: tabular-nums;
}

.brand-process__name {
    margin: 0;
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 650;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-ink);
}

.brand-process__rail {
    flex: 1 1 auto;
    min-width: 1.25rem;
    height: 1px;
    margin: 0 -1.25rem 0 0.2rem;
    background: var(--color-border);
    position: relative;
}

.brand-process__rail::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-right: 1px solid var(--color-ink-muted);
    border-top: 1px solid var(--color-ink-muted);
    transform: translateY(-50%) rotate(45deg);
}

.brand-process__q {
    margin: 0;
    max-width: 20rem;
    font-size: 1.0625rem;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--color-ink);
}

.brand-process__hint {
    margin: 0.5rem 0 0;
    max-width: 20rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-ink-secondary);
}

/* ─── Content sections on the start page ─── */
.lp-start .lp-start-section,
.lp-start .lq-section {
    padding: 0;
}

.lp-start .lp-start-section .container,
.lp-start .lq-section .container,
.lp-start .trust-logos .container {
    border-left-color: var(--color-border);
    border-right-color: var(--color-border);
}

.lp-start .lp-start-step,
.lp-start .lp-start-phase,
.lp-start .lp-start-kpi,
.lp-start .lp-start-panel,
.lp-start .lp-start-choice label {
    border-radius: 2px;
}

.lp-start .lp-start-step__num {
    border-radius: 2px;
}

.lp-start .trust-logos {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.lp-start .lq-section--cta {
    background: var(--color-teal-deep);
    color: #fff;
    border-top: 0 !important;
}

.lp-start .lq-section--cta h2,
.lp-start .lq-section--cta p,
.lp-start .lq-cta-final h2,
.lp-start .lq-cta-final p {
    color: #fff;
}

.lp-start .lq-section--cta .btn-primary {
    background: var(--color-lime);
    color: #111;
    border-color: var(--color-lime);
}

.lp-start #faq {
    background: var(--color-surface-muted);
}

.lp-start .lq-faq {
    gap: 0.75rem;
}

.lp-start .lq-faq__item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-lime);
    border-radius: 2px;
    box-shadow: 0 2px 0 rgba(17, 17, 17, 0.04);
}

.lp-start .lq-faq__item summary,
.lp-start .lq-section__title {
    color: var(--color-ink);
}

.lp-start .lq-faq__item summary {
    font-size: 1.0625rem;
    letter-spacing: -0.015em;
}

.lp-start .lq-faq__item summary:hover {
    color: var(--color-ink);
}

.lp-start .lq-faq__item summary::after {
    width: 2rem;
    height: 2rem;
    border-radius: 2px;
    background-color: var(--color-lime);
}

.lp-start .lq-faq__item summary:hover::after {
    background-color: var(--color-lime-deep);
}

.lp-start .lq-faq__item[open] {
    background: var(--color-accent-soft);
    border-color: var(--color-ink);
    border-left-color: var(--color-lime);
    box-shadow: 0 12px 32px rgba(17, 17, 17, 0.1);
}

.lp-start .lq-faq__item[open] summary::after {
    background-color: var(--color-ink);
}

.lp-start .lq-faq__item p {
    color: var(--color-ink-secondary);
    border-top-color: rgba(17, 17, 17, 0.1);
}

.lp-start .lq-input,
.lp-start .lp-start-select {
    border-color: var(--color-border);
    border-radius: 2px;
    color: var(--color-ink);
}

.lp-start .lq-input:focus,
.lp-start .lp-start-select:focus {
    border-color: var(--color-ink);
    box-shadow: 0 0 0 3px var(--color-accent-muted);
}

.lp-start input[type="checkbox"],
.lp-start input[type="radio"] {
    accent-color: var(--color-ink);
}

/* ─── Footer ─── */
.footer--brand {
    background: #fff;
    color: var(--color-ink);
    border-top: 1px solid var(--color-border);
}

.footer--brand .container {
    border-left: 0;
    border-right: 0;
}

.footer--brand .footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem 2rem;
    padding: 1.75rem 0 1.25rem;
}

.footer--brand .footer-brand {
    display: flex;
    align-items: center;
    min-width: 0;
}

.footer--brand .footer-logo-link {
    margin: 0;
}

.footer--brand .footer-mantra,
.footer--brand .footer-tagline {
    margin: 0;
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-ink-secondary);
}

.footer--brand .footer-made {
    margin: 0;
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-ink-muted);
}

.footer--brand .footer-col {
    display: none;
}

.footer--brand .footer-bottom {
    border-top: 1px solid var(--color-border);
}

.footer--brand .footer-copyright,
.footer--brand .footer-meta,
.footer--brand .footer-bottom-links a {
    color: var(--color-ink-muted);
}

.footer--brand .footer-version-badge {
    background: var(--color-surface-muted);
    color: var(--color-ink-secondary);
}

.footer--brand .brand-lockup {
    color: var(--color-ink);
}

/* ─── Legal: teal hero, clean white body ─── */
.legal-page {
    background: var(--color-surface-canvas);
}

.legal-page .legal-hero {
    background-color: var(--color-teal-deep);
    background-image:
        radial-gradient(ellipse 70% 80% at 8% 12%, rgba(22, 52, 60, 0.95) 0%, transparent 58%),
        radial-gradient(ellipse 55% 70% at 96% 88%, rgba(12, 42, 48, 0.88) 0%, transparent 52%),
        linear-gradient(158deg, #071416 0%, #0c2a30 44%, #16343c 76%, #071416 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-page .legal-hero::before {
    display: block;
    inset: 0;
    background:
        radial-gradient(ellipse 42% 38% at 14% 26%, rgba(212, 240, 87, 0.1) 0%, transparent 62%),
        radial-gradient(ellipse 38% 42% at 86% 72%, rgba(91, 140, 148, 0.16) 0%, transparent 58%);
    filter: none;
    animation: none;
}

.legal-page .legal-hero::after {
    display: block;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 40%, rgba(7, 20, 22, 0.32) 100%);
}

.legal-page .legal-hero h1 {
    color: #fff;
    text-shadow: none;
    font-weight: 550;
}

.legal-page .legal-hero .legal-updated {
    color: rgba(255, 255, 255, 0.68);
}

.legal-page .legal-hero .container {
    border-left-color: rgba(255, 255, 255, 0.14);
    border-right-color: rgba(255, 255, 255, 0.14);
}

.legal-page .legal-section,
.legal-page .legal-notice {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
}

.legal-page .legal-section h2,
.legal-page .legal-content h1,
.legal-page .legal-content h2,
.legal-page .legal-content h3 {
    color: var(--color-ink);
}

.legal-page .legal-lead,
.legal-page .legal-content p,
.legal-page .legal-content li,
.legal-page .legal-dl dd,
.legal-page .legal-address {
    color: var(--color-ink-secondary);
}

.legal-page .legal-dl dt,
.legal-page .legal-updated {
    color: var(--color-ink-muted);
}

.legal-page .legal-content a {
    color: var(--color-ink);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.legal-page .legal-main > .container {
    border-left-color: rgba(17, 17, 17, 0.12);
    border-right-color: rgba(17, 17, 17, 0.12);
}

/* ─── Insights: underwater dark ─── */
.insight-page {
    background: var(--color-teal-deep);
}

.insight-page .legal-hero,
.insight-page .insight-hero {
    background-color: var(--color-teal-deep);
    background-image: url('images/keel-hero-underwater.webp');
    background-size: cover;
    background-position: center 40%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.insight-page .legal-hero::before {
    display: block;
    background: linear-gradient(180deg, rgba(7, 20, 22, 0.35) 0%, rgba(7, 20, 22, 0.72) 100%);
    filter: none;
    animation: none;
    inset: 0;
}

.insight-page .legal-hero::after {
    display: none;
}

.insight-page .legal-hero h1,
.insight-page .insight-intro,
.insight-page .insight-crumb,
.insight-page .insight-crumb a {
    color: #fff;
    text-shadow: none;
}

.insight-page .insight-intro,
.insight-page .insight-crumb {
    color: rgba(255, 255, 255, 0.78);
}

.insight-page .insight-chips li {
    border-color: rgba(212, 240, 87, 0.28);
    color: var(--color-lime);
    background: rgba(7, 20, 22, 0.35);
}

.insight-page .insight-body {
    color: rgba(232, 240, 242, 0.88);
}

.insight-page.legal-page .legal-main > .container.insight-body {
    border-left-color: rgba(255, 255, 255, 0.14);
    border-right-color: rgba(255, 255, 255, 0.14);
}

.insight-page .insight-section,
.insight-page .insight-card {
    background: rgba(12, 32, 36, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
}

.insight-page .insight-section h2,
.insight-page .insight-card h2 {
    color: #fff;
}

.insight-page .insight-section p,
.insight-page .insight-section li,
.insight-page .insight-card p {
    color: rgba(232, 240, 242, 0.78);
}

.insight-page .insight-card__shape,
.insight-page .insight-links a {
    color: var(--color-lime);
}

.insight-page .insight-card:hover {
    border-color: var(--color-lime);
}

.insight-page .insight-cta {
    background: #111;
    border-radius: 2px;
}

.insight-page .insight-cta .btn-primary,
.insight-page .insight-hero-cta {
    background: var(--color-lime);
    color: #111;
    border-color: var(--color-lime);
}

.insight-page .insight-hero-cta:hover {
    background: var(--color-lime-deep);
    color: #111;
    border-color: var(--color-lime-deep);
}

.insight-page .footer--brand {
    background: #071416;
    border-top-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.insight-page .footer--brand .brand-lockup,
.insight-page .footer--brand .brand-wordmark,
.insight-page .footer--brand .brand-tagline,
.insight-page .footer--brand .footer-mantra,
.insight-page .footer--brand .footer-tagline,
.insight-page .footer--brand .footer-made,
.insight-page .footer--brand .footer-copyright,
.insight-page .footer--brand .footer-bottom-links a {
    color: rgba(255, 255, 255, 0.78);
}

.insight-page .footer--brand .brand-lockup__rule {
    background: rgba(255, 255, 255, 0.22);
}

.insight-page .footer--brand .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
}

/* ─── Responsive ─── */
@media (max-width: 1180px) {
    .brand-hero__sea-main {
        max-width: none;
    }
}

@media (max-width: 900px) {
    .brand-hero__sky,
    .brand-hero__sea,
    .brand-hero__sky-content {
        min-height: auto;
    }

    .brand-hero__sky-content {
        padding: calc(6.5rem + env(safe-area-inset-top, 0px)) 20px 3rem;
    }

    .brand-hero__sea-content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "gauge";
        min-height: auto;
        padding: 2.75rem 20px 3rem;
    }

    .brand-hero__layers {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.45rem 0.9rem;
    }

    .brand-hero__gauge {
        min-height: 10rem;
    }

    .brand-process__steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .brand-process__rail {
        display: none;
    }

    .brand-process__q,
    .brand-process__hint {
        max-width: none;
    }

    .footer--brand .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .brand-hero__sea-board {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }

    .header--brand .nav-container {
        padding: 12px 16px;
    }

    .header--brand .btn-nav-cta {
        display: none;
    }

    .header--scrolled.header--brand .btn-nav-cta {
        display: inline-flex;
        font-size: 0;
        letter-spacing: 0;
        padding: 0.5rem 0.65rem;
    }

    .header--scrolled.header--brand .btn-nav-cta::after {
        content: '→';
        font-size: 0.875rem;
        letter-spacing: 0;
    }
}

/* ─── Motion: hero, process, chrome ─── */
@media (prefers-reduced-motion: no-preference) {
    .lp-start .brand-hero__headline,
    .lp-start .brand-hero__lead,
    .lp-start .brand-hero__cta {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
        filter: blur(6px);
        animation: keelRiseIn 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .lp-start .brand-hero__headline {
        animation-delay: 0.18s;
    }

    .lp-start .brand-hero__lead {
        animation-delay: 0.54s;
    }

    .lp-start .brand-hero__cta {
        animation-delay: 0.7s;
    }

    .lp-start .btn,
    .lp-start .btn-nav-cta {
        transition:
            transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
            background-color 0.3s ease,
            border-color 0.3s ease,
            color 0.3s ease,
            box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .lp-start .btn:hover,
    .lp-start .header--brand .btn-nav-cta:hover {
        transform: scale(1.025);
        box-shadow: 0 10px 28px rgba(17, 17, 17, 0.12);
    }

    .lp-start .btn:active,
    .lp-start .header--brand .btn-nav-cta:active {
        transform: scale(0.975);
        box-shadow: none;
    }

    .lp-start .brand-hero__sea.is-awake .brand-hero__gauge-track::before {
        animation: keelGaugeDot 1.35s cubic-bezier(0.16, 1, 0.3, 1) forwards,
            keelGaugePulse 2.8s ease-in-out 1.4s infinite;
    }

    .lp-start .brand-hero__sea.is-awake .brand-hero__gauge-track::after {
        animation: keelGaugeFill 1.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .lp-start .brand-process__rail {
        transform: scaleX(0);
        transform-origin: left center;
        transition: transform 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.28s;
    }

    .lp-start .brand-process__step.is-visible .brand-process__rail {
        transform: scaleX(1);
    }

    .lp-start .brand-process__num {
        transition: color 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
    }

    .lp-start .brand-process__step.is-visible .brand-process__num {
        color: var(--color-ink);
    }

    .lp-start .scroll-reveal {
        --reveal-y: 20px;
        --reveal-blur: 3px;
        --reveal-duration: 1.05s;
    }
}

@keyframes keelRiseIn {
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

@keyframes keelGaugeDot {
    from {
        top: 0;
    }
    to {
        top: 28%;
    }
}

@keyframes keelGaugeFill {
    from {
        height: 0;
    }
    to {
        height: 28%;
    }
}

@keyframes keelGaugePulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 240, 87, 0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(212, 240, 87, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-start .btn:hover,
    .lp-start .btn:active,
    .lp-start .header--brand .btn-nav-cta:hover {
        transform: none;
        box-shadow: none;
    }
}
