/* ============================================================
   SPEEDNET — REDESIGN FUTURISTA V2
   Cyber/Tech · Ultra Premium · Alto Impacto Visual
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
    --bg-void:         #020204;
    --bg-deep:         #08080C;
    --bg-surface:      #0C0C12;
    --bg-elevated:     #111118;
    --bg-glass:        rgba(12,12,18,0.55);
    --bg-glass-hover:  rgba(18,18,26,0.7);

    --red:             #E60000;
    --red-bright:      #FF1A1A;
    --red-neon:        #FF3344;
    --red-glow:        rgba(230,0,0,0.5);
    --red-dim:         rgba(230,0,0,0.15);

    --white:           #FFFFFF;
    --gray-100:        #F0F0F2;
    --gray-300:        #A1A1AA;
    --gray-500:        #52525B;
    --gray-700:        #27272A;
    --gray-800:        #18181B;
    --gray-900:        #0E0E11;

    --border:          rgba(255,255,255,0.05);
    --border-hover:    rgba(255,255,255,0.1);
    --border-red:      rgba(230,0,0,0.25);

    --font-hero:       'Outfit', 'Space Grotesk', sans-serif;
    --font-display:    'Space Grotesk', sans-serif;
    --font-body:       'Inter', system-ui, sans-serif;

    --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

/* Scrollbar Customization */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: rgba(230,0,0,0.4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }
* { scrollbar-width: thin; scrollbar-color: rgba(230,0,0,0.4) var(--bg-void); }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-300);
    background: var(--bg-void);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='3' fill='%23E60000' /%3E%3Ccircle cx='12' cy='12' r='8' stroke='%23E60000' stroke-width='1.5' fill='none' opacity='0.5' /%3E%3C/svg%3E") 12 12, auto;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='4' fill='%23FF1A1A' /%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23FF1A1A' stroke-width='1.5' fill='none' /%3E%3C/svg%3E") 12 12, pointer; }
ul { list-style: none; }
button { font-family: inherit; cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='4' fill='%23FF1A1A' /%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23FF1A1A' stroke-width='1.5' fill='none' /%3E%3C/svg%3E") 12 12, pointer; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--red-neon); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ── Noise Overlay (Global) ─────────────────────────────── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px;
}

/* ── Animated Grid Background ───────────────────────────── */
.grid-bg {
    position: relative;
}

.grid-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(230,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230,0,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* ── Section Glow Orbs (ambient light) ──────────────────── */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.glow-orb.red    { background: var(--red-glow); }
.glow-orb.dim    { background: rgba(230,0,0,0.12); }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--white);
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #fff 40%, var(--red-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
    position: relative;
}

.section-tag::before {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--red), transparent);
    border-radius: 1px;
}

.section-title {
    font-family: var(--font-hero);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 16px 36px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-red {
    background: var(--red);
    color: #fff;
    box-shadow:
        0 0 0 1px rgba(255,26,26,0.3),
        0 4px 20px rgba(230,0,0,0.25),
        0 8px 40px rgba(230,0,0,0.15);
}

.btn-red::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    border-radius: inherit;
    pointer-events: none;
}

.btn-red:hover {
    background: var(--red-bright);
    transform: translateY(-3px);
    box-shadow:
        0 0 0 1px rgba(255,26,26,0.5),
        0 8px 30px rgba(230,0,0,0.4),
        0 16px 60px rgba(230,0,0,0.2),
        0 0 120px rgba(230,0,0,0.15);
}

.btn-red.glow-pulse {
    animation: glow-breathe 3s ease-in-out infinite;
}

@keyframes glow-breathe {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(255,26,26,0.3),
            0 4px 20px rgba(230,0,0,0.25),
            0 8px 40px rgba(230,0,0,0.15);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(255,26,26,0.5),
            0 4px 30px rgba(230,0,0,0.4),
            0 12px 50px rgba(230,0,0,0.25),
            0 0 100px rgba(230,0,0,0.1);
    }
}

.btn-glass {
    background: rgba(255,255,255,0.04);
    color: var(--gray-100);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(230,0,0,0.1), inset 0 0 30px rgba(230,0,0,0.03);
}

/* ── Reveal System ──────────────────────────────────────── */
.rv {
    opacity: 0;
    transform: translateY(50px) scale(0.97);
    transition: all 1s var(--ease-out);
}
.rv.vis {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.rv-d1 { transition-delay: 0.08s; }
.rv-d2 { transition-delay: 0.16s; }
.rv-d3 { transition-delay: 0.24s; }
.rv-d4 { transition-delay: 0.32s; }
.rv-d5 { transition-delay: 0.40s; }
.rv-d6 { transition-delay: 0.48s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.5s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(2,2,4,0.8);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}

.logo {
    font-family: var(--font-hero);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    position: relative;
}

.logo em {
    font-style: normal;
    color: var(--red);
}

/* Logo red dot glow */
.logo::after {
    content: '';
    position: absolute;
    right: -14px;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 8px var(--red-glow), 0 0 20px var(--red-glow);
    animation: dot-blink 2s ease-in-out infinite;
}

@keyframes dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-menu a:not(.btn) {
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:not(.btn):hover { color: var(--white); }

.nav-menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    border-radius: 1px;
    transition: all 0.35s var(--ease-out);
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--red-glow);
}

.nav-menu a:not(.btn):hover::after { width: 20px; }

.nav-menu .btn { margin-left: 12px; padding: 11px 24px; font-size: 0.82rem; }

.hamburger {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.35s var(--ease-out);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-void);
}

/* Canvas for particles */
#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Dramatic radial gradients */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 45% 45% at 15% 85%, rgba(230,0,0,0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 85% 15%, rgba(230,0,0,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 50% 120%, rgba(230,0,0,0.12) 0%, transparent 40%);
    z-index: 2;
    pointer-events: none;
}

/* Top light streak */
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--red) 30%, var(--red-neon) 50%, var(--red) 70%, transparent 100%);
    opacity: 0.4;
    z-index: 3;
}

/* Slider Container */
.slider {
    position: relative;
    z-index: 4;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s var(--ease-spring);
}

.slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    padding-top: 40px; /* Offset for navbar */
}

.slide.active {
    opacity: 1;
}

/* Prevent hidden slides (e.g. full-image slides with a link overlay) from
   intercepting clicks meant for the currently active slide. */
.slide:not(.active) {
    pointer-events: none;
}

.slide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.slide-text { max-width: 600px; }

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 10px;
    background: var(--red-dim);
    border: 1px solid rgba(230,0,0,0.2);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--red-neon);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
}

.slide.active .hero-chip {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
}

.hero-chip .pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    position: relative;
}

.hero-chip .pulse-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid var(--red);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.hero h1, .slide-text h2 {
    font-family: var(--font-hero);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
    color: var(--white);
}

.slide.active h1, .slide.active h2 {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.line-accent {
    background: linear-gradient(90deg, var(--red) 0%, var(--red-neon) 50%, #FF6644 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(230,0,0,0.3));
}

.hero-sub {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--gray-300);
    line-height: 1.6;
    max-width: 460px;
    margin-bottom: 32px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
}

.slide.active .hero-sub {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
}

.slide.active .hero-ctas {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.4s;
}

/* Visual Assets for Slides */
.slide-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.95) translateY(20px);
    opacity: 0;
    transition: all 0.8s var(--ease-spring);
}

.slide.active .slide-visual {
    transform: scale(1) translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

/* Slide 1 Visual (Compact Speed) */
.speed-display {
    text-align: center;
    position: relative;
}

.speed-display::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(230,0,0,0.15) 0%, transparent 60%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(20px);
}

.speed-num {
    font-family: var(--font-hero);
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
    background: linear-gradient(180deg, #FFF 0%, var(--gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.speed-mega {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: -10px;
}

.speed-caption {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--gray-500);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
}

/* Slide 2 Visual (Card) */
.slide-price-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-red);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 0 40px rgba(230,0,0,0.1);
    position: relative;
    transform: rotate(2deg);
}

.slide-card-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.slide-card-speed {
    font-family: var(--font-hero);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}

.slide-card-mega {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 20px;
}

.slide-card-price {
    font-size: 1.2rem;
    color: var(--gray-300);
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.slide-card-price strong {
    font-size: 2.4rem;
    color: #fff;
}

/* Slide 3 Visual (Stats) */
.slide-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.slide-stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.slide-stat strong {
    display: block;
    font-family: var(--font-hero);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.slide-stat span {
    font-size: 0.8rem;
    color: var(--red);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 120px; /* Above metrics bar */
    left: 0; right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    border: none;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--red);
    width: 60px;
    box-shadow: 0 0 10px var(--red-glow);
}

.slider-arrow {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.slider-arrow svg { width: 20px; height: 20px; }
.slider-arrow:hover { background: var(--red); border-color: var(--red); transform: scale(1.1); }

/* Slider Progress */
.slider-progress {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: rgba(255,255,255,0.05);
    z-index: 10;
}

.slider-progress-fill {
    height: 100%;
    background: var(--red);
    width: 0%;
    box-shadow: 0 0 10px var(--red);
}

/* Metrics Bar (Fixed at bottom) */
.hero-metrics-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    transform: translateY(50%); /* Half overlap with next section */
}

.hero-metrics {
    display: flex;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
}

.hero-metric {
    flex: 1;
    padding: 24px 20px;
    text-align: center;
    position: relative;
}

.hero-metric:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: var(--border);
}

.metric-val {
    font-family: var(--font-hero);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.metric-val span { color: var(--red); font-size: 1.4rem; font-weight: 700; margin-left: 4px; }

.metric-label {
    font-size: 0.95rem;
    color: var(--gray-300);
    margin-top: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-strip {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.trust-track {
    display: flex;
    justify-content: center;
    gap: clamp(24px, 4vw, 60px);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
    white-space: nowrap;
}

.trust-item .dot {
    width: 5px;
    height: 5px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--red-glow);
    flex-shrink: 0;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 140px 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.section-head {
    max-width: 600px;
    margin-bottom: 72px;
}

.section-head.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head.centered .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   PLANS — GLASSMORPHISM CARDS
   ============================================================ */
#planos { background: var(--bg-void); }

.plans-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* --- Glass Card --- */
.p-card {
    flex: 0 0 calc(25% - 11px);
    max-width: calc(25% - 11px);
    position: relative;
    background: var(--bg-glass);
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 34px 22px 26px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s var(--ease-out);
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

/* Top highlight line */
.p-card::before {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: all 0.5s ease;
}

/* Mouse-follow specular */
.p-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(
        300px circle at var(--mx, 50%) var(--my, 50%),
        rgba(230,0,0,0.06),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.p-card:hover {
    border-color: var(--border-red);
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        0 0 60px rgba(230,0,0,0.04);
}

.p-card:hover::before { left: 10%; right: 10%; background: linear-gradient(90deg, transparent, rgba(230,0,0,0.3), transparent); }
.p-card:hover::after { opacity: 1; }

/* Featured card */
.p-card.star {
    border-color: rgba(230,0,0,0.3);
    background: linear-gradient(180deg, rgba(230,0,0,0.05) 0%, var(--bg-glass) 40%);
    box-shadow: 0 0 80px rgba(230,0,0,0.06);
}

/* Animated conic border for featured */
.p-card.star .conic-border {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(
        from var(--angle, 0deg),
        transparent 30%,
        var(--red) 48%,
        var(--red-neon) 52%,
        transparent 70%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: conic-spin 4s linear infinite;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes conic-spin { to { --angle: 360deg; } }

.p-badge {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%) translateY(-1px);
    background: var(--red);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 6px 24px rgba(230,0,0,0.4);
}

.p-name {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 18px;
    margin-top: 10px;
}

.p-speed {
    font-family: var(--font-hero);
    font-size: clamp(3rem, 4.5vw, 4.2rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.06em;
    color: var(--white);
}

.p-card.star .p-speed {
    background: linear-gradient(180deg, #fff 30%, var(--red-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.p-mega {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gray-700);
    margin: 8px 0 22px;
}

.p-feats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 22px;
}

.p-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--gray-500);
}

.p-feat .ck {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--red-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.p-feat .ck svg {
    width: 10px;
    height: 10px;
    color: var(--red);
}

.p-price {
    font-family: var(--font-hero);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.p-price .sm { font-size: 0.7em; color: var(--gray-500); font-weight: 500; }

.p-card .btn { width: 100%; padding: 14px; font-size: 0.82rem; }

/* Plans included bar */
.plans-extras {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 3vw, 48px);
    flex-wrap: wrap;
    margin-top: 56px;
    padding: 20px 28px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-300);
}

.extra-item svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }

/* ============================================================
   COVERAGE
   ============================================================ */
#cobertura {
    background: var(--bg-deep);
}

.cov-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.cov-text .section-desc { margin: 16px 0 36px; }

/* Map container */
.map-panel {
    position: relative;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 36px;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

/* Inner grid */
.map-panel::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: 20px 20px;
    pointer-events: none;
}

.map-svg { width: 100%; height: auto; display: block; position: relative; z-index: 1; }

.map-svg .trunk-line {
    fill: none;
    stroke: var(--red);
    stroke-width: 1.5;
    opacity: 0.5;
    filter: drop-shadow(0 0 6px rgba(230,0,0,0.4));
}

.map-svg .branch-line {
    fill: none;
    stroke: rgba(255,51,68,0.2);
    stroke-width: 0.8;
    stroke-dasharray: 4 8;
    animation: dash-run 2.5s linear infinite;
}

@keyframes dash-run { to { stroke-dashoffset: -24; } }

.map-svg .node-glow {
    fill: none;
    stroke: var(--red);
    stroke-width: 0.8;
    opacity: 0.3;
    animation: node-breathe 3s ease-in-out infinite;
}

.map-svg .node-glow:nth-of-type(2n) { animation-delay: 1s; }
.map-svg .node-glow:nth-of-type(3n) { animation-delay: 2s; }

@keyframes node-breathe {
    0%, 100% { r: 8; opacity: 0.3; }
    50% { r: 16; opacity: 0.05; }
}

.map-svg .node-dot {
    fill: var(--red);
    filter: drop-shadow(0 0 6px rgba(230,0,0,0.8));
}

.map-svg .map-label {
    font-family: 'Inter', sans-serif;
    font-size: 6.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    fill: var(--gray-500);
    text-transform: uppercase;
}

/* Coverage stats row */
.cov-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

.cov-stat {
    text-align: center;
    padding: 16px 12px;
    background: rgba(230,0,0,0.04);
    border: 1px solid rgba(230,0,0,0.08);
    border-radius: 14px;
}

.cov-stat strong {
    font-family: var(--font-hero);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
    display: block;
}

.cov-stat small {
    font-size: 0.68rem;
    color: var(--gray-500);
    letter-spacing: 0.05em;
}

/* ============================================================
   EMPRESA — BENTO GRID
   ============================================================ */
#empresa { background: var(--bg-void); }

.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(140px, auto);
    gap: 14px;
}

.b-tile {
    position: relative;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    backdrop-filter: blur(10px);
}

.b-tile:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Bento spans */
.b-c8  { grid-column: span 8; }
.b-c6  { grid-column: span 6; }
.b-c4  { grid-column: span 4; }
.b-c3  { grid-column: span 3; }
.b-r2  { grid-row: span 2; }
.b-r3  { grid-row: span 3; }
.b-tall { min-height: 300px; }

/* Icon tiles */
.b-tile .b-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: var(--red-dim);
    border: 1px solid rgba(230,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--red);
    transition: all 0.4s ease;
}

.b-tile:hover .b-icon {
    background: rgba(230,0,0,0.2);
    box-shadow: 0 0 20px rgba(230,0,0,0.15);
}

.b-tile .b-icon svg { width: 22px; height: 22px; }

.b-tile h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.b-tile p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.65;
}

/* Photo tiles */
.b-tile.photo {
    padding: 0;
}

.b-tile.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.7s var(--ease-out);
}

.b-tile.photo:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.06);
}

.b-tile.photo .overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(2,2,4,0.85));
}

.b-tile.photo .overlay span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}

/* Team Slider */
.team-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
.team-slides {
    position: relative;
    width: 100%;
    height: 100%;
}
.team-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}
.team-slide.active {
    opacity: 1;
    z-index: 1;
}
.team-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.7s var(--ease-out);
}
.b-tile.photo:hover .team-slide.active img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.06);
}
.ts-controls {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 8px;
    z-index: 10;
}
.ts-btn {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}
.ts-btn:hover {
    background: var(--red);
    border-color: var(--red);
}
.ts-btn svg { width: 16px; height: 16px; }

/* ANATEL tile */
.b-tile.anatel {
    background: linear-gradient(135deg, rgba(230,0,0,0.07) 0%, var(--bg-glass) 100%);
    border-color: rgba(230,0,0,0.12);
}

.anatel-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.anatel-badge svg { width: 34px; height: 34px; color: var(--red); }
.anatel-badge strong {
    font-family: var(--font-hero);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white);
}

/* ============================================================
   CONTATO
   ============================================================ */
#contato { background: var(--bg-deep); }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 72px;
    align-items: start;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}

.c-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.c-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--red-dim);
    border: 1px solid rgba(230,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}

.c-icon svg { width: 20px; height: 20px; }

.c-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-700);
    margin-bottom: 4px;
}

.c-value {
    font-size: 0.95rem;
    color: var(--gray-100);
    font-weight: 500;
}

.c-value a { transition: color 0.3s ease; }
.c-value a:hover { color: var(--red); }

/* Social */
.socials {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.soc-link {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all 0.4s var(--ease-out);
    background: var(--bg-glass);
}

.soc-link:hover {
    border-color: var(--red);
    color: var(--red);
    box-shadow: 0 0 24px rgba(230,0,0,0.12);
    transform: translateY(-3px);
}

.soc-link svg { width: 18px; height: 18px; }

/* Form */
.contact-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 44px;
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

/* Card top glow */
.contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230,0,0,0.2), transparent);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.f-group {
    margin-bottom: 24px;
    position: relative;
}

.f-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray-500);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.f-group input,
.f-group textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--border);
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
}

.f-group input::placeholder,
.f-group textarea::placeholder { color: var(--gray-700); }

.f-group input:focus,
.f-group textarea:focus { border-bottom-color: var(--red); }

/* Animated fill line */
.f-line {
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--red-neon));
    transition: width 0.5s var(--ease-out);
    border-radius: 1px;
    box-shadow: 0 0 10px var(--red-glow);
}

.f-group input:focus ~ .f-line,
.f-group textarea:focus ~ .f-line { width: 100%; }

.f-group textarea { min-height: 90px; resize: vertical; }

.contact-card .btn { width: 100%; margin-top: 8px; }

.form-msg {
    display: none;
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.form-msg.ok {
    background: rgba(74,222,128,0.08);
    color: #4ade80;
    border: 1px solid rgba(74,222,128,0.15);
}

.form-msg.err {
    background: rgba(248,113,113,0.08);
    color: #f87171;
    border: 1px solid rgba(248,113,113,0.15);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-void);
    border-top: 1px solid var(--border);
    padding: 72px 0 28px;
    position: relative;
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 52px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-slogan {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.footer-about {
    font-size: 0.82rem;
    color: var(--gray-700);
    line-height: 1.65;
    max-width: 260px;
}

.foot-title {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.foot-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.foot-nav a {
    font-size: 0.85rem;
    color: var(--gray-500);
    transition: all 0.3s ease;
}

.foot-nav a:hover { color: var(--white); transform: translateX(4px); display: inline-block; }

.footer-base {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.72rem;
    color: var(--gray-700);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.wa-bubble {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.4s var(--ease-out);
    box-shadow:
        0 4px 20px rgba(230,0,0,0.3),
        0 12px 40px rgba(230,0,0,0.15);
    position: relative;
}

.wa-bubble::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.15), transparent 50%);
    pointer-events: none;
}

.wa-bubble:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 8px 30px rgba(230,0,0,0.45),
        0 16px 60px rgba(230,0,0,0.2),
        0 0 100px rgba(230,0,0,0.1);
}

.wa-bubble svg { width: 28px; height: 28px; }

.wa-tip {
    background: var(--bg-surface);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 14px;
    margin-right: 14px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s var(--ease-out);
    pointer-events: none;
    white-space: nowrap;
    border: 1px solid var(--border);
}

.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .p-card { flex: 0 0 calc(33.333% - 10px); max-width: calc(33.333% - 10px); }
    .hero-wrap { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-content { max-width: 700px; }
}

@media (max-width: 1024px) {
    .cov-layout { grid-template-columns: 1fr; gap: 48px; }
    .bento { grid-template-columns: repeat(6, 1fr); }
    .b-c8 { grid-column: span 6; }
    .b-c4 { grid-column: span 3; }
    .b-c3 { grid-column: span 3; }
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .section { padding: 100px 0; }

    .nav-menu { display: none; }
    .nav-menu.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 78px; left: 0; right: 0; bottom: 0;
        background: rgba(2,2,4,0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 24px 28px 40px;
        border-top: 1px solid var(--border);
        gap: 4px;
        z-index: 999;
        overflow-y: auto;
    }
    .nav-menu.open a:not(.btn) { padding: 16px 16px; font-size: 1.1rem; }
    .nav-menu.open .btn { margin: 16px 0 0 0; }

    .hamburger { display: flex; }

    .hero-wrap { padding: 130px 0 80px; }
    .hero h1 { font-size: clamp(2.6rem, 9vw, 4rem); }

    .hero-metrics { flex-direction: column; border-radius: 16px; margin-top: -20px; }

    .p-card { flex: 0 0 calc(50% - 7px); max-width: calc(50% - 7px); }

    .slide-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .slide-visual { transform: scale(0.85); order: -1; } /* Visual on top for mobile */
    .slide.active .slide-visual { transform: scale(0.9); }
    .hero h1, .slide-text h2 { font-size: clamp(2.4rem, 8vw, 3.2rem); }
    .hero-ctas { justify-content: center; }
    .slider-controls { bottom: 30px; }

    .bento { grid-template-columns: 1fr; }
    .b-c8, .b-c6, .b-c4, .b-c3 { grid-column: span 1; }

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

@media (max-width: 480px) {
    .p-card { flex: 0 0 100%; max-width: 100%; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; }
    .cov-stats { grid-template-columns: 1fr; }
    .wa-float { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    .rv { opacity: 1; transform: none; transition: none; }
    .p-card.star .conic-border { animation: none; }
    .grid-bg::before { animation: none; }
    .map-svg .branch-line { animation: none; }
    .map-svg .node-glow { animation: none; }
    .hero-chip .pulse-dot::after { animation: none; }
    .speed-ring-bg::after { animation: none; }
    .orbit-dot { animation: none; }
    .btn-red.glow-pulse { animation: none; }
    html { scroll-behavior: auto; }
}
