/* =========================================================================
   Ariazonaa — Operator Console
   Dark, minimal, infrastructure-grade portfolio.
   ========================================================================= */

:root {
    --bg: #000000;
    --surface-1: #0a0a0a;
    --surface-2: #111111;
    --surface-3: #18181b;
    --border: #27272a;
    --border-hover: #3f3f46;
    --text: #fafafa;
    --text-muted: #a1a1aa;
    --text-dim: #52525b;
    --accent: #10b981;
    --accent-bright: #34d399;
    --accent-glow: rgba(16, 185, 129, 0.35);
    --accent-faint: rgba(16, 185, 129, 0.08);

    --font-sans: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background-color: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'ss01', 'cv11';
    overflow-x: hidden;
}

::selection {
    background: var(--accent);
    color: #000;
}

.font-mono { font-family: var(--font-mono); }

/* === Custom scrollbar ==================================================== */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--surface-1); }
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 5px;
    border: 2px solid var(--surface-1);
}
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* === Ambient radial vignette ============================================ */
.ambient-glow {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 15% -5%, rgba(16, 185, 129, 0.10), transparent 60%),
        radial-gradient(ellipse 60% 50% at 85% 110%, rgba(16, 185, 129, 0.06), transparent 60%);
}

/* === Cursor spotlight (only on devices that hover) ====================== */
@media (hover: hover) and (pointer: fine) {
    .cursor-spotlight {
        position: fixed;
        top: 0; left: 0;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        pointer-events: none;
        z-index: 1;
        opacity: 0;
        transform: translate3d(calc(var(--mx, 50vw) - 300px), calc(var(--my, 50vh) - 300px), 0);
        background: radial-gradient(circle, rgba(16, 185, 129, 0.10) 0%, transparent 60%);
        mix-blend-mode: screen;
        transition: opacity 0.4s ease-out;
        will-change: transform;
    }
    .cursor-spotlight.visible { opacity: 1; }
}

/* === Scroll progress bar ================================================ */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-bright));
    z-index: 60;
    transition: width 0.05s linear;
}

/* === Header ============================================================== */
#header {
    transition: background-color 0.3s var(--ease-out),
                border-color 0.3s var(--ease-out),
                backdrop-filter 0.3s var(--ease-out);
    border-bottom: 1px solid transparent;
}
#header.scrolled {
    background-color: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border-bottom-color: var(--border);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}
.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-bright);
    box-shadow: 0 0 0 0 var(--accent-glow);
    animation: pulse 2.4s var(--ease-out) infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 var(--accent-glow); }
    70%  { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* === Hero ================================================================ */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(63, 63, 70, 0.18) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(63, 63, 70, 0.18) 1px, transparent 1px);
    background-size: 1.5rem 1.5rem;
    animation: grid-pan 40s linear infinite;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 40%, transparent 100%);
}
@keyframes grid-pan {
    0%   { background-position: 0 0; }
    100% { background-position: 1.5rem 1.5rem; }
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    opacity: 0.035;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(28px);
    background: linear-gradient(180deg, #fafafa 0%, #71717a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    will-change: transform, opacity;
}
.hero-word.in {
    animation: hero-rise 0.9s var(--ease-out) forwards;
}
@keyframes hero-rise {
    to { opacity: 1; transform: translateY(0); }
}

.hero-word.accent {
    background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.caret {
    display: inline-block;
    width: 0.55ch;
    height: 0.95em;
    margin-left: 0.12em;
    background: var(--accent-bright);
    vertical-align: -0.05em;
    animation: caret-blink 1.05s steps(2, end) infinite;
    box-shadow: 0 0 12px var(--accent-glow);
    opacity: 0;
}
.caret.visible { opacity: 1; }
@keyframes caret-blink {
    50% { opacity: 0; }
}

/* === Boot sequence ======================================================= */
#boot {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    font-family: var(--font-mono);
    font-size: 0.84rem;
    color: var(--text-muted);
    transition: transform 0.6s var(--ease-out), opacity 0.4s var(--ease-out);
}
#boot.lifting {
    transform: translateY(-100%);
}
#boot ol {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: min(560px, 100%);
    line-height: 1.8;
}
#boot li {
    display: flex;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
#boot li.shown {
    opacity: 1;
    transform: translateY(0);
}
.boot-tag {
    color: var(--accent-bright);
    text-shadow: 0 0 8px var(--accent-glow);
    flex-shrink: 0;
}
#boot .boot-ready { color: var(--text); }

/* === Generic card surface ================================================ */
.card {
    position: relative;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
}
.card:hover { border-color: var(--border-hover); }

/* === Spotlight card (mouse-tracked) ====================================== */
.spotlight {
    position: relative;
    isolation: isolate;
}
.spotlight::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(
        400px circle at var(--sx, 50%) var(--sy, 50%),
        rgba(52, 211, 153, 0.4),
        transparent 45%
    );
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
    pointer-events: none;
    z-index: 2;
}
.spotlight::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        420px circle at var(--sx, 50%) var(--sy, 50%),
        rgba(16, 185, 129, 0.08),
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
    pointer-events: none;
    z-index: 1;
}
.spotlight:hover::before,
.spotlight:hover::after { opacity: 1; }
.spotlight > * { position: relative; z-index: 3; }

/* === Bento grid ========================================================== */
.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(120px, auto);
    gap: 1rem;
}
.bento > .card { padding: 1.5rem; }
.bento .b-bio       { grid-column: span 12; padding: 2rem; }
.bento .b-stat-age  { grid-column: span 4; }
.bento .b-stat-loc  { grid-column: span 4; }
.bento .b-stat-since{ grid-column: span 4; }
.bento .b-quote     { grid-column: span 12; padding: 2rem; }
@media (min-width: 768px) {
    .bento .b-bio       { grid-column: span 7; grid-row: span 2; }
    .bento .b-quote     { grid-column: span 5; grid-row: span 1; }
    .bento .b-stat-age  { grid-column: span 5 / span 5; grid-column-start: 8; }
    .bento .b-stat-loc,
    .bento .b-stat-since{ grid-column: span 6; }
}
@media (min-width: 1024px) {
    .bento .b-bio       { grid-column: 1 / span 7; grid-row: 1 / span 2; }
    .bento .b-quote     { grid-column: 8 / span 5; grid-row: 2 / span 1; }
    .bento .b-stat-age  { grid-column: 8 / span 5; grid-row: 1 / span 1; }
    .bento .b-stat-loc  { grid-column: 1 / span 4; grid-row: 3 / span 1; }
    .bento .b-stat-since{ grid-column: 5 / span 8; grid-row: 3 / span 1; }
}

.stat-num {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
    background: linear-gradient(180deg, #fafafa 0%, #71717a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-dim);
    margin-top: 0.5rem;
}

/* === Tech grid =========================================================== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 640px) { .tech-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px){ .tech-grid { grid-template-columns: repeat(3, 1fr); } }

.tech-card {
    padding: 1.25rem 1.25rem 1.1rem;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}
.tech-card .tc-name {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
}
.tech-card .tc-role {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}
.tech-card .tc-arrow {
    color: var(--accent);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.tech-card:hover .tc-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* === Philosophy ========================================================== */
.philosophy-card {
    position: relative;
    padding: 1.75rem 1.75rem 1.75rem 2.25rem;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.4s var(--ease-out), transform 0.6s var(--ease-out);
}
.philosophy-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--border);
    transition: background 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.philosophy-card.is-visible::before {
    background: var(--accent);
    box-shadow: 0 0 14px var(--accent-glow);
}
.philosophy-card .ph-num {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-dim);
    letter-spacing: 0.08em;
}
.philosophy-card .ph-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text);
    margin: 0.4rem 0 0.8rem;
    letter-spacing: -0.01em;
}
.philosophy-card .ph-body {
    color: var(--text-muted);
    line-height: 1.7;
}

/* === Terminal / contact console ========================================== */
.terminal {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface-1);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.04) inset,
        0 30px 80px -30px rgba(0, 0, 0, 0.8),
        0 0 60px -20px var(--accent-faint);
    overflow: hidden;
    font-family: var(--font-mono);
}
.terminal-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0.9rem;
    background: var(--surface-3);
    border-bottom: 1px solid var(--border);
    font-size: 0.72rem;
    color: var(--text-dim);
}
.terminal-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #3f3f46;
}
.terminal-dot.r { background: #ef4444; }
.terminal-dot.y { background: #f59e0b; }
.terminal-dot.g { background: var(--accent); }
.terminal-title { margin-left: 0.6rem; }
.terminal-body {
    padding: 1.25rem 1.5rem 1.5rem;
    font-size: 0.92rem;
    line-height: 1.75;
}
.terminal-prompt {
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}
.terminal-prompt .ps1 { color: var(--accent); }
.terminal-prompt .cmd { color: var(--text); }

.contact-row {
    display: grid;
    grid-template-columns: 1.5rem 6.5rem 1fr auto;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.5rem;
    margin: 0 -0.5rem;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-muted);
    transition: background-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
    text-decoration: none;
}
.contact-row:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}
.contact-row .cr-arrow { color: var(--accent); }
.contact-row .cr-key { color: var(--text-dim); }
.contact-row .cr-val { color: var(--text); }
.contact-row .cr-hint {
    font-size: 0.7rem;
    color: var(--text-dim);
    opacity: 0;
    transition: opacity 0.2s var(--ease-out);
}
.contact-row:hover .cr-hint { opacity: 1; }
.contact-row.copied .cr-hint {
    opacity: 1;
    color: var(--accent-bright);
}

.terminal-cursor {
    display: inline-block;
    width: 0.6ch;
    height: 1em;
    background: var(--text);
    vertical-align: -0.15em;
    animation: caret-blink 1.05s steps(2, end) infinite;
}

/* === Magnetic CTA ======================================================== */
.btn-magnetic {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    background: var(--accent);
    color: #000;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.25s var(--ease-out), box-shadow 0.3s var(--ease-out), background-color 0.25s var(--ease-out);
    box-shadow: 0 8px 28px -10px var(--accent-glow);
    will-change: transform;
}
.btn-magnetic:hover {
    background: var(--accent-bright);
    box-shadow: 0 12px 36px -8px var(--accent-glow);
}

/* === Fade-in on scroll =================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Eyebrow label ======================================================= */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-dim);
}
.eyebrow::before {
    content: '';
    width: 1.25rem;
    height: 1px;
    background: var(--accent);
}

/* === Section heading ===================================================== */
.section-heading {
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: var(--text);
}

/* === Footer ============================================================== */
footer .footer-mono {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}

/* === Tilt cards (3D mouse-tracked) ====================================== */
.tilt {
    transform-style: preserve-3d;
    perspective: 800px;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
    will-change: transform;
}
.tilt:hover {
    box-shadow: 0 24px 60px -30px rgba(0,0,0,0.9), 0 0 30px -10px var(--accent-faint);
}

/* === Bento + tech stagger reveal =========================================
   We animate opacity + filter only (NOT transform), so tilt-on-hover JS
   can own the `transform` property without fighting the reveal animation.
   ========================================================================= */
.bento > .card,
.tech-grid > .tech-card {
    opacity: 0;
    filter: blur(6px);
    transition: opacity 0.75s var(--ease-out), filter 0.75s var(--ease-out);
}
.fade-in.is-visible .bento > .card,
.fade-in.is-visible .tech-grid > .tech-card {
    opacity: 1;
    filter: blur(0);
}
.fade-in.is-visible .bento > :nth-child(1),
.fade-in.is-visible .tech-grid > :nth-child(1)  { transition-delay: 0.05s; }
.fade-in.is-visible .bento > :nth-child(2),
.fade-in.is-visible .tech-grid > :nth-child(2)  { transition-delay: 0.12s; }
.fade-in.is-visible .bento > :nth-child(3),
.fade-in.is-visible .tech-grid > :nth-child(3)  { transition-delay: 0.19s; }
.fade-in.is-visible .bento > :nth-child(4),
.fade-in.is-visible .tech-grid > :nth-child(4)  { transition-delay: 0.26s; }
.fade-in.is-visible .bento > :nth-child(5),
.fade-in.is-visible .tech-grid > :nth-child(5)  { transition-delay: 0.33s; }
.fade-in.is-visible .tech-grid > :nth-child(6)  { transition-delay: 0.40s; }
.fade-in.is-visible .tech-grid > :nth-child(7)  { transition-delay: 0.47s; }
.fade-in.is-visible .tech-grid > :nth-child(8)  { transition-delay: 0.54s; }
.fade-in.is-visible .tech-grid > :nth-child(9)  { transition-delay: 0.61s; }
.fade-in.is-visible .tech-grid > :nth-child(10) { transition-delay: 0.68s; }
.fade-in.is-visible .tech-grid > :nth-child(11) { transition-delay: 0.75s; }
.fade-in.is-visible .tech-grid > :nth-child(12) { transition-delay: 0.82s; }
.fade-in.is-visible .tech-grid > :nth-child(13) { transition-delay: 0.89s; }
.fade-in.is-visible .tech-grid > :nth-child(14) { transition-delay: 0.96s; }
.fade-in.is-visible .tech-grid > :nth-child(15) { transition-delay: 1.03s; }

/* === Philosophy shimmer on reveal ======================================= */
.philosophy-card.is-visible::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, transparent 28%, rgba(52, 211, 153, 0.07) 50%, transparent 72%);
    background-size: 220% 100%;
    animation: shimmer 5.5s ease-in-out 1s infinite;
    pointer-events: none;
    z-index: 0;
}
.philosophy-card > * { position: relative; z-index: 1; }
@keyframes shimmer {
    0%   { background-position: 220% 0; }
    50%  { background-position: -220% 0; }
    100% { background-position: 220% 0; }
}

/* === Marquee band (tech keywords) ======================================= */
.marquee {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0.9rem 0;
    margin: 1.5rem 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    background:
        radial-gradient(circle at center, rgba(16, 185, 129, 0.04), transparent 70%);
}
.marquee-track {
    display: inline-flex;
    gap: 2.2rem;
    white-space: nowrap;
    animation: marquee 55s linear infinite;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--text-dim);
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { display: inline-flex; align-items: center; gap: 0.55rem; }
.marquee-track .sep { color: var(--accent); }
.marquee-track strong { color: var(--text-muted); font-weight: 500; }
@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* === Count-up stat numbers ============================================== */
.stat-num[data-count] {
    font-variant-numeric: tabular-nums;
}

/* === Hero mouse parallax ================================================ */
.hero-grid,
.hero-noise {
    transform: translate3d(var(--px, 0), var(--py, 0), 0);
    transition: transform 0.6s var(--ease-out);
    will-change: transform;
}

/* === Live log ticker (footer) =========================================== */
.log-ticker {
    overflow: hidden;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    height: 1.4em;
    line-height: 1.4em;
    min-width: 0;
    flex: 1;
    max-width: 100%;
}
.log-ticker .log-line {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.log-ticker .log-line.in {
    opacity: 1;
    transform: translateY(0);
}
.log-ticker .log-line .lvl-ok { color: var(--accent); }
.log-ticker .log-line .lvl-info { color: #38bdf8; }
.log-ticker .log-line .lvl-warn { color: #f59e0b; }

/* === Section reveal: heading underline scribble ========================= */
.section-heading {
    position: relative;
    display: inline-block;
}
.fade-in.is-visible .section-heading::after {
    content: '';
    position: absolute;
    left: 0; bottom: -8px;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), transparent);
    animation: underline-grow 0.9s var(--ease-out) 0.2s forwards;
}
@keyframes underline-grow {
    to { width: 64px; }
}

/* === Reduced motion ====================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-grid { animation: none; }
    .status-dot { animation: none; }
    .caret, .terminal-cursor { animation: none; opacity: 1; }
    .marquee-track { animation: none; }
    .philosophy-card.is-visible::after { animation: none; }
}
