/* ============================================================
   MJ Epoch Ventures — Corporate Portal
   Stylesheet (extracted + refactored from inline styles)
   ============================================================ */

/* ============================================= */
/* Design System: Colors, Tokens, Reset          */
/* ============================================= */
:root {
    --c-void: #030712;
    --c-deep: #0f172a;
    --c-gold: #d4af37;
    --c-gold-hover: #c59b27;
    --c-gold-deep: #b8972e;
    --c-stellar: #38bdf8;
    --c-maple: #d52b1e;
    --c-indigo: #1e1b4b;
    --c-emerald: #10b981;
    --c-slate-100: #f1f5f9;
    --c-slate-200: #e2e8f0;
    --c-slate-300: #cbd5e1;
    --c-slate-400: #94a3b8;
    --c-slate-500: #64748b;
    --c-slate-600: #475569;
    --c-slate-800: #1e293b;

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);

    --container: 80rem;
    --gutter: 1.5rem;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--c-void);
    color: var(--c-slate-200);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; }

/* ============================================= */
/* Utilities                                     */
/* ============================================= */
.font-display { font-family: var(--font-display); }
.font-mono { font-family: var(--font-mono); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.gradient-text {
    background: linear-gradient(135deg, var(--c-gold), var(--c-stellar));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

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

/* Skip-to-content link (keyboard accessibility) */
.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%) translateY(-200%);
    z-index: 100;
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    background: var(--c-gold);
    color: var(--c-void);
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s var(--ease-cinematic);
}
.skip-link:focus { transform: translateX(-50%) translateY(0); outline: 2px solid #fff; outline-offset: 2px; }

/* ============================================= */
/* Buttons                                       */
/* ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.3s var(--ease-cinematic), box-shadow 0.3s, background 0.3s, color 0.3s;
}
.btn:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }

.btn-gold {
    color: #fff;
    background: linear-gradient(135deg, var(--c-gold), var(--c-gold-deep));
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4); }

.btn-ghost {
    color: var(--c-slate-200);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }

.btn-outline {
    color: var(--c-gold);
    border: 2px solid var(--c-gold);
    background: transparent;
}
.btn-outline:hover { background: rgba(212, 175, 55, 0.1); }

.btn-indigo {
    color: #fff;
    background: var(--c-indigo);
    box-shadow: 0 4px 16px rgba(30, 27, 75, 0.3);
}
.btn-indigo:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30, 27, 75, 0.45); }

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.7rem; }
.btn-md { padding: 0.875rem 2rem; font-size: 0.7rem; }
.btn-lg { padding: 1rem 2rem; font-size: 0.8rem; }
.btn-block { width: 100%; }

/* ============================================= */
/* Badges & eyebrows                             */
/* ============================================= */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: fit-content;
}
.badge-dot {
    width: 0.5rem; height: 0.5rem;
    border-radius: 9999px;
    background: var(--c-gold);
    display: inline-block;
    flex-shrink: 0;
}
.badge-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--c-slate-200);
    text-transform: uppercase;
}

.eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--c-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

/* ============================================= */
/* Glassmorphism Panels                          */
/* ============================================= */
.glass-panel {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 48px 0 rgba(0, 0, 0, 0.12);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
    transition: transform 0.6s var(--ease-cinematic), box-shadow 0.6s var(--ease-cinematic), background 0.6s, border-color 0.6s;
}
.glass-card:hover {
    transform: translateY(-10px) scale(1.015);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 24px 64px 0 rgba(212, 175, 55, 0.12), 0 0 0 1px rgba(212, 175, 55, 0.15);
}

/* ============================================= */
/* Scroll Reveal System (Story Transitions)      */
/* ============================================= */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: opacity 1s var(--ease-cinematic), transform 1s var(--ease-cinematic);
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.scroll-reveal.delay-1 { transition-delay: 0.1s; }
.scroll-reveal.delay-2 { transition-delay: 0.2s; }
.scroll-reveal.delay-3 { transition-delay: 0.35s; }
.scroll-reveal.delay-4 { transition-delay: 0.5s; }

/* Section divider top-fade */
.section-fade-in { position: relative; }
.section-fade-in::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--c-void), transparent);
    pointer-events: none;
    z-index: 5;
}

/* ============================================= */
/* Scrollbar                                     */
/* ============================================= */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--c-void); }
::-webkit-scrollbar-thumb {
    background: var(--c-slate-800);
    border-radius: 4px;
    border: 2px solid var(--c-void);
}
::-webkit-scrollbar-thumb:hover { background: var(--c-gold); }

::selection {
    background: rgba(212, 175, 55, 0.2);
    color: var(--c-indigo);
}

/* ============================================= */
/* Fixed background layers                        */
/* ============================================= */
.starfield-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: var(--c-void);
}
.constellation {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
}
.connector-line {
    stroke-dasharray: 5, 8;
    animation: flowLine 60s linear infinite;
}
@keyframes flowLine { to { stroke-dashoffset: -1200; } }

/* ============================================= */
/* Header / Navigation                           */
/* ============================================= */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 50;
    padding: 1.25rem 0;
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s, backdrop-filter 0.3s;
}
.navbar.scrolled {
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 0.75rem 0;
}
.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-mark {
    width: 2.5rem; height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    color: var(--c-gold);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.logo-title {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: #fff;
    text-transform: uppercase;
    display: block;
}
.logo-sub {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: var(--c-gold);
    text-transform: uppercase;
    display: block;
}
.nav-links { display: none; }
.nav-pill {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--c-slate-300);
    text-decoration: none;
    transition: color 0.3s;
}
.nav-link:hover { color: var(--c-gold); }

.nav-cta { display: none; }

/* Hamburger */
.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.75rem; height: 2.75rem;
    padding: 0.6rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
}
.nav-toggle:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 2px; }
.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown menu */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 49;
    padding: 6rem 1.5rem 2rem;
    background: rgba(3, 7, 18, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-110%);
    transition: transform 0.4s var(--ease-cinematic);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
    padding: 0.9rem 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--c-slate-200);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 1rem; }

/* ============================================= */
/* Hero Section                                  */
/* ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
    z-index: 10;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s var(--ease-cinematic);
    will-change: transform, opacity;
}
.hero-bg.is-active { opacity: 1; }

/* VIEW 1: Ken Burns */
@keyframes kenBurns {
    0%   { transform: scale(1.0) translate(0, 0); }
    50%  { transform: scale(1.12) translate(-1.5%, -1%); }
    100% { transform: scale(1.0) translate(0, 0); }
}
.hero-anim-1 { animation: kenBurns 25s ease-in-out infinite; }

/* VIEW 2: Chromatic Drift */
@keyframes chromaticDrift {
    0%   { transform: translate(0, 0) scale(1.02); filter: brightness(0.95) saturate(1.1); }
    33%  { transform: translate(1.2%, -0.8%) scale(1.05); filter: brightness(1.05) saturate(1.2); }
    66%  { transform: translate(-0.8%, 0.5%) scale(1.03); filter: brightness(0.9) saturate(1.0); }
    100% { transform: translate(0, 0) scale(1.02); filter: brightness(0.95) saturate(1.1); }
}
.hero-anim-2 { animation: chromaticDrift 18s ease-in-out infinite; }

/* VIEW 3: HUD micro-shudder */
@keyframes hudShudder {
    0%, 100% { transform: translate(0, 0) scale(1.01); }
    10%  { transform: translate(-0.3px, 0.5px) scale(1.01); }
    20%  { transform: translate(0.4px, -0.3px) scale(1.012); }
    30%  { transform: translate(-0.2px, 0.1px) scale(1.01); }
    50%  { transform: translate(0.3px, 0.4px) scale(1.015); }
    70%  { transform: translate(-0.5px, -0.2px) scale(1.01); }
    90%  { transform: translate(0.2px, 0.3px) scale(1.012); }
}
.hero-anim-3 { animation: hudShudder 4s ease-in-out infinite; }

/* VIEW 4: Slow orbit — scaled up so corners never expose void during rotation */
@keyframes slowOrbit {
    0%   { transform: scale(1.5) rotate(0deg); }
    100% { transform: scale(1.5) rotate(360deg); }
}
.hero-anim-4 { animation: slowOrbit 240s linear infinite; }

/* HUD scanline overlay (View 3) */
@keyframes scanlineSweep { 0% { top: -10%; } 100% { top: 110%; } }
.scanline-overlay {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.8s;
}
.scanline-overlay.active { opacity: 1; }
.scanline-overlay::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: -10%;
    height: 4px;
    background: linear-gradient(to right, transparent 5%, rgba(56, 189, 248, 0.6) 50%, transparent 95%);
    box-shadow: 0 0 20px 4px rgba(56, 189, 248, 0.3);
    animation: scanlineSweep 6s linear infinite;
}
.scanline-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        transparent, transparent 3px,
        rgba(0, 0, 0, 0.04) 3px, rgba(0, 0, 0, 0.04) 4px
    );
}

/* Film grain + vignette */
.film-grain {
    position: absolute;
    inset: 0;
    filter: url(#grain);
    pointer-events: none;
    z-index: 4;
    mix-blend-mode: overlay;
    opacity: 0.7;
}
.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(3,7,18,0.05) 0%, rgba(3,7,18,0.65) 100%);
}
.hero-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(3,7,18,0.08) 0%, rgba(3,7,18,0.5) 70%, var(--c-void) 100%);
}

.hero-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 2.5rem var(--gutter) 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 20;
}
.hero-text { display: flex; flex-direction: column; justify-content: center; }
.hero-title {
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 1.5rem 0;
}
.hero-desc {
    font-size: 1.1rem;
    color: var(--c-slate-300);
    max-width: 36rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* Configurator */
.config-col { display: flex; flex-direction: column; justify-content: center; align-items: flex-end; }
.configurator {
    background: rgba(3, 7, 18, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.5rem 2rem;
    border-radius: 1.5rem;
    width: 100%;
    max-width: 22rem;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.4);
}
.config-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--c-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.375rem;
}
.config-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1rem;
}
.view-list { display: flex; flex-direction: column; gap: 0.625rem; }
.view-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 1rem;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: inherit;
}
.view-btn:hover { background: rgba(255, 255, 255, 0.08); }
.view-btn:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 2px; }
.view-btn.active {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid var(--c-gold);
}
.view-thumb {
    width: 3rem; height: 3rem;
    border-radius: 0.625rem;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}
.view-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    display: block;
}
.view-mode {
    font-size: 0.55rem;
    color: var(--c-slate-300);
    text-transform: uppercase;
}

/* ============================================= */
/* Generic Sections                              */
/* ============================================= */
.section {
    position: relative;
    padding: 7rem 0;
    z-index: 10;
}
.section-head {
    margin: 0 auto 5rem;
    text-align: center;
    max-width: 36rem;
}
.section-title {
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #fff;
    margin-bottom: 1rem;
}
.section-sub { color: var(--c-slate-400); font-weight: 300; }

/* ============================================= */
/* Services — Bento Grid                         */
/* ============================================= */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
}
.card-corner {
    position: absolute;
    top: 0; right: 0;
    width: 6rem; height: 6rem;
    border-bottom-left-radius: 100%;
    pointer-events: none;
}
.card-corner.gold { background: linear-gradient(to bottom, rgba(212,175,55,0.06), transparent); }
.card-corner.stellar { background: linear-gradient(to bottom, rgba(56,189,248,0.06), transparent); }
.card-icon {
    width: 3rem; height: 3rem;
    border-radius: 0.75rem;
    background: var(--c-void);
    border: 1px solid var(--c-slate-800);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 2rem;
}
.card-icon.gold { color: var(--c-gold); }
.card-icon.stellar { color: var(--c-stellar); }
.card-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--c-indigo);
    margin-bottom: 1rem;
}
.card-text {
    font-size: 0.875rem;
    color: var(--c-slate-600);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.feature-list {
    list-style: none;
    font-size: 0.7rem;
    color: var(--c-slate-500);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.feature-list li { display: flex; align-items: center; gap: 0.5rem; }
.dot {
    width: 0.375rem; height: 0.375rem;
    border-radius: 9999px;
    flex-shrink: 0;
}
.dot.gold { background: var(--c-gold); }
.dot.stellar { background: var(--c-stellar); }
.card--raised { transform: translateY(1.5rem); }

/* ============================================= */
/* Split layout (LMS/CRM + Ventures)             */
/* ============================================= */
.split-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}
.split-text { display: flex; flex-direction: column; justify-content: center; }

.checklist { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.check-item { display: flex; align-items: flex-start; gap: 1rem; }
.check-icon {
    width: 1.5rem; height: 1.5rem;
    border-radius: 9999px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.check-title {
    font-weight: 600;
    color: var(--c-slate-200);
    font-size: 0.875rem;
    display: block;
}
.check-desc {
    font-size: 0.75rem;
    color: var(--c-slate-400);
    font-weight: 300;
}

/* Dashboard mockup */
.dashboard { padding: 1rem; border-radius: 1.5rem; overflow: hidden; background: rgba(255,255,255,0.75); }
.dash-dots { display: flex; gap: 0.375rem; padding: 0.5rem; }
.dash-dots span { width: 0.75rem; height: 0.75rem; border-radius: 9999px; }
.dash-body {
    border-radius: 1rem;
    background: #fff;
    padding: 1.5rem;
    border: 1px solid var(--c-slate-100);
    margin-top: 0.25rem;
}
.dash-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.dash-kicker {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: var(--c-slate-400);
    text-transform: uppercase;
    display: block;
}
.dash-title { font-weight: 600; font-size: 0.875rem; color: var(--c-indigo); }
.dash-tag {
    font-size: 0.6rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    background: rgba(212,175,55,0.1);
    color: var(--c-gold);
    border: 1px solid rgba(212,175,55,0.2);
    font-weight: 500;
}
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.stat {
    padding: 0.875rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    border: 1px solid var(--c-slate-100);
}
.stat-label { font-size: 0.55rem; color: var(--c-slate-400); display: block; }
.stat-value { font-size: 1.1rem; font-weight: 700; }
.stat-value.indigo { color: var(--c-indigo); }
.stat-value.gold { color: var(--c-gold); }
.stat-value.stellar { color: var(--c-stellar); }

.chart-box {
    padding: 1rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    border: 1px solid var(--c-slate-100);
    margin-bottom: 1.5rem;
}
.chart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-size: 0.55rem; color: var(--c-slate-400); }
.chart-bars {
    height: 7rem;
    display: flex;
    align-items: flex-end;
    gap: 0.625rem;
    padding-top: 1rem;
    border-bottom: 1px solid var(--c-slate-100);
}
.chart-bars span { flex: 1; border-radius: 0.25rem 0.25rem 0 0; background: var(--c-slate-200); }
.chart-bars .b1 { height: 40%; }
.chart-bars .b2 { height: 60%; }
.chart-bars .b3 { height: 50%; }
.chart-bars .b4 { height: 75%; background: rgba(212,175,55,0.3); }
.chart-bars .b5 { height: 90%; background: rgba(212,175,55,0.45); }
.chart-bars .b6 { height: 100%; background: linear-gradient(to top, var(--c-gold), #eab308); }

.dash-rows { display: flex; flex-direction: column; gap: 0.5rem; }
.dash-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: var(--c-slate-600);
}
.dash-row .ok { color: var(--c-emerald); font-weight: 600; font-size: 0.7rem; }

/* ============================================= */
/* Ventures                                      */
/* ============================================= */
.venture-card {
    padding: 2.5rem 3rem;
    border-radius: 2rem;
    max-width: 56rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.venture-flare {
    position: absolute;
    top: -6rem; right: -6rem;
    width: 16rem; height: 16rem;
    background: rgba(212,175,55,0.08);
    border-radius: 9999px;
    filter: blur(3rem);
    pointer-events: none;
}
.venture-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 10;
}
.venture-title {
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--c-indigo);
    margin-bottom: 1rem;
}
.venture-meta { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.venture-status { display: flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; color: var(--c-slate-500); }
.venture-status .live-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: var(--c-emerald); }
.venture-visual {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid var(--c-slate-100);
    aspect-ratio: 4 / 3;
    background: var(--c-slate-100);
}
.venture-visual .overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30,27,75,0.6), transparent); z-index: 10; }
.venture-visual .content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 1.5rem; z-index: 20; color: #fff;
}
.venture-visual .img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: hue-rotate(180deg) brightness(0.8);
}

/* ============================================= */
/* Contact form                                  */
/* ============================================= */
.contact-panel { padding: 2.5rem 3rem; border-radius: 2rem; max-width: 40rem; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.field { display: flex; flex-direction: column; }
.field label {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--c-slate-400);
    text-transform: uppercase;
    margin: 0 0 0.5rem 0.25rem;
}
.field input,
.field select,
.field textarea {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid var(--c-slate-200);
    font-size: 0.875rem;
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--c-slate-600);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--c-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.field textarea { resize: vertical; }

.form-status {
    font-size: 0.8rem;
    text-align: center;
    min-height: 1.2rem;
    margin-top: -0.5rem;
}
.form-status.success { color: var(--c-emerald); }
.form-status.error { color: #f87171; }
button[disabled] { opacity: 0.6; cursor: progress; }

/* ============================================= */
/* Footer                                        */
/* ============================================= */
.footer {
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--c-slate-800);
    background: var(--c-void);
    padding: 4rem 0;
}
.footer-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-mark {
    width: 2rem; height: 2rem;
    border-radius: 0.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--c-gold);
    font-weight: 700;
    font-size: 0.75rem;
}
.footer-text { font-size: 0.75rem; color: var(--c-slate-400); font-weight: 300; line-height: 1.6; }
.footer-col-title {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--c-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.75rem; color: var(--c-slate-400); font-weight: 300; }
.footer-list a { color: var(--c-slate-400); text-decoration: none; transition: color 0.3s; }
.footer-list a:hover { color: var(--c-gold); }
.tag-online {
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    background: rgba(16,185,129,0.1);
    color: var(--c-emerald);
    font-weight: 500;
    font-size: 0.55rem;
    font-family: var(--font-mono);
}
.footer-bottom {
    max-width: var(--container);
    margin: 3rem auto 0;
    padding: 2rem var(--gutter) 0;
    border-top: 1px solid rgba(30,41,59,0.5);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--c-slate-500);
    font-weight: 300;
}
.footer-bottom a { color: var(--c-slate-500); text-decoration: none; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--c-gold); }
.footer-links { display: flex; gap: 1.5rem; }

/* ============================================= */
/* Canadian identity — maple leaf accents         */
/* ============================================= */
.maple {
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: var(--c-maple);
    flex-shrink: 0;
    vertical-align: -0.12em;
}
.maple-gold { fill: var(--c-gold); }

/* "Proudly Canadian" pill */
.ca-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    background: rgba(213, 43, 30, 0.10);
    border: 1px solid rgba(213, 43, 30, 0.30);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: fit-content;
}
.ca-pill .maple { font-size: 1rem; }
.ca-pill span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-slate-200);
}
.ca-pill strong { color: #fff; font-weight: 700; }

/* Footer "proudly Canadian" line */
.ca-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--c-slate-300);
    font-weight: 400;
}
.ca-footer .maple { font-size: 0.9rem; }

/* ============================================= */
/* HUD blink helper                              */
/* ============================================= */
@keyframes hudBlink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0.3; } }
.hud-blink { animation: hudBlink 2s step-end infinite; }

/* ============================================= */
/* Responsive — real CSS media queries           */
/* ============================================= */
@media (min-width: 768px) {
    .nav-links { display: block; }
    .nav-cta { display: inline-flex; }
    .nav-toggle { display: none; }
    .form-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    .form-row { grid-template-columns: 1fr; }
}

@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 7fr 5fr; }
    .split-grid { grid-template-columns: 1fr 1fr; }
    .venture-grid { grid-template-columns: 7fr 5fr; }
}

/* ============================================================ */
/* Premium motion layer (2026)                                  */
/* Custom cursor · magnetic · 3D tilt · reveals · progress       */
/* ============================================================ */

/* --- Scroll progress bar --- */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: 0 50%;
    background: linear-gradient(90deg, var(--c-gold), var(--c-stellar));
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
    z-index: 60;
    pointer-events: none;
    will-change: transform;
}

/* --- Custom cursor glow (pointer devices only) --- */
.cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    transform: translate3d(var(--cx, -100px), var(--cy, -100px), 0) translate(-50%, -50%) scale(var(--cs, 1));
    background: radial-gradient(circle, rgba(212, 175, 55, 0.55), rgba(56, 189, 248, 0.18) 55%, transparent 72%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s, width 0.3s var(--ease-cinematic), height 0.3s var(--ease-cinematic);
    will-change: transform;
}
.cursor-glow.visible { opacity: 1; }
.cursor-glow.hovering { width: 60px; height: 60px; }
@media (hover: none), (pointer: coarse) { .cursor-glow { display: none; } }

/* --- Magnetic elements --- */
.magnetic { transition: transform 0.35s var(--ease-cinematic); will-change: transform; }

/* --- 3D tilt + spotlight sheen on glass cards --- */
.tilt {
    transition: transform 0.5s var(--ease-cinematic), box-shadow 0.5s var(--ease-cinematic);
    transform-style: preserve-3d;
    will-change: transform;
}
.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(212, 175, 55, 0.12), transparent 45%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}
.glass-card:hover::after { opacity: 1; }
.glass-card > * { position: relative; z-index: 2; }

/* --- Cinematic load reveals --- */
/* Hidden initial states apply ONLY when JS is confirmed active (html.js),
   so no-JS users and JS-error cases always see fully visible content. */
.line-mask { display: block; overflow: hidden; padding-bottom: 0.08em; }
.line-inner {
    display: block;
    transition: transform 1.1s var(--ease-cinematic);
}
.reveal-up {
    transition: opacity 0.9s var(--ease-cinematic), transform 0.9s var(--ease-cinematic);
}
html.js .line-inner { transform: translateY(115%); }
html.js .reveal-up { opacity: 0; transform: translateY(26px); }

/* Revealed state (later source order wins the specificity tie) */
body.loaded .line-mask:nth-child(1) .line-inner { transition-delay: 0.15s; }
body.loaded .line-mask:nth-child(2) .line-inner { transition-delay: 0.30s; }
body.loaded .line-inner { transform: translateY(0); }
body.loaded .reveal-up { opacity: 1; transform: none; }
.rd-1 { transition-delay: 0.45s; }
.rd-2 { transition-delay: 0.60s; }
.rd-3 { transition-delay: 0.75s; }
.rd-4 { transition-delay: 0.90s; }

/* ============================================= */
/* HUD blink helper (moved with motion layer)     */
/* ============================================= */

/* ============================================================ */
/* Interior pages (About / Services / Ventures / Contact)        */
/* ============================================================ */

/* Active nav state */
.nav-link.active { color: var(--c-gold); }
.mobile-menu a.active { color: var(--c-gold); }

/* Interior page hero (compact, no configurator) */
.page-hero {
    position: relative;
    z-index: 10;
    padding: 11rem 0 4rem;
    text-align: center;
}
.page-hero .container { max-width: 52rem; }
.page-hero h1 {
    font-weight: 800;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.lead {
    font-size: 1.15rem;
    color: var(--c-slate-300);
    line-height: 1.8;
    font-weight: 300;
    max-width: 44rem;
    margin: 0 auto;
}

/* Prose blocks on dark */
.prose { color: var(--c-slate-300); font-weight: 300; line-height: 1.8; }
.prose p { margin-bottom: 1.25rem; }
.prose strong { color: #fff; font-weight: 600; }
.prose h3 {
    font-family: var(--font-display);
    color: #fff;
    font-weight: 700;
    font-size: 1.35rem;
    margin: 2.5rem 0 1rem;
}

/* Dark glass card (for text-heavy content on the dark theme) */
.glass-dark {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 1.25rem;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s var(--ease-cinematic), border-color 0.5s;
}
.glass-dark:hover { transform: translateY(-6px); border-color: rgba(212, 175, 55, 0.3); }
.glass-dark .card-title { color: #fff; }
.glass-dark .card-text { color: var(--c-slate-300); }

/* Tech / capability tags */
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    padding: 0.35rem 0.7rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--c-slate-300);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.tag.gold { background: rgba(212, 175, 55, 0.1); border-color: rgba(212, 175, 55, 0.25); color: var(--c-gold); }

/* Service detail anchor offset (fixed navbar) */
.anchor-offset { scroll-margin-top: 6rem; }

/* Numbered detail header */
.detail-index {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--c-gold);
    text-transform: uppercase;
}

/* Process steps */
.steps { display: flex; flex-direction: column; gap: 1.25rem; }
.step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
}
.step-num {
    flex-shrink: 0;
    width: 2.5rem; height: 2.5rem;
    border-radius: 9999px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--c-void);
    background: linear-gradient(135deg, var(--c-gold), var(--c-gold-deep));
}
.step h4 { font-family: var(--font-display); color: #fff; font-size: 1.05rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.9rem; color: var(--c-slate-400); font-weight: 300; line-height: 1.6; }

/* FAQ accordion (native <details>) */
.faq { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.3s;
}
.faq details[open] { border-color: rgba(212, 175, 55, 0.25); }
.faq summary {
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    color: var(--c-gold);
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 1rem; color: var(--c-slate-300); font-weight: 300; line-height: 1.7; font-size: 0.95rem; }

/* Info cards (contact) */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.info-card { padding: 2rem; border-radius: 1.25rem; }
.info-card .card-icon { margin-bottom: 1.25rem; }
.info-card h3 { font-family: var(--font-display); color: #fff; font-size: 1.1rem; margin-bottom: 0.5rem; }
.info-card p { font-size: 0.9rem; color: var(--c-slate-400); font-weight: 300; line-height: 1.6; }
.info-card a { color: var(--c-gold); text-decoration: none; }
.info-card a:hover { text-decoration: underline; }

/* Stat band */
.stat-band {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-band .big {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--c-gold);
    display: block;
}
.stat-band .lbl { font-size: 0.8rem; color: var(--c-slate-400); font-weight: 300; }

/* CTA band */
.cta-band {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    padding: 3.5rem 2rem;
    border-radius: 2rem;
}

/* ============================================================ */
/* Cookie consent (BC PIPA / PIPEDA)                             */
/* ============================================================ */
.cookie-banner {
    position: fixed;
    left: 1rem; right: 1rem; bottom: 1rem;
    max-width: 30rem;
    z-index: 80;
    background: rgba(3, 7, 18, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(160%);
    transition: transform 0.5s var(--ease-cinematic);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h3 {
    font-family: var(--font-display);
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.cookie-banner p { font-size: 0.8rem; color: var(--c-slate-400); line-height: 1.6; font-weight: 300; margin-bottom: 1rem; }
.cookie-banner a { color: var(--c-gold); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cookie-actions .btn { font-size: 0.62rem; padding: 0.6rem 1rem; }
.cookie-link {
    background: none; border: none; cursor: pointer;
    color: var(--c-slate-400); font-family: var(--font-body);
    font-size: 0.7rem; text-decoration: underline; padding: 0.6rem 0.4rem;
}
.cookie-link:hover { color: var(--c-gold); }
.cookie-toggles { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }
.cookie-toggle {
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    padding: 0.7rem 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0.65rem;
}
.cookie-toggle .ct-label { font-size: 0.8rem; color: #fff; font-weight: 500; display: block; }
.cookie-toggle .ct-desc { font-size: 0.65rem; color: var(--c-slate-500); font-weight: 300; }
.switch { position: relative; width: 38px; height: 22px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.switch .track { position: absolute; inset: 0; background: var(--c-slate-600); border-radius: 9999px; transition: background 0.3s; cursor: pointer; }
.switch .track::before { content: ''; position: absolute; height: 16px; width: 16px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform 0.3s; }
.switch input:checked + .track { background: var(--c-gold); }
.switch input:checked + .track::before { transform: translateX(16px); }
.switch input:disabled + .track { opacity: 0.5; cursor: not-allowed; }
.switch input:focus-visible + .track { outline: 2px solid var(--c-gold); outline-offset: 2px; }
@media (max-width: 520px) { .cookie-banner { left: 0.5rem; right: 0.5rem; bottom: 0.5rem; } }

/* Legal / policy document layout */
.legal { max-width: 52rem; margin: 0 auto; }
.legal h2 { font-family: var(--font-display); color: #fff; font-size: 1.4rem; margin: 2.5rem 0 1rem; }
.legal h3 { font-family: var(--font-display); color: var(--c-slate-100); font-size: 1.05rem; margin: 1.75rem 0 0.75rem; }
.legal p, .legal li { color: var(--c-slate-300); font-weight: 300; line-height: 1.8; font-size: 0.95rem; }
.legal p { margin-bottom: 1rem; }
.legal ul { margin: 0 0 1.25rem 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.legal strong { color: #fff; font-weight: 600; }
.legal a { color: var(--c-gold); }
.legal .updated { font-family: var(--font-mono); font-size: 0.7rem; color: var(--c-slate-500); text-transform: uppercase; letter-spacing: 0.1em; }
.legal .reg-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}
.legal .reg-box dt { color: var(--c-slate-500); font-family: var(--font-mono); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.75rem; }
.legal .reg-box dd { color: #fff; margin: 0.15rem 0 0; }
.legal .reg-box dt:first-child { margin-top: 0; }

/* ============================================= */
/* Reduced motion — respect user preference      */
/* ============================================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-anim-1, .hero-anim-2, .hero-anim-3, .hero-anim-4 { animation: none !important; }
    .scroll-reveal { opacity: 1 !important; transform: none !important; }
    /* Neutralize the premium motion layer */
    .cursor-glow { display: none !important; }
    .line-inner { transform: none !important; }
    .reveal-up { opacity: 1 !important; transform: none !important; }
    .magnetic, .tilt { transform: none !important; }
}
