/* ========================================
   HORIZON CREATIVES STUDIO
   Complete Design System — Built from scratch 27 Mar 2026
   Stack: Vanilla CSS + GSAP ScrollTrigger
   Theme: Dark (#0a0a0a) + Gold (#DD9933) + Purple (#7c3aed)
   ======================================== */

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Backgrounds */
    --bg: #0a0a0a;
    --bg-elevated: #111113;
    --bg-card: #161618;
    --bg-card-hover: #1a1a1e;

    /* Text */
    --text: #f4f4f5;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --text-dim: #52525b;

    /* Accents */
    --accent-gold: #DD9933;
    --accent-purple: #7c3aed;
    --accent-gradient: linear-gradient(135deg, #DD9933, #7c3aed);

    /* Glass */
    --glass-bg: rgba(255,255,255,0.03);
    --glass-border: rgba(255,255,255,0.08);
    --glass-hover: rgba(255,255,255,0.06);

    /* Borders */
    --border: #27272a;
    --border-subtle: rgba(255,255,255,0.06);

    /* Radii */
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;

    /* Fonts */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing scale */
    --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
    --sp-4: 1rem;     --sp-6: 1.5rem;    --sp-8: 2rem;
    --sp-12: 3rem;    --sp-16: 4rem;     --sp-24: 6rem;
    --sp-32: 8rem;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 3rem);
}

/* ===== TYPOGRAPHY UTILITIES ===== */
.text-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gray {
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--sp-3);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-subtitle, .page-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: var(--sp-3);
    max-width: 560px;
    margin-inline: auto;
    line-height: 1.7;
}

.section-header { margin-bottom: var(--sp-12); }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-inline: auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.3s ease,
                background 0.25s ease,
                border-color 0.25s ease;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(221,153,51,0.25), 0 0 0 1px rgba(221,153,51,0.1);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}
.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 0 16px rgba(221,153,51,0.08);
}

.btn-large { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-disabled { opacity: 0.35; pointer-events: none; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.4s ease, padding 0.3s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
}

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

.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 36px; width: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}
.nav-link:hover { color: var(--text); }

.nav-link-cta {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 32px; height: 24px;
    position: relative;
}
.nav-hamburger span {
    display: block; position: absolute; left: 0;
    width: 100%; height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}
.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-hamburger span:nth-child(3) { bottom: 0; }

.nav-hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.97);
    z-index: 999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu-links { display: flex; flex-direction: column; align-items: center; gap: var(--sp-8); }
.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(124,58,237,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 30% 60%, rgba(221,153,51,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 70% 30%, rgba(124,58,237,0.04) 0%, transparent 50%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

#heroCanvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 0 var(--sp-6);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-6);
}

.hero-line { display: block; }
.hero-line-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto var(--sp-8);
}

.hero-cta {
    display: flex;
    gap: var(--sp-4);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: var(--sp-8);
    left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
    z-index: 2;
}
.hero-scroll span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.hero-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(180deg, var(--text-dim), transparent);
}

/* ===== PAGE HEADER (internal pages) ===== */
.page-header {
    padding: 140px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 700px; height: 400px;
    top: -120px; left: 50%; transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(124,58,237,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* ===== SECTIONS — General ===== */
section { position: relative; overflow: hidden; }

/* ===== STORY / TIMELINE ===== */
.story {
    padding: var(--sp-24) 0;
    position: relative;
    overflow: hidden;
    background: #000;
}

.timeline {
    position: relative;
    padding-left: 48px;
    max-width: 720px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(221,153,51,0.3), rgba(124,58,237,0.3), transparent);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: var(--sp-12);
    padding: var(--sp-6) var(--sp-6);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}
.timeline-item:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
}

.timeline-marker {
    position: absolute;
    left: -48px; top: 24px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid rgba(221,153,51,0.4);
    z-index: 1;
    transition: all 0.3s ease;
}
.timeline-item:hover .timeline-marker {
    border-color: var(--accent-gold);
    box-shadow: 0 0 16px rgba(221,153,51,0.3);
}

.timeline-item.active .timeline-marker {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    box-shadow: 0 0 20px rgba(221,153,51,0.4), 0 0 40px rgba(221,153,51,0.15);
}

.timeline-year {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: var(--sp-2);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: var(--sp-2);
}

.timeline-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== AREA SPLITS (Homepage service previews) ===== */
.area { padding: var(--sp-24) 0; }
.area:nth-child(even of .area) { background: rgba(255,255,255,0.012); }

.area-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
}

.area-reversed .area-split { direction: rtl; }
.area-reversed .area-split > * { direction: ltr; }

@media (max-width: 900px) {
    .area-split { grid-template-columns: 1fr; gap: var(--sp-8); }
    .area-reversed .area-split { direction: ltr; }
}

/* Area visual */
.area-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.area-video, .area-media-img img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.6s ease;
}
.area-media:hover .area-video,
.area-media-img:hover img { transform: scale(1.02); }

/* Code block visual */
.area-media-code, .code-block {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: none;
}

.code-header {
    display: flex; align-items: center; gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}
.code-dot { width: 10px; height: 10px; border-radius: 50%; }
.code-dot.red { background: #ff5f57; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #28c840; }
.code-filename {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-left: auto;
}

.code-content {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    line-height: 1.7;
    color: var(--text-secondary);
    overflow-x: auto;
}
.code-kw { color: #c792ea; }
.code-fn { color: #82aaff; }
.code-str { color: #c3e88d; }
.code-cmt { color: #545454; }
.code-val { color: #f78c6c; }

/* Area text */
.area-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--sp-3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.area-icon {
    width: 16px; height: 16px;
    filter: brightness(0) saturate(100%) invert(68%) sepia(55%) saturate(500%) hue-rotate(5deg) brightness(95%) contrast(90%);
}

.area-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: var(--sp-4);
}

.area-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--sp-6);
}
.area-desc strong { color: var(--text); font-weight: 600; }

.area-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: var(--sp-6);
}
.area-tags span {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    padding: 5px 12px;
    background: rgba(221,153,51,0.06);
    border: 1px solid rgba(221,153,51,0.12);
    border-radius: var(--radius-full);
    color: var(--accent-gold);
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
}
.area-tags span:hover {
    background: rgba(221,153,51,0.12);
    border-color: rgba(221,153,51,0.25);
}

/* AI section subtle bg */
.area-ai {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(124,58,237,0.02) 50%, var(--bg) 100%);
}

/* ===== SERVICE PREVIEW 1: FILM — Cinematic full-width strip ===== */
.svc-film {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.svc-film-bg {
    position: absolute; inset: 0;
}
.svc-film-bg video {
    width: 100%; height: 100%; object-fit: cover;
}
.svc-film-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.5) 55%, rgba(10,10,10,0.2) 100%);
}
.svc-film-content {
    position: relative; z-index: 2;
    max-width: 520px;
    padding: var(--sp-16) clamp(1.5rem, 5vw, 5rem);
}
.svc-film-h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: var(--sp-4);
}
.svc-film-body {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--sp-6);
}

/* ===== FILM MOBILE SPLIT LAYOUT ===== */
.svc-film-mobile { display: none; }

@media (max-width: 768px) {
    .svc-film-desktop { display: none; }
    .svc-film-mobile {
        display: block;
        position: relative;
        overflow: hidden;
        background: #000;
    }
    .svc-film-mobile-top {
        position: relative;
        z-index: 2;
        padding: 48px 24px 0;
        margin-bottom: -14px;
    }
    .svc-film-mobile-top .svc-film-h2 {
        font-family: var(--font-heading);
        font-size: 1.6rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.2;
        margin-bottom: 0;
    }
    .svc-film-mobile-video {
        position: relative;
        aspect-ratio: 16/9;
        overflow: hidden;
    }
    .svc-film-mobile-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .svc-film-mobile-bottom {
        position: relative;
        z-index: 2;
        padding: 0 24px 48px;
        margin-top: -14px;
    }
    .svc-film-mobile-bottom .svc-film-body {
        font-size: 0.85rem;
        color: var(--text-secondary);
        line-height: 1.8;
        margin-bottom: 20px;
    }
}

/* ===== SERVICE 2: MARKETING — Bento metrics dashboard ===== */
/* Mobile: clean vertical stack */
.svc-mkt {
    padding: var(--sp-16) 0;
    position: relative;
    overflow: hidden;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.svc-mkt-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.svc-mkt-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 50% at 50% 45%, rgba(221,153,51,0.08) 0%, transparent 100%);
}
.svc-mkt-bg-dots {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}
.svc-mkt-bg-dots:nth-child(2) {
    transform: scaleX(-1);
}
.svc-mkt-bg-dots:nth-child(3) {
    transform: scaleY(-1);
}
.svc-mkt-bg-dots:nth-child(4) {
    transform: scale(-1, -1);
}
.story .svc-mkt-bg-dots {
    left: 25%;
}
.story .svc-mkt-bg-dots:nth-child(2) {
    left: 25%;
}
.story .svc-mkt-bg-dots:nth-child(3) {
    left: 25%;
}
.story .svc-mkt-bg-dots:nth-child(4) {
    left: 25%;
}
/* Services: offset layers to fill full width */
.s-film .svc-mkt-bg-dots:nth-child(2) { left: 35%; }
.s-film .svc-mkt-bg-dots:nth-child(3) { left: -25%; top: -10%; }
.s-film .svc-mkt-bg-dots:nth-child(4) { left: 15%; top: -20%; }
.s-mkt .svc-mkt-bg-dots:nth-child(2) { left: 30%; }
.s-mkt .svc-mkt-bg-dots:nth-child(3) { left: -20%; }
.s-mkt .svc-mkt-bg-dots:nth-child(4) { left: 20%; top: -15%; }
.s-web .svc-mkt-bg-dots:nth-child(2) { left: 40%; }
.s-web .svc-mkt-bg-dots:nth-child(3) { left: -15%; top: -10%; }
.s-ai .svc-mkt-bg-dots:nth-child(2) { left: 25%; }
.s-ai .svc-mkt-bg-dots:nth-child(3) { left: -30%; top: -15%; }
.svc-mkt .container {
    position: relative;
    z-index: 1;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.svc-mkt-h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: var(--sp-4);
}
.svc-mkt-body {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--sp-6);
    max-width: 540px;
}
.svc-mkt-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: var(--sp-6);
}
.svc-mkt-metric {
    padding: 16px;
    background: rgba(12,12,14,0.95);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    transition: border-color 0.3s ease;
}
.svc-mkt-metric:hover { border-color: rgba(221,153,51,0.25); }
.svc-mkt-metric-val {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.svc-mkt-metric-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}
/* Desktop: text left, metrics bento right */
@media (min-width: 901px) {
    .svc-mkt { padding: var(--sp-24) 0; }
    .svc-mkt .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-12);
        align-items: center;
    }
    .svc-mkt-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .svc-mkt-metric { padding: 24px; }
    .svc-mkt-metric-val { font-size: 2rem; }
}

/* ===== SERVICE 3: WEB DEV — Full-bleed terminal, text inside ===== */
/* Mobile: clean stack */
.svc-web {
    padding: var(--sp-16) 0;
    position: relative;
    overflow: hidden;
}
.svc-web-inner {
    position: relative; z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 3rem);
}
.svc-web-text {
    margin-bottom: var(--sp-6);
}
.svc-web-h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: var(--sp-4);
}
.svc-web-body {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--sp-6);
}
.svc-web-terminal {
    background: #0d0d0f;
    border: 1px solid #1e1e22;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.svc-web-bar {
    display: flex; align-items: center; gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid #1e1e22;
    background: #141416;
}
.svc-web-dot { width: 10px; height: 10px; border-radius: 50%; }
.svc-web-dot.r { background: #ff5f57; }
.svc-web-dot.y { background: #ffbd2e; }
.svc-web-dot.g { background: #28c840; }
.svc-web-bar-title {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: #3f3f46;
    margin-left: auto;
}
.svc-web-code {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.76rem;
    line-height: 2;
    color: #a1a1aa;
}
.svc-web-code .prompt { color: #4ade80; font-weight: 600; }
.svc-web-code .cmd { color: #e4e4e7; }
.svc-web-code .result { color: var(--accent-gold); font-weight: 600; }
.svc-web-code .dim { color: #52525b; }
/* Desktop: grid background, wider terminal, perspective */
@media (min-width: 901px) {
    .svc-web {
        padding: var(--sp-24) 0;
        background-image:
            linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
        background-size: 60px 60px;
    }
    .svc-web::before {
        content: '';
        position: absolute; inset: 0;
        background: none;
        pointer-events: none;
    }
    .svc-web-text {
        text-align: center;
        max-width: 600px;
        margin: 0 auto var(--sp-8);
    }
    .svc-web-terminal {
        box-shadow: none;
        transform: perspective(1200px) rotateX(2deg);
        transition: transform 0.5s ease;
    }
    .svc-web-terminal:hover {
        transform: perspective(1200px) rotateX(0deg);
    }
    .svc-web-code { padding: 28px 32px; font-size: 0.82rem; line-height: 2.2; }
}

/* ===== SERVICE 4: AI — Canvas neural network + text ===== */
/* Mobile first */
.svc-ai {
    padding: var(--sp-16) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, #0a0a0a 0%, #0d0a14 50%, #0a0a0a 100%);
}
.svc-ai .container {
    position: relative; z-index: 2;
}
.svc-ai-glass {
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.svc-ai-top {
    margin-bottom: var(--sp-8);
}
.svc-ai-h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: var(--sp-4);
}
.svc-ai-body {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: var(--sp-6);
}
.svc-ai-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: var(--sp-6);
    margin-bottom: var(--sp-8);
}
.svc-ai-cap {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    padding: 6px 14px;
    background: rgba(124,58,237,0.08);
    border: 1px solid rgba(124,58,237,0.18);
    border-radius: var(--radius-full);
    color: #a78bfa;
}
/* Service cards — mobile: stacked full width, generous size */
.svc-ai-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: var(--sp-8);
}
.svc-ai-service {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 24px;
}
.svc-ai-service i {
    font-size: 1.3rem;
    color: #a78bfa;
    margin-bottom: 10px;
    display: block;
}
.svc-ai-service h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}
.svc-ai-service p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}
/* AI Canvas — hidden on mobile */
#aiNetworkCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
}
/* Desktop */
@media (min-width: 901px) {
    .svc-ai {
        padding: var(--sp-24) 0;
    }
    .svc-ai::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(10,10,10,0.8);
        z-index: 1;
        pointer-events: none;
    }
    #aiNetworkCanvas { opacity: 1; }
    .svc-ai .container { z-index: 2; max-width: 1400px; }
    .svc-ai-glass {
        display: grid;
        grid-template-columns: 1fr 340px;
        grid-template-rows: auto auto auto;
        column-gap: 60px;
        max-width: none;
        width: 100%;
        padding: 0;
    }
    .svc-ai-top {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: var(--sp-12);
    }
    .svc-ai-h2 {
        font-size: clamp(2.2rem, 3.5vw, 3rem);
        margin-bottom: var(--sp-6);
    }
    .svc-ai-body {
        font-size: 1.08rem;
        line-height: 1.9;
    }
    .svc-ai-capabilities {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        margin-top: 0;
        gap: 14px 12px;
        justify-content: flex-end;
        align-content: center;
    }
    .svc-ai-cap {
        font-size: 0.75rem;
        padding: 8px 18px;
    }
    .svc-ai-services {
        grid-column: 1 / -1;
        grid-row: 2;
    }
    .svc-ai-glass > .btn {
        grid-column: 1;
        grid-row: 3;
        justify-self: start;
    }
    /* Cards: 4 columns, fill the width */
    .svc-ai-services {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-bottom: var(--sp-8);
    }
    .svc-ai-service {
        background: rgba(124,58,237,0.04);
        border-color: rgba(124,58,237,0.1);
        border-radius: 14px;
        padding: 32px 28px;
        transition: all 0.3s ease;
    }
    .svc-ai-service:hover {
        background: rgba(124,58,237,0.09);
        border-color: rgba(124,58,237,0.22);
    }
    .svc-ai-service i {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }
    .svc-ai-service h3 {
        font-size: 1.08rem;
        margin-bottom: 10px;
    }
    .svc-ai-service p {
        font-size: 0.9rem;
        line-height: 1.75;
    }
}

/* ===== PRODUCTS ===== */
.own-products {
    padding: var(--sp-24) 0;
    position: relative;
    overflow: hidden;
    background: #000;
}
.own-products > .container,
.story > .container {
    position: relative;
    z-index: 1;
}

.own-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
    align-items: stretch;
}
@media (max-width: 900px) { .own-products-grid { grid-template-columns: 1fr; } }

.own-product-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: var(--sp-12) var(--sp-8) var(--sp-8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.own-product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.own-product-card:hover {
    border-color: rgba(255,255,255,0.15);
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    transform: translateY(-6px);
}
.own-product-card:hover::before { opacity: 1; }

.own-product-featured {
    border-color: rgba(221,153,51,0.2);
}
.own-product-featured::before {
    opacity: 0.5;
}
.own-product-featured:hover {
    border-color: rgba(221,153,51,0.35);
}
.own-product-featured:hover::before { opacity: 1; }

.product-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(34,197,94,0.12);
    color: #4ade80;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: var(--sp-4);
}
.product-badge-soon {
    background: rgba(221,153,51,0.1);
    color: var(--accent-gold);
}

.own-product-logo { height: 32px; margin-bottom: var(--sp-3); }
.own-product-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--sp-1);
}
.own-product-type {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-gold);
    letter-spacing: 0.04em;
    margin-bottom: var(--sp-4);
}
.own-product-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--sp-6);
}

.own-product-features {
    display: flex; flex-wrap: wrap; gap: var(--sp-3);
    margin-bottom: var(--sp-6);
}
.own-product-features span {
    font-size: 0.78rem;
    color: var(--text-secondary);
    display: flex; align-items: center; gap: 6px;
}
.own-product-features span i { color: var(--accent-gold); font-size: 0.9rem; }

.product-logo-placeholder {
    width: 48px; height: 48px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(221,153,51,0.1), rgba(124,58,237,0.1));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: var(--sp-3);
}

/* ===== NUMBERS ===== */
.numbers {
    padding: var(--sp-16) 0;
    position: relative;
    overflow: hidden;
    background: #050505;
    border-top: 1px solid rgba(221,153,51,0.1);
    border-bottom: 1px solid rgba(221,153,51,0.1);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
    position: relative;
}
@media (max-width: 768px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 0; } }

.number-item {
    padding: var(--sp-12) var(--sp-6);
    position: relative;
    transition: all 0.3s ease;
}
.number-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(221,153,51,0.15), transparent);
}
@media (max-width: 768px) {
    .number-item:nth-child(2)::after { display: none; }
    .number-item:nth-child(1)::after,
    .number-item:nth-child(3)::after { right: 0; }
    .number-item:nth-child(1),
    .number-item:nth-child(2) {
        border-bottom: 1px solid rgba(221,153,51,0.06);
    }
}

.number-value {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.number-suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.number-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: var(--sp-3);
    display: block;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--sp-24) 0;
    position: relative;
    overflow: hidden;
    background: #050505;
}

.testimonials-carousel { position: relative; min-height: 280px; }

.testimonial-card {
    display: none;
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: var(--sp-12) var(--sp-8);
    max-width: 680px;
    margin: 0 auto;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px; left: 24px;
    font-family: Georgia, serif;
    font-size: 6rem;
    line-height: 1;
    color: rgba(221,153,51,0.12);
    pointer-events: none;
}
.testimonial-card.active { display: block; }

.testimonial-stars {
    display: flex; gap: 3px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: var(--sp-4);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: var(--sp-6);
}

.testimonial-author {
    display: flex; align-items: center; gap: var(--sp-3);
    margin-bottom: var(--sp-3);
}
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(221,153,51,0.15), rgba(124,58,237,0.15));
    border: 1px solid rgba(221,153,51,0.2);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-gold);
}
.testimonial-name {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    display: block;
}
.testimonial-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.testimonial-result {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--accent-gold);
    display: flex; align-items: center; gap: 8px;
    padding: var(--sp-3) var(--sp-4);
    background: rgba(221,153,51,0.06);
    border: 1px solid rgba(221,153,51,0.1);
    border-radius: var(--radius-full);
    width: fit-content;
    margin-top: var(--sp-4);
}

.testimonials-nav {
    display: flex; align-items: center; justify-content: center;
    gap: var(--sp-4);
    margin-top: var(--sp-8);
}
.testimonial-prev, .testimonial-next {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-muted);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}
.testimonial-prev:hover, .testimonial-next:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(221,153,51,0.06);
    box-shadow: 0 0 20px rgba(221,153,51,0.1);
}

.testimonial-dots { display: flex; gap: 10px; }
.testimonial-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none; cursor: pointer;
    transition: all 0.25s ease;
}
.testimonial-dot:hover { background: rgba(221,153,51,0.3); }
.testimonial-dot.active {
    background: var(--accent-gold);
    box-shadow: 0 0 8px rgba(221,153,51,0.4);
}

/* ===== CTA ===== */
.cta {
    padding: var(--sp-24) 0;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #12100a 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(221,153,51,0.08);
}
.cta::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(221,153,51,0.06) 0%, transparent 60%);
    pointer-events: none;
    border-radius: 50%;
}

.cta-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--sp-3);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 600;
    margin-bottom: var(--sp-3);
    max-width: 520px;
    margin-inline: auto;
    line-height: 1.3;
}

.cta-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: var(--sp-8);
}

.cta-buttons {
    display: flex; gap: var(--sp-4);
    justify-content: center; flex-wrap: wrap;
}
.cta-buttons .btn i { margin-right: 4px; }

.cta-guarantee {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: var(--sp-4);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ===== FOOTER ===== */
.footer {
    padding: var(--sp-16) 0 var(--sp-8);
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--sp-8);
    margin-bottom: var(--sp-12);
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo { height: 32px; margin-bottom: var(--sp-4); }

.footer-about {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--sp-4);
}
.footer-about small { color: var(--text-dim); }

.footer-social { display: flex; gap: var(--sp-4); }
.footer-social a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: color 0.2s ease;
}
.footer-social a:hover { color: var(--accent-gold); }

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: var(--sp-4);
    color: var(--text);
}

.footer-col a {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: var(--sp-2);
    transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--accent-gold); }

.footer-bottom {
    text-align: center;
    padding-top: var(--sp-8);
    border-top: 1px solid var(--border-subtle);
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--sp-12);
    align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form-group { margin-bottom: var(--sp-4); }
.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: var(--sp-2);
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.88rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(221,153,51,0.1), 0 0 16px rgba(221,153,51,0.04);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }

.contact-info { display: flex; flex-direction: column; gap: var(--sp-4); }

.contact-info-card {
    display: flex; align-items: center; gap: var(--sp-4);
    padding: var(--sp-4);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.25s ease;
}
.contact-info-card:hover { border-color: rgba(221,153,51,0.15); }

.contact-info-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(221,153,51,0.08);
    color: var(--accent-gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.contact-info-card p, .contact-info-card a {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-signals { margin-top: var(--sp-4); }
.trust-item {
    display: flex; align-items: center; gap: var(--sp-2);
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: var(--sp-2);
}
.trust-item i { color: var(--accent-gold); font-size: 0.85rem; }

/* ===== LEGAL (Privacy page) ===== */
.legal-content { padding: 0 0 var(--sp-24); }

.legal-body {
    max-width: 720px;
    margin: 0 auto;
}
.legal-body h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 600;
    margin: 40px 0 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}
.legal-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem; font-weight: 600;
    margin: 24px 0 8px;
}
.legal-body p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}
.legal-body ul { margin: 8px 0 16px 20px; }
.legal-body li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 6px;
}
.legal-body a { color: var(--accent-gold); text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { color: var(--text); }

/* ===== EFFECTS ===== */

/* Film grain */
body::after {
    content: '';
    position: fixed; inset: 0;
    opacity: 0.02;
    pointer-events: none;
    z-index: 9998;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Button hover glow */
.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(221,153,51,0.25), 0 0 0 1px rgba(221,153,51,0.1);
}

/* Card mouse-tracking glow (requires JS for --mx, --my) */
.glow-card {
    position: relative; overflow: hidden;
}
.glow-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(221,153,51,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.glow-card:hover::before { opacity: 1; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.1ms !important;
    }
    body::after { display: none; }
    .hero-scroll { display: none; }
}
