/*
   Nova Taurus
   Skunkworks R&D homepage v1
*/

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

:root {
    --bg-primary: #090a0c;
    --bg-secondary: #0f1114;
    --bg-card: #14181d;
    --bg-card-hover: #1a1f25;

    --text-primary: #eceef1;
    --text-secondary: #a5adb8;
    --text-muted: #6a7380;

    --accent: #ff6b00;
    --accent-soft: rgba(255, 107, 0, 0.1);
    --accent-strong: rgba(255, 107, 0, 0.22);

    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.15);

    --status-strong: #ffb074;
    --status-medium: #ff9642;
    --status-neutral: #b8c0cb;

    --font-body: 'Manrope', -apple-system, sans-serif;
    --font-display: 'Space Grotesk', 'Arial Narrow', sans-serif;

    --container: 1140px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.nav.scrolled {
    background: rgba(9, 10, 12, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1rem clamp(1.25rem, 5vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-wordmark {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.nav-wordmark-accent {
    color: var(--accent);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}

.show-mobile {
    display: none !important;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid var(--border);
    padding: 0.5rem 0 1.15rem;
}

.mobile-link {
    display: block;
    padding: 0.8rem clamp(1.25rem, 5vw, 3rem);
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.2s ease, background 0.2s ease;
}

.mobile-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.mobile-cta {
    margin: 0.75rem clamp(1.25rem, 5vw, 3rem) 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #090909;
    box-shadow: 0 0 20px var(--accent-soft);
}

.btn-primary:hover {
    background: #ea6200;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--accent-strong);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.33);
    background: rgba(255, 255, 255, 0.04);
}

.btn-sm {
    padding: 0.55rem 1.15rem;
    font-size: 0.78rem;
}

.btn-full {
    width: 100%;
}

/* ===== COMMON SECTIONS ===== */
.section {
    padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.section-header {
    max-width: 760px;
    margin-bottom: 2.6rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.4vw, 2.55rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 3.5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-primary);
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 20% 15%, rgba(255, 107, 0, 0.09) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 84% 65%, rgba(109, 150, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 10% 90%, rgba(255, 107, 0, 0.04) 0%, transparent 70%);
}

.hero-mesh::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 75% at 50% 35%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 75% at 50% 35%, black, transparent);
}

.hero-schematic {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 107, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.02) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: radial-gradient(ellipse 60% 65% at 75% 20%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 65% at 75% 20%, black, transparent);
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.2rem;
    align-items: end;
}

.hero-content {
    max-width: 680px;
}

.hero-eyebrow {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.1rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.15s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.8vw, 2.9rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.75vw, 1.14rem);
    color: var(--text-secondary);
    line-height: 1.72;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0;
    animation: fadeUp 0.8s 0.45s forwards;
}

.hero-ctas {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-cta-note {
    margin-top: 0.8rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    opacity: 0;
    animation: fadeUp 0.8s 0.72s forwards;
}

.mission-frame {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.04), rgba(20, 24, 29, 0.9));
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(6px);
}

.frame-header {
    font-family: var(--font-display);
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.frame-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.frame-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.frame-list {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 0.9rem;
}

.frame-item {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
    padding: 0.35rem 0 0.35rem 1rem;
    position: relative;
}

.frame-item::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    left: 0;
    top: 0.82rem;
    background: var(--accent);
}

.hero-ledger {
    margin-top: 2.2rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(15, 17, 20, 0.78);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ledger-item {
    padding: 1rem 1.15rem;
}

.ledger-item + .ledger-item {
    border-left: 1px solid var(--border);
}

.ledger-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.67rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.ledger-value {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

/* ===== PRESS BAR ===== */
.press-bar {
    padding: 2.2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
}

.press-bar-header {
    max-width: 780px;
    margin: 0 auto 1rem;
    text-align: center;
}

.press-bar-label {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 0.55rem;
}

.press-bar-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.press-release-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem 0.95rem;
    margin-bottom: 0;
}

.press-release-link {
    font-family: var(--font-display);
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-color: rgba(236, 238, 241, 0.35);
    text-underline-offset: 0.2em;
    transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.press-release-link:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

.press-release-source {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.25s ease;
}

.press-release-source:hover {
    color: var(--text-primary);
}

.press-release-meta {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .press-bar-note {
        font-size: 0.84rem;
    }

    .press-release-meta {
        flex-basis: 100%;
        text-align: center;
    }

    .press-release-link {
        font-size: 0.9rem;
    }

    .press-release-source {
        font-size: 0.68rem;
    }
}

/* ===== POSITIONING ===== */
.positioning {
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.positioning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.positioning-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    padding: 1.45rem;
}

.positioning-title {
    font-family: var(--font-display);
    font-size: 1.02rem;
    color: var(--text-primary);
    margin-bottom: 0.62rem;
}

.positioning-copy {
    font-size: 0.89rem;
    color: var(--text-secondary);
    line-height: 1.67;
}

.positioning-list {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 0.72rem;
    margin-bottom: 0.85rem;
}

.positioning-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.58;
    padding: 0.35rem 0 0.35rem 1rem;
    position: relative;
}

.positioning-list li::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    left: 0;
    top: 0.84rem;
    background: var(--accent);
}

.positioning-note {
    font-size: 0.81rem;
    color: var(--text-muted);
}

/* ===== FLAGSHIP PROOF ===== */
.flagship-proof {
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.proof-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.proof-story,
.proof-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.6rem;
}

.proof-story p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.95rem;
}

.proof-story p:last-of-type {
    margin-bottom: 1.2rem;
}

.proof-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.proof-block-title {
    font-family: var(--font-display);
    font-size: 1.04rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.9rem;
}

.proof-list {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 0.8rem;
}

.proof-list li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0.45rem 0 0.45rem 1rem;
    position: relative;
}

.proof-list li::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    left: 0;
    top: 0.95rem;
    background: var(--accent);
}

.proof-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.2rem;
}

.proof-metric {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    padding: 1.5rem;
}

.metric-kicker {
    display: inline-block;
    margin-bottom: 0.7rem;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--accent);
}

.metric-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
    margin-bottom: 0.7rem;
}

.metric-desc {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.proof-note {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.composite-case {
    margin-top: 1rem;
    border: 1px solid rgba(255, 107, 0, 0.28);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.07), rgba(20, 24, 29, 0.92));
    padding: 1.4rem;
}

.composite-kicker {
    font-family: var(--font-display);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.composite-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0.55rem;
    line-height: 1.35;
}

.composite-copy {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0.8rem;
}

.composite-list {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 0.7rem;
    margin-bottom: 0.8rem;
}

.composite-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.58;
    padding: 0.35rem 0 0.35rem 1rem;
    position: relative;
}

.composite-list li::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    left: 0;
    top: 0.82rem;
    background: var(--accent);
}

.composite-note {
    font-size: 0.77rem;
    color: var(--text-muted);
}

/* ===== PIPELINE ===== */
.pipeline {
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
}

.pipeline-header {
    margin-bottom: 1.9rem;
}

.pipeline-updated {
    margin-top: 0.8rem;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.pipeline-board {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.pipeline-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.22s ease;
}

.pipeline-item:hover {
    border-color: var(--border-strong);
}

.pipeline-status {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.62rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    border: 1px solid transparent;
}

.status-in-field {
    color: var(--status-strong);
    border-color: rgba(255, 107, 0, 0.34);
    background: rgba(255, 107, 0, 0.14);
}

.status-prototype {
    color: var(--status-medium);
    border-color: rgba(255, 107, 0, 0.24);
    background: rgba(255, 107, 0, 0.1);
}

.status-research {
    color: var(--status-neutral);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

.status-pilot {
    color: var(--status-neutral);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

.pipeline-title {
    font-family: var(--font-display);
    font-size: 1.04rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.pipeline-summary {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.pipeline-note {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.pipeline-actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ===== ENGAGE ===== */
.engage {
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}

.engage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.engage-fit {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.fit-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    padding: 1.3rem;
}

.fit-label {
    font-family: var(--font-display);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.65rem;
}

.fit-list {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 0.7rem;
}

.fit-list li {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.56;
    padding: 0.35rem 0 0.35rem 1rem;
    position: relative;
}

.fit-list li::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    left: 0;
    top: 0.86rem;
    background: var(--accent);
}

.engage-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    padding: 1.55rem;
    display: flex;
    flex-direction: column;
}

.engage-card-label {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.7rem;
}

.engage-card-title {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.55rem;
}

.engage-card-copy {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.68;
    margin-bottom: 1rem;
}

.engage-list {
    list-style: none;
    border-top: 1px solid var(--border);
    padding-top: 0.8rem;
    margin-bottom: 1.2rem;
    flex: 1;
}

.engage-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.58;
    padding: 0.4rem 0 0.4rem 1rem;
    position: relative;
}

.engage-list li::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    left: 0;
    top: 0.9rem;
    background: var(--accent);
}

.engage-actions {
    margin-top: auto;
}

.contact-methods {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-intro {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.contact-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    padding: 1.2rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    transition: border-color 0.22s ease, transform 0.22s ease;
}

.contact-card:hover {
    border-color: rgba(255, 107, 0, 0.35);
    transform: translateY(-2px);
}

.contact-primary {
    border-color: rgba(255, 107, 0, 0.25);
    background: rgba(255, 107, 0, 0.05);
}

.contact-label {
    font-family: var(--font-display);
    font-size: 0.64rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    padding: 2.6rem 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.75rem;
    margin-bottom: 1.75rem;
}

.footer-left {
    max-width: 360px;
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.2rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== REVEAL + MOTION ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1060px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .mission-frame {
        max-width: 560px;
    }

    .hero-ledger {
        grid-template-columns: 1fr;
    }

    .ledger-item + .ledger-item {
        border-left: none;
        border-top: 1px solid var(--border);
    }

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

    .proof-metrics {
        grid-template-columns: 1fr;
    }

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

    .pipeline-board {
        grid-template-columns: 1fr;
    }

    .engage-grid,
    .engage-fit,
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .show-mobile {
        display: flex !important;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .mobile-menu.open {
        display: flex !important;
    }

    .hero {
        min-height: auto;
        padding: 7rem 0 2.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn,
    .proof-actions .btn,
    .pipeline-actions .btn {
        width: 100%;
    }

    .section {
        padding: 4.2rem 0;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.95rem;
    }

    .section-title {
        font-size: 1.38rem;
    }

    .proof-story,
    .proof-panel,
    .proof-metric,
    .positioning-card,
    .composite-case,
    .pipeline-item,
    .engage-card,
    .contact-card {
        padding: 1.2rem;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-eyebrow,
    .hero-title,
    .hero-subtitle,
    .hero-ctas {
        opacity: 1;
        animation: none;
    }

    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

html {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
}
