/* ============================================================
   FUTURE POINT — Design Tokens & Styles
   ============================================================ */

:root {
    /* Palette — anchored to the logo's gold-on-black */
    --ink:        #09090b;
    --smoke:      #141416;
    --ash:        #1c1c1f;
    --ember:      #27272a;

    --gold:       #E8A817;
    --gold-dim:   rgba(232, 168, 23, 0.10);
    --gold-mid:   rgba(232, 168, 23, 0.25);
    --gold-glow:  rgba(232, 168, 23, 0.06);

    --pass:       #34d399;
    --pass-dim:   rgba(52, 211, 153, 0.12);

    --chalk:      #fafafa;
    --dust:       #a1a1aa;
    --stone:      #52525b;

    --border:     rgba(255, 255, 255, 0.06);
    --border-h:   rgba(255, 255, 255, 0.12);

    /* Type */
    --display:    'Outfit', system-ui, sans-serif;
    --body:       'DM Sans', system-ui, sans-serif;
    --mono:       'JetBrains Mono', ui-monospace, monospace;

    /* Motion */
    --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
    --ease-snappy: cubic-bezier(0.22, 1, 0.36, 1);
    --t-fast:     0.18s;
    --t-med:      0.35s;
    --t-slow:     0.6s;
}

/* ============================================================
   Reset & Base
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--ink);
    color: var(--chalk);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ============================================================
   Ribbon / Marquee
   ============================================================ */

.ribbon {
    background: var(--gold);
    color: var(--ink);
    font-family: var(--mono);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    overflow: hidden;
    position: relative;
    z-index: 200;
}

.ribbon-track {
    display: inline-flex;
    white-space: nowrap;
    animation: ribbon-scroll 40s linear infinite;
}

.ribbon-track span {
    margin-right: 3rem;
}

@keyframes ribbon-scroll {
    to { transform: translateX(-50%); }
}

/* ============================================================
   Navigation
   ============================================================ */

.nav {
    position: sticky;
    top: 0;
    z-index: 150;
    background: rgba(9, 9, 11, 0.80);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand-name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.1;
    color: var(--chalk);
}

.nav-brand-tag {
    font-family: var(--mono);
    font-size: 0.62rem;
    color: var(--gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dust);
    transition: color var(--t-fast) ease;
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ink);
    background: var(--gold);
    padding: 0.55rem 1.2rem;
    border-radius: 6px;
    transition: all var(--t-fast) ease;
}

.nav-cta:hover {
    background: #d49a14;
    transform: translateY(-1px);
}

.nav-cta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ink);
    opacity: 0.4;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 200;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--chalk);
    border-radius: 2px;
    transition: all var(--t-fast) ease;
}

.nav-toggle span:first-child {
    margin-bottom: 8px;
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--pass);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--pass);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--pass); }
    50% { opacity: 0.5; box-shadow: 0 0 2px var(--pass); }
}

.hero-headline {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-gold {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.hero-gold::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.06em;
    width: 100%;
    height: 0.08em;
    background: var(--gold);
    opacity: 0.3;
    border-radius: 4px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--dust);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Hero visual */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-laptop-wrap {
    position: relative;
}

.hero-laptop {
    width: 100%;
    max-width: 520px;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.6));
    transition: transform var(--t-slow) var(--ease-out);
}

.hero-laptop-wrap:hover .hero-laptop {
    transform: translateY(-8px) scale(1.02);
}

.hero-badge {
    position: absolute;
    bottom: 12%;
    right: -8%;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gold-mid);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--chalk);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.3;
    animation: badge-float 4s ease-in-out infinite;
}

.hero-badge-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--gold);
    padding: 0.7rem 1.6rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all var(--t-fast) ease;
}

.btn-gold:hover {
    background: #d49a14;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232, 168, 23, 0.2);
}

.btn-gold-lg {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--chalk);
    background: transparent;
    padding: 0.7rem 1.6rem;
    border-radius: 6px;
    border: 1px solid var(--border-h);
    cursor: pointer;
    transition: all var(--t-fast) ease;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}

/* ============================================================
   Trust Strip
   ============================================================ */

.trust {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--smoke);
}

.trust-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
}

.trust-num, .trust-num-text {
    font-family: var(--display);
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--chalk);
    line-height: 1;
}

.trust-plus {
    font-family: var(--display);
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1;
}

.trust-num-text {
    font-size: 1.6rem;
}

.trust-label {
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--dust);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.trust-divider {
    width: 1px;
    height: 48px;
    background: var(--border-h);
    flex-shrink: 0;
}

/* ============================================================
   Section Typography
   ============================================================ */

.section-eyebrow {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--dust);
    max-width: 540px;
    line-height: 1.7;
}

/* ============================================================
   Process Section
   ============================================================ */

.process {
    padding: 7rem 0;
}

.process-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 1.2rem;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-mid);
    color: var(--gold);
    margin-bottom: 1.2rem;
    transition: all var(--t-med) var(--ease-out);
}

.process-step:hover .step-icon {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(232, 168, 23, 0.2);
}

.step-name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--dust);
    line-height: 1.6;
}

.process-connector {
    width: 48px;
    height: 1px;
    background: var(--border-h);
    margin-top: 28px;
    flex-shrink: 0;
    position: relative;
}

.process-connector::after {
    content: '→';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--stone);
    font-size: 0.85rem;
}

/* ============================================================
   Diagnostic Terminal
   ============================================================ */

.terminal {
    background: var(--smoke);
    border: 1px solid var(--border-h);
    border-radius: 10px;
    overflow: hidden;
    max-width: 640px;
    margin: 0 auto;
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: var(--ash);
    border-bottom: 1px solid var(--border);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ember);
}

.terminal-dots span:first-child { background: #ef4444; }
.terminal-dots span:nth-child(2) { background: #eab308; }
.terminal-dots span:last-child { background: #22c55e; }

.terminal-title {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--stone);
}

.terminal-body {
    padding: 1.5rem;
    font-family: var(--mono);
    font-size: 0.8rem;
    line-height: 2;
}

.term-line {
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.3s ease;
}

.term-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.term-prompt {
    color: var(--gold);
    font-weight: 700;
}

.term-cmd {
    color: var(--chalk);
    font-weight: 500;
}

.term-muted {
    color: var(--stone);
}

.term-pass {
    color: var(--pass);
    font-weight: 700;
}

.term-result {
    color: var(--gold);
    font-weight: 700;
}

.term-gold {
    color: var(--gold);
    font-weight: 700;
}

/* ============================================================
   Inventory
   ============================================================ */

.inventory {
    padding: 7rem 0;
    background: var(--smoke);
    border-top: 1px solid var(--border);
}

.inventory-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.inv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.inv-card {
    background: var(--ink);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--t-med) var(--ease-out);
}

.inv-card:hover {
    border-color: var(--gold-mid);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.inv-card-img-wrap {
    position: relative;
    background: var(--ash);
    padding: 2.5rem;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.inv-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all var(--t-slow) var(--ease-out);
}

/* Diagnostic overlay on hover */
.inv-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 9, 11, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.inv-card:hover .inv-card-overlay {
    opacity: 1;
}

.inv-card:hover .inv-card-img {
    transform: scale(0.92);
    filter: grayscale(1) opacity(0.2);
}

.inv-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
}

.inv-card:hover .inv-scan {
    animation: scan-down 2.5s linear infinite;
    opacity: 0.6;
}

@keyframes scan-down {
    0% { top: 0; }
    100% { top: 100%; }
}

.inv-checks {
    list-style: none;
    font-family: var(--mono);
    font-size: 0.82rem;
    color: var(--chalk);
}

.inv-checks li {
    margin-bottom: 0.7rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.inv-card:hover .inv-checks li {
    opacity: 1;
    transform: translateX(0);
}

.inv-card:hover .inv-checks li:nth-child(1) { transition-delay: 0.1s; }
.inv-card:hover .inv-checks li:nth-child(2) { transition-delay: 0.2s; }
.inv-card:hover .inv-checks li:nth-child(3) { transition-delay: 0.3s; }
.inv-card:hover .inv-checks li:nth-child(4) { transition-delay: 0.4s; }

.inv-ok {
    color: var(--pass);
    font-weight: 700;
    margin-right: 0.5rem;
}

.inv-seal {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.25rem 0.7rem;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease 0.5s;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.inv-card:hover .inv-seal {
    opacity: 1;
    transform: translateY(0);
}

.inv-card-body {
    padding: 1.5rem 1.8rem 1.8rem;
}

.inv-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.inv-id {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--stone);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.inv-stock {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--pass);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.inv-stock::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pass);
}

.inv-card-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
}

.inv-specs {
    font-size: 0.9rem;
    color: var(--dust);
    margin-bottom: 1.2rem;
}

.inv-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gold);
    transition: all var(--t-fast) ease;
}

.inv-link:hover {
    gap: 0.7rem;
}

.inv-link svg {
    transition: transform var(--t-fast) ease;
}

.inv-link:hover svg {
    transform: translate(2px, -2px);
}

.inv-footer {
    margin-top: 3rem;
    text-align: center;
}

/* ============================================================
   CTA / Contact
   ============================================================ */

.cta {
    padding: 7rem 0;
    border-top: 1px solid var(--border);
}

.cta-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.cta-title {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.cta-sub {
    font-size: 1.05rem;
    color: var(--dust);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 440px;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.loc-card {
    background: var(--smoke);
    border: 1px solid var(--border-h);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.loc-pin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-dim);
    color: var(--gold);
    margin-bottom: 1rem;
}

.loc-name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.loc-addr {
    font-size: 0.9rem;
    color: var(--dust);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.loc-handle {
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
    border-top: 1px solid var(--border);
    background: var(--smoke);
    padding: 2rem 0;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand .nav-logo {
    height: 32px;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--stone);
}

.footer-right {
    display: flex;
    gap: 2rem;
}

.footer-social {
    font-family: var(--body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dust);
    transition: color var(--t-fast) ease;
}

.footer-social:hover {
    color: var(--gold);
}

/* ============================================================
   Scroll Reveal
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 4rem 2rem;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-badge {
        right: 4%;
        bottom: 4%;
    }

    .trust-inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        min-width: 140px;
    }

    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .process-connector {
        width: 1px;
        height: 32px;
        margin-top: 0;
    }

    .process-connector::after {
        content: '↓';
    }

    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-actions {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Mobile menu open */
    .nav.open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(9, 9, 11, 0.96);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 1.5rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 600px) {
    .hero-headline {
        font-size: 2.8rem;
    }

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

    .footer-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .hero {
        min-height: auto;
    }
}

/* ============================================================
   Reduced Motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
