@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* ══════════════════════════════════════════════════════
   FLOTASIMPLE — Control Room Industrial Aesthetic
   ══════════════════════════════════════════════════════ */

:root {
    /* Dark Mode (Default) — Deep Navy Command Center */
    --bg: #04080f;
    --surface: #0a1628;
    --surface-accent: #111f38;
    --accent: #00d4ff;
    --accent-secondary: #00ff88;
    --accent-warm: #ff6b35;
    --accent-muted: rgba(0, 212, 255, 0.07);
    --accent-glow: rgba(0, 212, 255, 0.15);
    --text-high: #e8edf5;
    --text-mid: #7b8fad;
    --text-low: #3a4d6b;
    --border: rgba(0, 212, 255, 0.08);
    --border-strong: rgba(0, 212, 255, 0.2);
    --grid-color: rgba(0, 212, 255, 0.03);
    --font-header: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --nav-bg: rgba(4, 8, 15, 0.92);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --glow-soft: 0 0 40px rgba(0, 212, 255, 0.06);
}

[data-theme="light"] {
    --bg: #f0f2f5;
    --surface: #ffffff;
    --surface-accent: #e8ecf2;
    --accent: #0066cc;
    --accent-secondary: #00994d;
    --accent-warm: #e55a2b;
    --accent-muted: rgba(0, 102, 204, 0.06);
    --accent-glow: rgba(0, 102, 204, 0.1);
    --text-high: #0a1628;
    --text-mid: #4a5c78;
    --text-low: #9ba8bc;
    --border: rgba(0, 102, 204, 0.08);
    --border-strong: rgba(0, 102, 204, 0.15);
    --grid-color: rgba(0, 0, 0, 0.02);
    --nav-bg: rgba(240, 242, 245, 0.95);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    --glow-soft: 0 0 40px rgba(0, 102, 204, 0.04);
}

/* ── Reset ──────────────────────────────────────────── */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text-high);
    font-family: var(--font-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Grid texture background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ── Typography ─────────────────────────────────────── */

h1, h2, h3, .logo {
    font-family: var(--font-header);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 0.95;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
}

/* ── Scroll Animations ──────────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* ── Navigation ─────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    padding: 0;
    transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    font-size: 1.6rem;
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    color: var(--text-high);
    position: relative;
}

.logo span {
    color: var(--accent);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0.4;
}

.nav-links {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-low);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s, background 0.3s;
    padding: 0.7rem 1.3rem;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-high);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after {
    width: 60%;
}

.nav-links a.active {
    color: var(--bg);
    background: var(--accent);
    font-weight: 700;
}

.nav-links a.active::after {
    display: none;
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--text-mid);
    width: 38px;
    height: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-left: 0.8rem;
}

.theme-toggle:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-muted);
    box-shadow: 0 0 16px var(--accent-glow);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-high);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ───────────────────────────────────────────── */

.hero {
    min-height: 100vh;
    padding: 10rem 0 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Atmospheric glow */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse-glow 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.04) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse-glow 10s ease-in-out infinite alternate-reverse;
}

@keyframes pulse-glow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.15); }
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: hero-slide-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes hero-slide-in {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(4.5rem, 11vw, 9rem);
    margin-bottom: 2rem;
    position: relative;
    line-height: 0.9;
}

.hero h1 .line-accent {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero h1 .line-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    opacity: 0.3;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-mid);
    max-width: 520px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-visual {
    position: relative;
    perspective: 1500px;
    animation: hero-visual-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes hero-visual-in {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-visual::before {
    content: 'LIVE PREVIEW';
    position: absolute;
    top: -12px;
    left: 16px;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-header);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    padding: 3px 12px;
    z-index: 2;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: -1px;
    border: 1px solid var(--border-strong);
    pointer-events: none;
    transition: border-color 0.5s;
}

.hero-visual:hover::after {
    border-color: var(--accent);
}

.hero-visual img {
    width: 100%;
    display: block;
    filter: contrast(1.02);
    transform: rotateX(4deg) rotateY(-8deg) rotateZ(1deg);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 15px 30px rgba(0, 212, 255, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.2);
    animation: float-isometric 6s ease-in-out infinite;
}

.hero-visual:hover img {
    filter: contrast(1.05) brightness(1.02);
    transform: rotateX(2deg) rotateY(-4deg) rotateZ(0deg) scale(1.02);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.4),
        0 20px 40px rgba(0, 212, 255, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.3);
}

@keyframes float-isometric {
    0%, 100% {
        transform: rotateX(4deg) rotateY(-8deg) rotateZ(1deg) translateY(0);
    }
    50% {
        transform: rotateX(4deg) rotateY(-8deg) rotateZ(1deg) translateY(-10px);
    }
}

/* Scan line animation on hero visual */
.hero-visual .scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.4;
    animation: scan 4s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

/* CTA Button */
.btn-big {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--accent);
    color: var(--bg);
    padding: 1.4rem 2.8rem;
    font-family: var(--font-header);
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
}

.btn-big::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s;
}

.btn-big:hover {
    gap: 1.8rem;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.25);
}

.btn-big:hover::before {
    left: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float-down 2s ease-in-out infinite;
    z-index: 1;
}

.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-low);
    font-weight: 500;
}

.scroll-indicator .arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

@keyframes float-down {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ── Sections ───────────────────────────────────────── */

.section {
    padding: 8rem 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    margin-bottom: 4rem;
    max-width: 900px;
    line-height: 1;
}

/* ── Features Grid ──────────────────────────────────── */

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.feature-box {
    background: var(--bg);
    padding: 3rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin: -0.5px; /* overlap borders */
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--accent);
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-box:hover {
    background: var(--surface);
    border-color: var(--border-strong);
    transform: translateY(-4px);
    z-index: 2;
    box-shadow: var(--card-shadow);
}

.feature-box:hover::before {
    height: 100%;
}

.feature-number {
    font-family: var(--font-header);
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
    letter-spacing: 0.15em;
    opacity: 0.6;
}

.feature-box:hover .feature-number {
    opacity: 1;
}

.feature-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.feature-box p {
    color: var(--text-mid);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ── Stats Bar ──────────────────────────────────────── */

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border);
    margin: 6rem 0;
    background: var(--surface);
}

.stat-item {
    padding: 3rem;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-header);
    font-size: 3.5rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-low);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

/* ── Plans ──────────────────────────────────────────── */

.plans-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.plan-card {
    border: 1px solid var(--border);
    padding: 2.8rem 2rem;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    margin: -0.5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-6px);
    z-index: 2;
    box-shadow: var(--card-shadow);
    border-color: var(--border-strong);
}

.plan-card.featured {
    border-color: var(--accent);
    background: var(--accent-muted);
}

.plan-card.featured::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: var(--bg);
    text-align: center;
    font-family: var(--font-header);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    padding: 6px 0;
}

.plan-card.featured {
    padding-top: 4rem;
}

.plan-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.plan-price {
    font-family: var(--font-header);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--accent);
    letter-spacing: 0.03em;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plan-features li {
    font-size: 0.82rem;
    color: var(--text-mid);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.plan-features li::before {
    content: '>';
    font-family: var(--font-header);
    color: var(--accent);
    font-size: 0.7rem;
    opacity: 0.5;
}

.btn-plain {
    padding: 1rem;
    border: 1px solid var(--text-low);
    background: transparent;
    color: var(--text-high);
    text-decoration: none;
    text-align: center;
    font-family: var(--font-header);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-plain::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent);
    transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-plain:hover {
    border-color: var(--accent);
    color: var(--bg);
}

.btn-plain:hover::before {
    height: 100%;
}

.featured .btn-plain {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

.featured .btn-plain:hover {
    background: var(--text-high);
    border-color: var(--text-high);
}

/* ── Contact ────────────────────────────────────────── */

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
    overflow: hidden;
}

.contact-left {
    padding: 5rem;
    background: var(--surface);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1;
    margin-bottom: 0;
}

.contact-info {
    margin-top: 2.5rem;
    color: var(--text-mid);
    line-height: 2;
    font-size: 0.9rem;
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.7;
}

.contact-right {
    padding: 5rem;
    position: relative;
}

.contact-right::before {
    content: 'PROTOCOLO DE CONTACTO';
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--font-header);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text-low);
    opacity: 0.4;
}

.input-field {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-strong);
    padding: 1.3rem 0 1rem;
    color: var(--text-high);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    margin-bottom: 1.8rem;
    transition: border-color 0.3s;
}

.input-field::placeholder {
    color: var(--text-low);
    font-size: 0.85rem;
}

.input-field:focus {
    border-color: var(--accent);
}

.label-mini {
    font-size: 0.65rem;
    color: var(--text-low);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* ── Footer ─────────────────────────────────────────── */

footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    z-index: 1;
}

footer p {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
}

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 1200px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .plans-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero-layout,
    .split-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 9rem 0 5rem;
    }

    .hero h1 {
        font-size: clamp(3rem, 10vw, 5rem);
    }

    .contact-left {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .contact-left,
    .contact-right {
        padding: 3rem 2rem;
    }

    .section {
        padding: 5rem 0;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--surface);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 3rem;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-links a::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .features-container,
    .plans-strip,
    .stats-bar {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .hero-layout {
        gap: 3rem;
    }

    .hero-visual::before {
        font-size: 0.6rem;
    }

    .btn-big {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
}

/* Overlay for mobile menu */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ── Selection ──────────────────────────────────────── */

/* ── Focus Indicators ───────────────────────────────── */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

::selection {
    background: var(--accent);
    color: var(--bg);
}

/* ── Scrollbar ──────────────────────────────────────── */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border-strong);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
