/* ============================================================
   ADRENALIN - Landing Page Styles
   Dark crimson / black theme - smooth, aggressive, clean
   ============================================================ */

/* --- Accessibility --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 8px 16px;
    background: var(--crimson);
    color: #fff;
    border-radius: 0 0 8px 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --crimson: #d42020;
    --crimson-bright: #ef3333;
    --crimson-dark: #8b1515;
    --crimson-glow: rgba(212, 32, 32, 0.4);
    --bg-black: #08080a;
    --bg-card: #0e0e12;
    --bg-card-hover: #141418;
    --bg-subtle: #111115;
    --text-primary: #f0ece8;
    --text-secondary: #8a8690;
    --text-dim: #5a5660;
    --border-subtle: rgba(255, 255, 255, 0.04);
    --border-hover: rgba(212, 32, 32, 0.25);
    --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', sans-serif;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    background: var(--bg-black);
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(212, 32, 32, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(212, 32, 32, 0.02) 0%, transparent 50%);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--crimson);
    color: #fff;
}

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

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-black); }
::-webkit-scrollbar-thumb {
    background: rgba(212, 32, 32, 0.3);
    border-radius: 4px;
    border: 2px solid var(--bg-black);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 32, 32, 0.5);
}

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

/* --- Dot Grid (subtle depth) --- */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 70%);
}

/* --- Ambient Glow (hero background) --- */
.ambient-glow {
    position: fixed;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background:
        radial-gradient(circle, rgba(212, 32, 32, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 40%, rgba(212, 32, 32, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(139, 21, 21, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: ambientPulse 8s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
    0% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.12); }
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(8, 8, 10, 0.7);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 1px 0 rgba(212, 32, 32, 0.03);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-logo::after {
    content: '';
    display: block;
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.08);
    margin-left: 8px;
}

.nav-logo-img {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 32, 32, 0.25));
    transition: filter 0.35s ease, transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-logo:hover .nav-logo-img {
    filter: drop-shadow(0 0 16px rgba(212, 32, 32, 0.4));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    transition: color 0.3s ease, background 0.3s ease;
    text-transform: uppercase;
    position: relative;
    padding: 6px 14px;
    border-radius: 10px;
}

.nav-links a::after { display: none; }

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

/* "Get it" CTA - last link styled as button */
.nav-links li:last-child a,
.nav-links li:last-child a.active {
    background: var(--crimson);
    color: #fff;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 10px;
    margin-left: 8px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 transparent;
}

.nav-links li:last-child a:hover {
    background: var(--crimson-bright);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212, 32, 32, 0.3);
}

.nav-links li:last-child a:active {
    transform: translateY(0);
}
}

/* --- Page Hero (subpages) --- */
.page-hero {
    padding-top: 140px;
    padding-bottom: 40px;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 40px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 100px;
    border: 1px solid rgba(212, 32, 32, 0.25);
    background: rgba(212, 32, 32, 0.06);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--crimson-bright);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s ease 0.2s forwards;
    box-shadow: 0 0 24px rgba(212, 32, 32, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--crimson);
    box-shadow: 0 0 12px var(--crimson-glow), 0 0 4px var(--crimson);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.8s ease 0.35s forwards;
}

.hero h1 .accent {
    background: linear-gradient(135deg, var(--crimson-bright) 0%, var(--crimson) 50%, var(--crimson-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 32px rgba(212, 32, 32, 0.2));
}

.hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.12rem);
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.75;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.8s ease 0.65s forwards;
    margin-bottom: 48px;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* --- Hero Showcase (app mockup) --- */
.hero-showcase {
    width: 100%;
    max-width: 820px;
    margin-bottom: 16px;
    position: relative;
}

.reveal-scale {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-scale.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.showcase-frame {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.02), 0 0 60px rgba(212, 32, 32, 0.04);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s ease;
}

.showcase-frame:hover {
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.7), 0 0 80px rgba(212, 32, 32, 0.12), 0 0 0 1px rgba(212, 32, 32, 0.2);
    border-color: rgba(212, 32, 32, 0.12);
}

.showcase-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-subtle);
}

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

.showcase-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.showcase-dots span:first-child { background: var(--crimson-dark); }

.showcase-title {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    text-transform: uppercase;
}

.showcase-body {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.showcase-screenshot {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Animated glow edge on the frame */
.showcase-glow-edge {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(135deg, rgba(212, 32, 32, 0.08), transparent 40%, transparent 60%, rgba(212, 32, 32, 0.05));
    animation: glowEdgeShift 6s ease-in-out infinite alternate;
}

@keyframes glowEdgeShift {
    0% { background: linear-gradient(135deg, rgba(212, 32, 32, 0.08), transparent 40%, transparent 60%, rgba(212, 32, 32, 0.03)); }
    50% { background: linear-gradient(225deg, rgba(212, 32, 32, 0.06), transparent 40%, transparent 60%, rgba(212, 32, 32, 0.08)); }
    100% { background: linear-gradient(315deg, rgba(212, 32, 32, 0.08), transparent 40%, transparent 60%, rgba(212, 32, 32, 0.04)); }
}

/* Backdrop glow behind the showcase */
.showcase-backdrop-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(ellipse at center, rgba(212, 32, 32, 0.1) 0%, rgba(212, 32, 32, 0.03) 40%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: backdropPulse 5s ease-in-out infinite alternate;
    filter: blur(40px);
}

@keyframes backdropPulse {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.showcase-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 32, 32, 0.15), transparent);
    animation: scanline 4s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--crimson);
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(212, 32, 32, 0.15);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary:hover {
    background: var(--crimson-bright);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 32, 32, 0.4), 0 4px 16px rgba(212, 32, 32, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212, 32, 32, 0.3);
    transition-duration: 0.1s;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.35s ease,
                border-color 0.35s ease,
                background 0.35s ease,
                transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
    box-shadow: 0 0 0 transparent;
}

.btn-secondary:hover {
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.04);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary:active {
    transform: translateY(0);
    transition-duration: 0.1s;
}

/* --- Stats Bar --- */
.stats-bar {
    display: flex;
    gap: 56px;
    justify-content: center;
    padding: 32px 24px;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.stat {
    text-align: center;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat:hover {
    transform: translateY(-2px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
    background: linear-gradient(180deg, var(--text-primary) 40%, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* --- Section Base --- */
section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 16px;
    text-shadow: 0 0 24px rgba(212, 32, 32, 0.3);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 16px;
    background: linear-gradient(180deg, #ffffff 20%, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Feature Categories --- */
.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 32px 28px;
    transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--crimson), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 0 32px rgba(212, 32, 32, 0.04);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.feature-wide {
    grid-column: span 2;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(212, 32, 32, 0.08);
    border: 1px solid rgba(212, 32, 32, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--crimson-bright);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card:hover .feature-icon {
    background: rgba(212, 32, 32, 0.14);
    border-color: rgba(212, 32, 32, 0.25);
    box-shadow: 0 0 20px rgba(212, 32, 32, 0.15);
    transform: translateY(-2px);
}

.feature-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    transition: color 0.35s ease;
}

.feature-card:hover h3 {
    color: #fff;
}

.feature-card p {
    font-size: 0.83rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 14px;
    background: rgba(212, 32, 32, 0.08);
    color: var(--crimson-bright);
    border: 1px solid rgba(212, 32, 32, 0.12);
}

/* --- Macro List --- */
.macro-section {
    max-width: 1100px;
    margin: 0 auto;
}

.macro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.macro-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 20px;
    transition: background 0.35s ease,
                border-color 0.35s ease,
                transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
    cursor: default;
    box-shadow: 0 0 0 transparent;
}

.macro-item:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2), 0 0 16px rgba(212, 32, 32, 0.03);
}

.macro-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.macro-item p {
    font-size: 0.76rem;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.6;
}

/* --- Highlight Section (split) --- */
.showcase-split { padding: 40px 24px; }

.highlight {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.highlight-content { max-width: 480px; }

.highlight-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-content p {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.highlight-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Highlight Video (precision control) --- */
.highlight-video-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    transition: border-color 0.4s ease,
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.highlight-video-wrap:hover {
    border-color: var(--border-hover);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 32px rgba(212, 32, 32, 0.06);
}

.highlight-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.highlight-video-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 32, 32, 0.12), transparent);
    animation: scanline 5s linear infinite;
    pointer-events: none;
}

/* --- Video Showcase Row --- */
.video-showcase {
    max-width: 1300px;
    margin: 0 auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-showcase.two-col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
}

.video-showcase.single {
    grid-template-columns: 1fr;
    max-width: 800px;
}

.video-card {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-card-inner {
    aspect-ratio: 16/10;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease,
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 0 transparent;
}

.video-card-inner:hover {
    border-color: var(--border-hover);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.45), 0 0 32px rgba(212, 32, 32, 0.08);
    transform: translateY(-4px);
}

.video-card-inner iframe,
.video-card-inner video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: cover;
}

/* --- Lightbox --- */
.lightbox-trigger {
    cursor: pointer;
}

.lightbox-click-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: background 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
    cursor: pointer;
}

.lightbox-overlay.active {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 32px 96px rgba(0, 0, 0, 0.6), 0 0 48px rgba(212, 32, 32, 0.08);
    transform: scale(0.6);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    cursor: default;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

.lightbox-content video,
.lightbox-content img {
    display: block;
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.lightbox-content iframe {
    width: 80vw;
    height: 70vh;
    max-width: 1100px;
    max-height: 700px;
    border: none;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 9001;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* --- Pricing Section --- */
.pricing-section {
    text-align: center;
    padding: 100px 24px 120px;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 32, 32, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(212, 32, 32, 0.06);
}

.pricing-card.featured {
    border-color: rgba(212, 32, 32, 0.3);
    background: linear-gradient(180deg, rgba(212, 32, 32, 0.04) 0%, var(--bg-card) 40%);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--crimson), transparent);
    transition: opacity 0.4s ease;
}

.pricing-card.featured:hover {
    border-color: rgba(212, 32, 32, 0.5);
    box-shadow: 0 24px 80px rgba(212, 32, 32, 0.18), 0 12px 40px rgba(0, 0, 0, 0.35);
    background: linear-gradient(180deg, rgba(212, 32, 32, 0.07) 0%, var(--bg-card) 40%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--crimson-bright), var(--crimson));
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(212, 32, 32, 0.4), 0 0 8px rgba(212, 32, 32, 0.2);
    animation: badgeGlow 3s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    0% { box-shadow: 0 4px 20px rgba(212, 32, 32, 0.3), 0 0 8px rgba(212, 32, 32, 0.15); }
    100% { box-shadow: 0 4px 28px rgba(212, 32, 32, 0.5), 0 0 16px rgba(212, 32, 32, 0.25); }
}

.pricing-tier {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 32px;
}

.pricing-currency {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-secondary);
    align-self: flex-start;
    margin-top: 8px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing-period {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-dim);
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    font-size: 0.84rem;
    font-weight: 400;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(212, 32, 32, 0.1);
    border: 1px solid rgba(212, 32, 32, 0.2);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%23d42020' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.btn-pricing {
    width: 100%;
    justify-content: center;
    border: none;
    font-family: var(--font-main);
}

.pricing-card.featured .btn-pricing {
    box-shadow: 0 4px 24px rgba(212, 32, 32, 0.3);
    transition: background 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-card.featured .btn-pricing:hover {
    box-shadow: 0 8px 36px rgba(212, 32, 32, 0.45), 0 2px 12px rgba(212, 32, 32, 0.2);
}

/* --- Free Trial Banner --- */
.trial-banner {
    max-width: 520px;
    margin: 0 auto 48px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-radius: 12px;
    background: rgba(212, 32, 32, 0.04);
    border: 1px solid rgba(212, 32, 32, 0.15);
    text-align: left;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 0 transparent;
}

.trial-banner:hover {
    background: rgba(212, 32, 32, 0.06);
    border-color: rgba(212, 32, 32, 0.25);
    box-shadow: 0 8px 32px rgba(212, 32, 32, 0.06);
}

.trial-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(212, 32, 32, 0.08);
    border: 1px solid rgba(212, 32, 32, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crimson-bright);
}

.trial-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.trial-text span {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
}

.trial-discord-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(88, 101, 242, 0.12);
    border: 1px solid rgba(88, 101, 242, 0.25);
    color: #7289da;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.35s ease,
                border-color 0.35s ease,
                transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease,
                color 0.35s ease;
    box-shadow: 0 0 0 transparent;
}

.trial-discord-btn:hover {
    background: rgba(88, 101, 242, 0.22);
    border-color: rgba(88, 101, 242, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.15);
    color: #8ea1f5;
}

.trial-discord-btn:active {
    transform: translateY(0);
    transition-duration: 0.1s;
}

/* --- Image Showcase Row (mockups) --- */
.image-showcase {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.image-card {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-placeholder {
    aspect-ratio: 4/3;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: background 0.4s ease,
                border-color 0.4s ease,
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 0 transparent;
}

.image-placeholder:hover {
    border-color: var(--border-hover);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 24px rgba(212, 32, 32, 0.05);
    transform: translateY(-4px);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(8, 8, 10, 0.8));
    pointer-events: none;
    z-index: 1;
}

.img-label {
    position: absolute;
    bottom: 14px;
    left: 16px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    z-index: 2;
}

.img-mock-bars {
    display: flex;
    gap: 24px;
    align-items: center;
}

.img-bar {
    width: 80px;
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.img-bar-fill {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--crimson-dark), var(--crimson));
    animation: barPulse 3s ease-in-out infinite alternate;
}

.img-bar.right .img-bar-fill {
    animation-delay: 1.5s;
}

@keyframes barPulse {
    0% { width: 30%; opacity: 0.6; }
    100% { width: 90%; opacity: 1; }
}

.img-mock-fov {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-fov-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 32, 32, 0.2);
}

.img-fov-ring.outer {
    width: 80px;
    height: 80px;
    animation: fovPulse 3s ease-in-out infinite;
}

.img-fov-ring.inner {
    width: 50px;
    height: 50px;
    border-color: rgba(212, 32, 32, 0.35);
}

@keyframes fovPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 1; }
}

.img-fov-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--crimson-bright);
    z-index: 1;
}

.img-mock-fps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 80%;
}

.img-fps-graph {
    width: 100%;
    height: 40px;
}

.img-fps-graph svg {
    width: 100%;
    height: 100%;
}

.img-fps-value {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.img-fps-value small {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--crimson);
    letter-spacing: 0.05em;
}

/* --- Footer --- */
.footer {
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), rgba(212, 32, 32, 0.1), rgba(255, 255, 255, 0.06), transparent) 1;
    padding: 48px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer p {
    font-size: 0.76rem;
    font-weight: 400;
    color: var(--text-dim);
    letter-spacing: 0.02em;
}

/* --- .accent (reusable gradient text) --- */
.accent {
    background: linear-gradient(135deg, var(--crimson-bright) 0%, var(--crimson) 60%, var(--crimson-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(212, 32, 32, 0.15));
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* stagger children */
.reveal-stagger .feature-card,
.reveal-stagger .macro-item,
.reveal-stagger .pricing-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible .feature-card,
.reveal-stagger.visible .macro-item,
.reveal-stagger.visible .pricing-card {
    opacity: 1;
    transform: translateY(0);
}

/* stagger delays */
.reveal-stagger.visible .feature-card:nth-child(1),
.reveal-stagger.visible .macro-item:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible .feature-card:nth-child(2),
.reveal-stagger.visible .macro-item:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible .feature-card:nth-child(3),
.reveal-stagger.visible .macro-item:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible .feature-card:nth-child(4),
.reveal-stagger.visible .macro-item:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible .feature-card:nth-child(5),
.reveal-stagger.visible .macro-item:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible .feature-card:nth-child(6),
.reveal-stagger.visible .macro-item:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.visible .feature-card:nth-child(7),
.reveal-stagger.visible .macro-item:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.visible .feature-card:nth-child(8),
.reveal-stagger.visible .macro-item:nth-child(8) { transition-delay: 0.4s; }
.reveal-stagger.visible .feature-card:nth-child(9),
.reveal-stagger.visible .macro-item:nth-child(9) { transition-delay: 0.45s; }
.reveal-stagger.visible .feature-card:nth-child(10),
.reveal-stagger.visible .macro-item:nth-child(10) { transition-delay: 0.5s; }
.reveal-stagger.visible .feature-card:nth-child(11),
.reveal-stagger.visible .macro-item:nth-child(11) { transition-delay: 0.55s; }
.reveal-stagger.visible .feature-card:nth-child(12),
.reveal-stagger.visible .macro-item:nth-child(12) { transition-delay: 0.6s; }
.reveal-stagger.visible .macro-item:nth-child(13) { transition-delay: 0.65s; }
.reveal-stagger.visible .macro-item:nth-child(14) { transition-delay: 0.7s; }
.reveal-stagger.visible .macro-item:nth-child(15) { transition-delay: 0.75s; }
.reveal-stagger.visible .macro-item:nth-child(16) { transition-delay: 0.8s; }

/* --- Divider Line --- */
.divider {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(255, 255, 255, 0.03) 20%, rgba(212, 32, 32, 0.2) 50%, rgba(255, 255, 255, 0.03) 80%, transparent 95%);
    position: relative;
}

.divider::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 16px;
    background: radial-gradient(ellipse, rgba(212, 32, 32, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* --- Responsive --- */
/* --- Stagger delays for pricing cards --- */
.reveal-stagger.visible .pricing-card:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.visible .pricing-card:nth-child(2) { transition-delay: 0.2s; }

/* Stagger delays for video cards */
.reveal-stagger.visible .video-card:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible .video-card:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.visible .video-card:nth-child(3) { transition-delay: 0.25s; }

.reveal-stagger .video-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible .video-card {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .macro-grid { grid-template-columns: repeat(2, 1fr); }
    .highlight { grid-template-columns: 1fr; gap: 40px; }
    .video-showcase { grid-template-columns: 1fr; max-width: 480px; }
    .image-showcase { grid-template-columns: 1fr; max-width: 400px; }
    .stats-bar { gap: 32px; flex-wrap: wrap; }
    .nav-links { display: none; }
    .nav-logo::after { display: none; }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature-card.feature-wide { grid-column: span 1; }
    .macro-grid { grid-template-columns: 1fr; }
    .stats-bar { flex-direction: column; gap: 24px; }
    .hero-actions { flex-direction: column; }
    .nav { padding: 0 20px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
}

/* --- Light Mode --- */
@media (prefers-color-scheme: light) {
    :root {
        --bg-black: #f5f3f0;
        --bg-card: #ffffff;
        --bg-card-hover: #fafafa;
        --bg-subtle: #eeecea;
        --text-primary: #1a1a1e;
        --text-secondary: #6b6672;
        --text-dim: #9a96a0;
        --border-subtle: rgba(0, 0, 0, 0.06);
        --border-hover: rgba(212, 32, 32, 0.3);
        --crimson-glow: rgba(212, 32, 32, 0.2);
    }

    body {
        background-image:
            radial-gradient(ellipse at 50% 0%, rgba(212, 32, 32, 0.04) 0%, transparent 60%),
            radial-gradient(ellipse at 50% 100%, rgba(212, 32, 32, 0.03) 0%, transparent 50%);
    }

    .ambient-glow { display: none; }

    .nav {
        background: rgba(245, 243, 240, 0.85);
        border-bottom-color: rgba(0, 0, 0, 0.06);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .nav-logo::after {
        background: rgba(0, 0, 0, 0.1);
    }

    .nav-links a:hover {
        background: rgba(0, 0, 0, 0.04);
    }

    .nav-links a.active {
        background: rgba(0, 0, 0, 0.06);
    }

    .showcase-frame {
        border-color: rgba(0, 0, 0, 0.1);
    }

    .feature-card {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    }

    .feature-card:hover {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(212, 32, 32, 0.1);
    }

    .pricing-card {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    }

    .pricing-card.featured {
        border-color: var(--crimson);
        box-shadow: 0 4px 24px rgba(212, 32, 32, 0.1);
    }

    .btn-secondary {
        border-color: rgba(0, 0, 0, 0.12);
        color: var(--text-primary);
    }

    .video-card-inner {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .divider {
        background: rgba(0, 0, 0, 0.06);
    }

    .footer {
        border-image: none;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    ::-webkit-scrollbar-track { background: var(--bg-black); }
    ::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.12); border-color: var(--bg-black); }
    ::-webkit-scrollbar-thumb:hover { background: rgba(0, 0, 0, 0.22); }

    .section-title {
        background: none;
        -webkit-text-fill-color: var(--text-primary);
    }

    .stat-number {
        background: none;
        -webkit-text-fill-color: var(--text-primary);
    }

    .accent {
        -webkit-text-fill-color: var(--crimson);
        filter: none;
    }

    .trial-banner {
        background: rgba(212, 32, 32, 0.05);
        border-color: rgba(212, 32, 32, 0.15);
    }

    .image-placeholder, .image-placeholder.alt {
        background: #f0ece8;
    }
}
