﻿:root {
    --bg: #03060f;
    --card-bg: #080d1a;
    --card-border: #141c2e;
    --text-primary: #eef0f6;
    --text-secondary: #5a6480;
    --accent-blue: #3b82f6;
    --accent-purple: #7c3aed;
    --accent-red: #ef4444;
    --accent-green: #22c55e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: 'Space Grotesk', system-ui, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Effects */
#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
}

.bg-blur-circle {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.top-left {
    top: -200px;
    left: -200px;
    background: #1a3a7a;
    opacity: 0.1;
}

.bottom-right {
    bottom: -200px;
    right: -200px;
    background: #0f2560;
    opacity: 0.08;
}

/* Utils */
.mt-4 { margin-top: 1.5rem; }
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }
.delay-6 { transition-delay: 0.9s; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 0;
    background: rgba(0,0,0,0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    z-index: 100;
    transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s, padding 0.5s;
}

.navbar.scrolled {
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 12px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
}

.navbar.scrolled .nav-container {
    justify-content: space-between;
}

/* Brand — hidden initially, slides in from left on scroll */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateX(-24px);
    pointer-events: none;
    transition: opacity 0.45s 0.05s, transform 0.45s 0.05s;
    position: absolute;
    left: 40px;
}

.navbar.scrolled .nav-brand {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: static;
}

/* Center nav links */
.nav-center {
    display: flex;
    align-items: center;
    gap: 2px;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.nav-item {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 13px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-item:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.nav-item.active-nav {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

/* Right side — hidden initially, slides in from right on scroll */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateX(24px);
    pointer-events: none;
    transition: opacity 0.45s 0.05s, transform 0.45s 0.05s;
    position: absolute;
    right: 40px;
}

.navbar.scrolled .nav-right {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: static;
}

.logo-img {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    object-fit: contain;
}

.text-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
}
.text-link:hover { color: var(--text-primary); }

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

.lang-btn {
    padding: 4px 10px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
}

.lang-btn.active {
    background: rgba(255,255,255,0.12);
    color: var(--text-primary);
}

.lang-btn:hover:not(.active) {
    color: var(--text-primary);
}

.btn-dashboard {
    background: #ffffff;
    color: #000000;
    padding: 7px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-dashboard:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,255,255,0.15);
}

/* ── Hero Animated Intro Sequence ── */
/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 48px 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(120px);
}

.hero-glow-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
    bottom: 0;
    right: -100px;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 820px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 6px 14px 6px 10px;
    margin-bottom: 36px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    letter-spacing: 0.01em;
}

.hero-kicker:hover {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.18);
}

.kicker-dot {
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(59,130,246,0.8);
    flex-shrink: 0;
    animation: kicker-pulse 2.4s ease-in-out infinite;
}

@keyframes kicker-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(59,130,246,0.8); }
    50% { opacity: 0.4; box-shadow: 0 0 4px rgba(59,130,246,0.3); }
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.02;
    color: #fff;
    margin-bottom: 28px;
}

.hero-title-accent {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 44px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: #fff;
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: opacity 0.2s, transform 0.18s;
}

.hero-cta-primary:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.hero-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 14px 26px;
    background: transparent;
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.hero-cta-ghost:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.05);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 20px 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.hero-stat-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-stat-div {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
    .hero { padding: 120px 24px 80px; }
    .hero-title { font-size: 3rem; }
    .hero-desc br { display: none; }
    .hero-stats { gap: 20px; padding: 18px 24px; }
    .hero-stat-div { display: none; }
}

/* Features */
.features {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 40px;
}

.feature-grid-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-grid-mid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-grid-bottom {
    display: none;
}

.feature-grid-half {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-grid-full {
    display: grid;
    grid-template-columns: 1fr;
}

/* Zero Traces Card – fix layout */
.zero-traces-card .card-content,
.boot-time-card .card-content {
    position: relative;
    padding: 30px;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}

.small-card .card-content {
    position: relative;
    padding: 30px;
    height: 100%;
    min-height: 380px;
}

.bottom-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 3;
}

.web-ui-premium .card-content {
    position: relative;
    z-index: 2;
}

/* ═══════════════════════════════
   WEB UI PREMIUM CARD
═══════════════════════════════ */
.web-ui-premium {
    position: relative;
    overflow: hidden;
    background: #050508 !important;
    border-color: rgba(59,130,246,0.18) !important;
    transition: border-color 0.4s, transform 0.3s;
}

.web-ui-premium:hover {
    border-color: rgba(59,130,246,0.5) !important;
    transform: translateY(-6px);
}

/* Animated dot-grid background */
.web-ui-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

/* Glow orbs */
.web-ui-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    animation: orbPulse 5s ease-in-out infinite alternate;
}

.orb-blue {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
    top: -60px;
    right: -40px;
}

.orb-purple {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(168,85,247,0.2), transparent 70%);
    bottom: 20px;
    left: -40px;
    animation-delay: 2.5s;
}

@keyframes orbPulse {
    0%   { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1;   transform: scale(1.18); }
}

/* Floating icon row */
.webui-icon-row {
    display: flex;
    gap: 14px;
    position: absolute;
    top: 32px;
    left: 32px;
    z-index: 3;
}

.webui-float-icon {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.12),
        inset 0 -1px 0 rgba(0,0,0,0.4),
        0 8px 24px rgba(0,0,0,0.6),
        0 0 0 0 var(--c);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.4);
    animation: floatIcon 3.5s ease-in-out infinite;
    animation-delay: var(--d);
    cursor: pointer;
}

.webui-float-icon:hover {
    transform: translateY(-10px) scale(1.12) rotate(-3deg);
    border-color: var(--c);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.2),
        0 20px 40px rgba(0,0,0,0.8),
        0 0 30px var(--c),
        0 0 60px color-mix(in srgb, var(--c) 30%, transparent);
    background: color-mix(in srgb, var(--c) 12%, transparent);
}

.webui-float-icon svg {
    stroke: var(--c);
    transition: filter 0.3s, transform 0.3s;
    filter: drop-shadow(0 0 4px color-mix(in srgb, var(--c) 60%, transparent));
}

.webui-float-icon:hover svg {
    filter: drop-shadow(0 0 10px var(--c));
    transform: scale(1.15);
}

/* Notification pip */
.icon-pip {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--c);
    box-shadow: 0 0 6px var(--c);
    animation: pipBlink 2s ease-in-out infinite;
    animation-delay: var(--d);
}

@keyframes pipBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.3; transform: scale(0.7); }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-5px); }
}

/* Browser mockup */
.browser-mockup {
    position: absolute;
    top: 108px;
    left: 30px;
    right: 30px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow:
        0 4px 6px rgba(0,0,0,0.4),
        0 20px 60px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    z-index: 2;
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    background: rgba(18,18,24,0.95);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dot-r { background: #ff5f57; box-shadow: 0 0 5px #ff5f57; }
.dot-y { background: #ffbd2e; box-shadow: 0 0 5px #ffbd2e; }
.dot-g { background: #28c841; box-shadow: 0 0 5px #28c841; }

.browser-url {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 5px;
    padding: 3px 10px;
    margin: 0 8px;
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    font-family: monospace;
    text-align: center;
}

.browser-body {
    display: flex;
    background: rgba(10,10,16,0.95);
    min-height: 130px;
}

/* Sidebar */
.mock-sidebar {
    width: 36px;
    background: rgba(255,255,255,0.025);
    border-right: 1px solid rgba(255,255,255,0.06);
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-sbar-item {
    height: 7px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
}

.mock-sbar-item.active {
    background: rgba(59,130,246,0.6);
    box-shadow: 0 0 6px rgba(59,130,246,0.5);
}

/* Main content */
.mock-main {
    flex: 1;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-header-row {
    display: flex;
    gap: 6px;
    margin-bottom: 4px;
}

.mock-pill {
    height: 7px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
}

.mock-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mock-label {
    height: 6px;
    width: 70px;
    border-radius: 3px;
    background: rgba(255,255,255,0.08);
}

.mock-toggle {
    width: 28px;
    height: 15px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    position: relative;
    flex-shrink: 0;
    transition: background 0.3s;
}

.mock-toggle.on {
    background: rgba(59,130,246,0.7);
    box-shadow: 0 0 8px rgba(59,130,246,0.4);
}

.mock-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: left 0.3s, background 0.3s;
}

.mock-toggle.on .mock-thumb {
    left: 15px;
    background: #fff;
    box-shadow: 0 0 5px rgba(255,255,255,0.6);
}

.mock-slider-row { padding-top: 4px; }

.mock-slider-track {
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.08);
    position: relative;
}

.mock-slider-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 62%;
    border-radius: 2px;
    background: linear-gradient(90deg, #3b82f6, #a855f7);
    box-shadow: 0 0 6px rgba(59,130,246,0.5);
}

.mock-slider-knob {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #3b82f6;
    top: 50%;
    left: 62%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px rgba(59,130,246,0.8);
}

/* Bottom text badge */
.webui-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: #3b82f6;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* shimmer on hover */
.web-ui-premium::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -60%;
    width: 40%;
    height: 300%;
    background: linear-gradient(105deg,
        transparent 40%,
        rgba(255,255,255,0.04) 50%,
        transparent 60%);
    transform: skewX(-15deg);
    transition: none;
    pointer-events: none;
    z-index: 10;
}

.web-ui-premium:hover::after {
    animation: shimmerSweep 0.7s ease forwards;
}

@keyframes shimmerSweep {
    0%   { left: -60%; }
    100% { left: 130%; }
}


/* Zero Traces Card */
.diagram-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 420px;
}

.left-nodes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
    flex-shrink: 0;
}

.node-small {
    width: 36px;
    height: 36px;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.connection-svg {
    opacity: 1;
    flex-shrink: 0;
}

/* Animated light beam on Zero Traces lines */
.connection-svg path {
    stroke: rgba(255,255,255,0.08);
    stroke-width: 1.5;
}

.beam-1 { animation: beamTravel 3s ease-in-out infinite 0s; }
.beam-2 { animation: beamTravel 3s ease-in-out infinite 0.5s; }
.beam-3 { animation: beamTravel 3s ease-in-out infinite 1s; }
.beam-4 { animation: beamTravel 3s ease-in-out infinite 1.5s; }
.beam-5 { animation: beamTravel 3s ease-in-out infinite 2s; }
.beam-right { animation: beamTravelRight 3s ease-in-out infinite 0.8s; }

@keyframes beamTravel {
    0% { stroke-dashoffset: 300; opacity: 0; }
    10% { opacity: 1; }
    60% { opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes beamTravelRight {
    0% { stroke-dashoffset: 120; opacity: 0; }
    10% { opacity: 1; }
    60% { opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

.center-node {
    width: 80px;
    height: 80px;
    background: #050505;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.infinity-glow {
    box-shadow: inset 0 -20px 30px -10px rgba(0, 102, 255, 0.2), 0 0 20px rgba(138, 43, 226, 0.1);
}

.right-node {
    width: 45px;
    height: 45px;
    background: rgba(0, 255, 102, 0.05);
    color: var(--accent-green);
    border: 1px solid rgba(0, 255, 102, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    z-index: 2;
}

/* ═══════════════════════════════
   BOOT TIME CARD — UEFI SCREEN
═══════════════════════════════ */
.boot-time-card {
    background: #020204 !important;
    border-color: rgba(0, 255, 180, 0.12) !important;
    transition: border-color 0.4s, transform 0.3s;
}

.boot-time-card:hover {
    border-color: rgba(0, 255, 180, 0.35) !important;
    transform: translateY(-5px);
}

.boot-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 68%;
    max-width: 520px;
    background: #000;
    border: 1px solid rgba(0, 255, 180, 0.2);
    border-radius: 8px;
    padding: 18px 22px;
    font-family: 'Courier New', monospace;
    box-shadow:
        0 0 0 1px rgba(0,255,180,0.05),
        0 0 40px rgba(0,255,180,0.06),
        0 20px 60px rgba(0,0,0,0.8),
        inset 0 0 80px rgba(0,255,180,0.02);
    overflow: hidden;
}

/* CRT scanlines overlay */
.boot-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.18) 2px,
        rgba(0, 0, 0, 0.18) 4px
    );
    pointer-events: none;
    z-index: 10;
    border-radius: 8px;
}

/* Header */
.boot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.boot-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 0 0 12px rgba(0,255,180,0.5);
}

.boot-logo-ver {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(0,255,180,0.8);
    margin-left: 8px;
    vertical-align: middle;
    background: rgba(0,255,180,0.1);
    border: 1px solid rgba(0,255,180,0.25);
    padding: 1px 5px;
    border-radius: 3px;
}

.boot-ver-tag {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
}

/* Divider */
.boot-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,255,180,0.3) 30%, rgba(0,255,180,0.3) 70%, transparent);
    margin: 8px 0;
}

/* Info rows */
.boot-info-rows {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 6px 0;
}

.boot-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.68rem;
    line-height: 1.6;
}

.boot-key {
    color: rgba(255,255,255,0.35);
    min-width: 90px;
}

.boot-val {
    color: rgba(255,255,255,0.7);
    text-align: right;
}

.boot-green {
    color: #00ffb4;
    text-shadow: 0 0 6px rgba(0,255,180,0.5);
}

/* Status line */
.boot-status-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 6px;
    font-size: 0.68rem;
    color: rgba(0, 255, 180, 0.85);
}

.boot-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00ffb4;
    box-shadow: 0 0 8px #00ffb4;
    animation: statusBlink 1.1s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}

.boot-typing {
    overflow: hidden;
    white-space: nowrap;
    animation: typeIn 2.5s steps(40) infinite;
    border-right: 1px solid rgba(0,255,180,0.7);
    padding-right: 2px;
}

@keyframes typeIn {
    0%   { width: 0; }
    60%  { width: 100%; }
    80%  { width: 100%; }
    90%  { width: 0; }
    100% { width: 0; }
}

/* Progress bar */
.boot-progress-wrap {
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
    margin: 4px 0 10px;
}

.boot-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00ffb4, #00a8ff);
    box-shadow: 0 0 8px rgba(0,255,180,0.6);
    border-radius: 2px;
    animation: bootProgress 3s ease-in-out infinite;
}

@keyframes bootProgress {
    0%   { width: 0%;   opacity: 1; }
    70%  { width: 100%; opacity: 1; }
    85%  { width: 100%; opacity: 0.5; }
    100% { width: 0%;   opacity: 0; }
}

/* USB message */
.boot-usb-msg {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.2);
    text-align: center;
    letter-spacing: 0.5px;
    font-family: 'Courier New', monospace;
}


/* No Executable Card */
.center-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.huge-download-icon {
    font-size: 160px;
    color: rgba(255, 255, 255, 0.05);
    font-weight: 100;
    margin-top: -60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.huge-download-icon::after {
    content: '';
    width: 140px;
    height: 40px;
    border: 15px solid rgba(255, 255, 255, 0.05);
    border-top: none;
    border-radius: 0 0 20px 20px;
    margin-top: -30px;
}

/* Icons */
.refresh-icon { font-size: 1.8rem; border: none; font-weight: 300; margin-bottom: 5px; justify-content: flex-start; padding: 0;}
.traces-icon { display: flex; flex-direction: column; border: none; align-items: flex-start; margin-bottom: 5px;}
.traces-icon .line-icon { line-height: 0.5; font-size: 1.8rem; }
.traces-icon .search-icon { font-size: 1.2rem; margin-left: 12px;}
.close-icon { border: none; font-size: 1.5rem; margin-bottom: 5px; justify-content: flex-start; padding: 0;}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.card-img-wrapper {
    height: 180px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--card-border);
    overflow: hidden;
    position: relative;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.5s;
}

.feature-card:hover .card-img-wrapper img {
    opacity: 1;
    transform: scale(1.05);
}

/* Custom CSS Art for NVIDIA */
.nvidia-bg {
    background: radial-gradient(circle, rgba(118, 185, 0, 0.15) 0%, #000 70%);
}
.nvidia-logo {
    color: #76b900;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(118, 185, 0, 0.5);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Small Cards */
.small-card .card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.icon-abstract {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

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

.center-align {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.connection-diagram {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.node-left, .node-right {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex; justify-content: center; align-items: center;
}

.node-right.checkmark {
    background: rgba(0, 255, 102, 0.1);
    color: var(--accent-green);
    font-size: 0.8rem;
}

/* Pricing */
.pricing {
    padding: 100px 40px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-subtitle {
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.pricing-desc {
    color: var(--text-secondary);
    margin-bottom: 40px;
}
.pricing-desc strong { color: var(--text-primary); }

.billing-toggle {
    display: inline-flex;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 50px;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 8px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.toggle-btn.active {
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 35px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
}

.lite-plan { border-color: rgba(138, 43, 226, 0.3); }
.lite-plan:hover { border-color: rgba(138, 43, 226, 0.8); }

.uefi-plan { border-color: rgba(0, 168, 255, 0.3); }
.uefi-plan:hover { border-color: rgba(0, 168, 255, 0.8); }

.sold-out-plan { opacity: 0.8; }

.price-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.price-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    min-height: 45px;
}

.price-amount {
    margin: 20px 0 30px;
    display: flex;
    align-items: baseline;
}

.currency { font-size: 1.5rem; font-weight: 600; }
.value { font-size: 3rem; font-weight: 700; line-height: 1; margin: 0 5px; }
.period { color: var(--text-secondary); font-size: 0.9rem; }

.btn-buy {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    color: #fff;
    margin-bottom: 30px;
    transition: background 0.2s;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-buy.white {
    background: #fff;
    color: #000;
}

.btn-buy:hover:not(.disabled) {
    background: rgba(255,255,255,0.2);
}
.btn-buy.white:hover {
    background: #e2e2e2;
}

.btn-buy.disabled {
    background: rgba(255,255,255,0.05);
    color: var(--text-secondary);
    cursor: not-allowed;
}

.price-features {
    list-style: none;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #ccc;
}

.icon.warn { color: var(--accent-red); font-weight: bold; }
.icon.check { color: var(--accent-blue); font-weight: bold; }
.icon.check.gray { color: var(--text-secondary); }

@media (max-width: 1100px) {
    .feature-grid-top, .feature-grid-mid, .feature-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─── HAMBURGER BUTTON ─── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV MENU ─── */
.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(3,6,15,0.97);
    backdrop-filter: blur(20px);
}
.nav-mobile.open { display: flex; }
.nav-mobile-item {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s;
}
.nav-mobile-item:last-of-type { border-bottom: none; }
.nav-mobile-item:hover { color: #fff; }
.nav-mobile-cta {
    display: block;
    margin-top: 12px;
    padding: 13px;
    background: #fff;
    color: #000;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
}

/* ─── MOBILE BREAKPOINT ─── */
@media (max-width: 768px) {
    /* Navbar */
    .nav-center,
    .nav-right { display: none; }
    .nav-hamburger { display: flex; }
    .nav-brand {
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        position: static !important;
    }
    .nav-container {
        justify-content: space-between !important;
    }

    /* Hero */
    .hero { padding: 120px 24px 70px; text-align: center; }
    .hero-inner { align-items: center; }
    .hero-title { font-size: clamp(2.6rem, 10vw, 3.5rem); }
    .hero-desc { font-size: 0.95rem; }
    .hero-desc br { display: none; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-cta-primary, .hero-cta-ghost { width: 100%; justify-content: center; }
    .hero-stats { gap: 16px; padding: 16px 20px; width: 100%; }
    .hero-stat-div { display: none; }

    /* Features */
    .feature-grid-top, .feature-grid-mid, .feature-grid-bottom { grid-template-columns: 1fr; }
    .features { padding: 0 20px; }

    /* Stats */
    .stats-section { padding: 40px 20px; }
    .stats-inner { flex-wrap: wrap; gap: 0; padding: 30px 20px; }
    .stat-item { flex: 1 1 45%; padding: 20px 10px; }
    .stat-divider { display: none; }
    .stat-number { font-size: 2.5rem; }

    /* Demo */
    .demo-section { padding: 60px 20px; }
    .demo-player { max-width: 100%; }

    /* Comparison */
    .comparison-section { padding: 60px 20px; }
    .comparison-table { overflow-x: auto; }
    .comp-header-row, .comp-row { min-width: 540px; }

    /* Pricing */
    .pricing-section { padding: 60px 20px; }
    .pricing-row-item { grid-template-columns: 1fr; gap: 12px; padding: 20px; }
    .pri-center { justify-content: flex-start; }
    .pri-right { justify-content: flex-start; }

    /* Testimonials */
    .testimonials-section { padding: 60px 0; }

    /* FAQ */
    .faq-section { padding: 60px 20px; }
    .faq-list { max-width: 100%; }

    /* Footer */
    .footer-inner { flex-direction: column; gap: 32px; padding: 40px 24px 32px; }
    .footer-brand-col { max-width: 100%; }
    .footer-bottom { padding: 16px 24px; }

    /* Section headers */
    .section-header { margin-bottom: 36px; }
    .section-title { font-size: 1.9rem; }
}

/* ═══════════════════════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 4px 14px;
    border-radius: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    color: #fff;
    line-height: 1.1;
}

.section-desc {
    color: rgba(255,255,255,0.35);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   STATS SECTION
═══════════════════════════════════════════════════ */
.stats-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 60px rgba(0,168,255,0.04), inset 0 1px 0 rgba(255,255,255,0.05);
}

.stat-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 30%, rgba(255,255,255,0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-blue);
    -webkit-text-fill-color: var(--accent-blue);
    vertical-align: top;
    line-height: 1.4;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.07);
    margin: 0 20px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   DEMO SECTION
═══════════════════════════════════════════════════ */
.demo-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.demo-player {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.04);
    background: #050507;
}

.demo-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,transparent,transparent 3px,rgba(0,0,0,0.1) 3px,rgba(0,0,0,0.1) 4px);
    pointer-events: none;
    z-index: 10;
}

.demo-top-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgba(20,20,28,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.demo-dots { display: flex; gap: 6px; }
.ddot { width: 10px; height: 10px; border-radius: 50%; }
.dr { background: #ff5f57; box-shadow: 0 0 5px #ff5f57; }
.dy { background: #ffbd2e; box-shadow: 0 0 5px #ffbd2e; }
.dg { background: #28c841; box-shadow: 0 0 5px #28c841; }

.demo-title-bar {
    flex: 1;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    font-family: monospace;
}

.demo-time {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    font-family: monospace;
}

.demo-screen {
    position: relative;
    min-height: 260px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.demo-crt-lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,transparent,transparent 2px,rgba(0,255,100,0.015) 2px,rgba(0,255,100,0.015) 4px);
    pointer-events: none;
}

.demo-boot-anim {
    padding: 30px 40px;
    width: 100%;
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.db-line { display: flex; gap: 14px; color: rgba(255,255,255,0.55); }
.db-tag  { color: #00ffb4; font-weight: 700; flex-shrink: 0; }
.db-active { color: #fff; }
.db-dim    { opacity: 0.3; }
.db-blink  { animation: dbTagBlink 0.9s ease-in-out infinite; }

@keyframes dbTagBlink {
    0%, 100% { color: #00ffb4; }
    50%       { color: rgba(0,255,180,0.25); }
}

/* ASCII UEFI boot pre block */
.demo-ascii-boot {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.78rem;
    line-height: 1.75;
    padding: 28px 36px;
    margin: 0;
    white-space: pre;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.dab-dim   { color: rgba(255,255,255,0.25); }
.dab-ok    { color: #00ffb4; font-weight: 700; }
.dab-white { color: rgba(255,255,255,0.8); }
.dab-cyan  { color: #00d4ff; }
.dab-green { color: #00ff88; font-weight: 700; text-shadow: 0 0 8px rgba(0,255,136,0.4); }
.dab-blink {
    color: #ffbd2e;
    font-weight: 700;
    animation: dabBlink 0.7s ease-in-out infinite;
}

@keyframes dabBlink {
    0%, 100% { color: #ffbd2e; opacity: 1; }
    50%       { color: rgba(255,189,46,0.3); opacity: 0.6; }
}


.demo-play-btn {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(0,168,255,0.3);
}

.demo-play-btn:hover {
    background: rgba(0,168,255,0.2);
    border-color: rgba(0,168,255,0.5);
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(0,168,255,0.5);
}

.demo-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(12,12,18,0.98);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.demo-progress-wrap {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.07);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.demo-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00a8ff, #8a2be2);
    border-radius: 2px;
    transition: width 0.1s;
    box-shadow: 0 0 8px rgba(0,168,255,0.5);
}

.demo-elapsed {
    font-size: 0.72rem;
    font-family: monospace;
    color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════════════════ */
.comparison-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.comparison-table {
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
}

.comp-header-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 16px 24px;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    align-items: center;
}

.comp-col { text-align: center; }
.comp-feature-col { text-align: left; }

.cobalt-col {
    background: rgba(0,168,255,0.04);
}

.comp-badge {
    color: var(--accent-blue);
    font-size: 0.8rem;
    font-weight: 700;
}

.comp-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 14px 24px;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s;
    align-items: center;
}

.comp-row:hover { background: rgba(255,255,255,0.02); }
.comp-row:last-child { border-bottom: none; }

.comp-feature {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}

.comp-val {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cv {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.cv.yes {
    background: rgba(0,255,102,0.1);
    color: #00ff66;
    border: 1px solid rgba(0,255,102,0.25);
    box-shadow: 0 0 8px rgba(0,255,102,0.12);
}

.cv.no {
    background: rgba(255,51,51,0.08);
    color: rgba(255,100,100,0.55);
    border: 1px solid rgba(255,51,51,0.12);
}

.cv.partial {
    background: rgba(255,189,46,0.08);
    color: #ffbd2e;
    border: 1px solid rgba(255,189,46,0.2);
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS — INFINITE MARQUEE
═══════════════════════════════════════════════════ */
.testimonials-section {
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-section .section-header {
    padding: 0 40px;
}

/* Marquee wrapper — clips the track and fades edges */
.testi-marquee-wrap {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    position: relative;
}

/* The scrolling strip */
.testi-track {
    display: flex;
    gap: 18px;
    width: max-content;
}

.track-left  { animation: marqueeLeft  35s linear infinite; }
.track-right { animation: marqueeRight 40s linear infinite; }

@keyframes marqueeLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Pause on hover */
.testi-marquee-wrap:hover .testi-track {
    animation-play-state: paused;
}

/* ── Card glass style ── */
.testi-card {
    width: 320px;
    flex-shrink: 0;
    padding: 24px 26px;
    border-radius: 18px;

    /* Glassmorphism */
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);

    /* Subtle inner glow on top edge */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.4);

    position: relative;
    overflow: hidden;
    cursor: default;
    transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}

/* Faint large quote character */
.testi-card::before {
    content: '\201C';
    position: absolute;
    top: -18px;
    right: 16px;
    font-size: 7rem;
    color: rgba(255, 255, 255, 0.04);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Hover lift + accent border glow */
.testi-card:hover {
    transform: translateY(-6px) scale(1.015);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 16px 48px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}

.testi-stars {
    color: #f59e0b;
    font-size: 0.82rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.testi-text {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--av) 16%, transparent);
    border: 1px solid color-mix(in srgb, var(--av) 40%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--av);
    flex-shrink: 0;
    box-shadow: 0 0 14px color-mix(in srgb, var(--av) 22%, transparent);
}

.testi-name {
    font-size: 0.87rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.testi-role {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 2px;
}


/* ═══════════════════════════════════════════════════
   CHANGELOG TIMELINE
═══════════════════════════════════════════════════ */
.changelog-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

.changelog-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
}

.cl-entry {
    display: grid;
    grid-template-columns: 24px 2px 1fr;
    gap: 0 22px;
    align-items: start;
}

.cl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.2);
    margin-top: 24px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    justify-self: center;
}

.cl-dot-blue   { background: rgba(0,168,255,0.3);   border-color: var(--accent-blue);   box-shadow: 0 0 10px rgba(0,168,255,0.4); }
.cl-dot-purple { background: rgba(138,43,226,0.3);  border-color: var(--accent-purple);  box-shadow: 0 0 10px rgba(138,43,226,0.4); }
.cl-dot-green  { background: rgba(0,255,102,0.3);   border-color: var(--accent-green);  box-shadow: 0 0 10px rgba(0,255,102,0.3); }

.cl-line {
    width: 2px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
    margin-top: 36px;
    margin-bottom: 0;
    height: auto;
    min-height: 100%;
    justify-self: center;
}

.cl-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 22px 26px;
    margin-bottom: 24px;
    transition: border-color 0.3s, transform 0.3s;
}

.cl-card:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateX(4px);
}

.cl-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.cl-version {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    font-family: monospace;
    letter-spacing: 1px;
}

.cl-date {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.cl-tag {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cl-tag.new    { background: rgba(0,168,255,0.15);  color: var(--accent-blue);   border: 1px solid rgba(0,168,255,0.3); }
.cl-tag.major  { background: rgba(138,43,226,0.15); color: #c084fc;              border: 1px solid rgba(138,43,226,0.3); }
.cl-tag.launch { background: rgba(0,255,102,0.1);   color: var(--accent-green);  border: 1px solid rgba(0,255,102,0.25); }

.cl-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.cl-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cl-items li {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
}

.cl-plus   { color: var(--accent-green); font-weight: 700; flex-shrink: 0; }
.cl-fix    { color: #f59e0b;             font-weight: 700; flex-shrink: 0; }
.cl-remove { color: var(--accent-red);   font-weight: 700; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 56px 0 0;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 48px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 240px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
}

.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.6;
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social-btn:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 110px;
}

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    margin: 0 0 4px;
}

.footer-col a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 40px;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.18);
}

/* ═══════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════ */
.pricing-section {
    padding: 100px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-list {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
}

.pricing-row-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 32px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
    gap: 24px;
}

.pricing-row-item:last-child {
    border-bottom: none;
}

.pricing-row-item:hover {
    background: rgba(255,255,255,0.025);
}

.pricing-row-featured {
    background: rgba(255,255,255,0.04);
}

.pricing-row-featured:hover {
    background: rgba(255,255,255,0.06);
}

.pri-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pri-num {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.18);
    font-variant-numeric: tabular-nums;
    min-width: 20px;
}

.pri-name {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: -0.01em;
}

.pri-badge {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 3px 10px;
}

.pri-center {
    display: flex;
    justify-content: center;
}

.pri-price-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pri-price-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.pri-price-line-dim .pri-price {
    color: rgba(255,255,255,0.35);
}

.pri-price-line-dim .pri-price-tag {
    color: rgba(255,255,255,0.2);
}

.pri-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.pri-price-sm {
    font-size: 1.25rem;
}

.pri-price-tag {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pri-right {
    display: flex;
    justify-content: flex-end;
}

.pri-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.83rem;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.pri-btn:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.18);
}

.pri-btn-white {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.pri-btn-white:hover {
    background: rgba(255,255,255,0.88);
    color: #111;
}

@media (max-width: 768px) {
    .pricing-row-item {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
    }
    .pri-center { justify-content: flex-start; }
    .pri-right { justify-content: flex-start; }
}

/* ═══════════════════════════════════════════════════
   MOUSE TRAIL
═══════════════════════════════════════════════════ */
.trail-dot {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    animation: trailFade 0.65s ease forwards;
}

@keyframes trailFade {
    0%   { opacity: 0.7; transform: translate(-50%,-50%) scale(1); }
    100% { opacity: 0;   transform: translate(-50%,-50%) scale(0.1); }
}

/* Scroll progress bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #00a8ff, #8a2be2, #00a8ff);
    background-size: 200% 100%;
    z-index: 9999;
    width: 0%;
    transition: width 0.08s;
    box-shadow: 0 0 8px rgba(0,168,255,0.7);
    animation: progressGlow 3s linear infinite;
}

@keyframes progressGlow {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* ═══════════════════════════════════════════════════
   DESTRUCT DEMO SECTION
═══════════════════════════════════════════════════ */
.destruct-demo-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.destruct-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

/* ── Menu Panel ── */
.destruct-menu-panel {
    perspective: 1000px;
}

.menu-window {
    background: #0a0a0f;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0,0,0,0.8),
        0 0 0 1px rgba(255,255,255,0.03),
        inset 0 1px 0 rgba(255,255,255,0.05);
    transform: rotateY(-2deg);
    transition: transform 0.5s ease;
}

.menu-window:hover {
    transform: rotateY(0deg) translateY(-5px);
}

.menu-titlebar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: linear-gradient(180deg, #151520 0%, #0d0d14 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.menu-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
}

.menu-controls {
    display: flex;
    gap: 8px;
}

.menu-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.mc-min { background: #ffbd2e; color: #000; }
.mc-max { background: #28c841; color: #000; }
.mc-close { background: #ff5f57; color: #000; }

.menu-controls span:hover { transform: scale(1.2); }

.menu-sidebar {
    width: 100%;
    background: rgba(0,0,0,0.3);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    gap: 4px;
    padding: 8px 12px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    font-weight: 500;
    position: relative;
}

.menu-item svg {
    stroke: rgba(255,255,255,0.4);
    transition: stroke 0.25s;
}

.menu-item:hover {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.8);
}

.menu-item:hover svg { stroke: rgba(255,255,255,0.7); }

.menu-item.active {
    background: linear-gradient(135deg, rgba(255,59,48,0.15) 0%, rgba(255,59,48,0.05) 100%);
    color: #ff5f57;
    border: 1px solid rgba(255,59,48,0.25);
}

.menu-item.active svg { stroke: #ff5f57; }

/* Cursor simulation */
.menu-cursor-sim {
    position: absolute;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M4 4l16 8-7 2-2 7z'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    opacity: 0;
    animation: cursorMove 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    pointer-events: none;
}

@keyframes cursorMove {
    0%, 20% { opacity: 0; right: 40px; }
    30% { opacity: 1; right: 10px; }
    40%, 50% { opacity: 1; right: 10px; transform: translateY(-50%) scale(0.9); }
    55% { transform: translateY(-50%) scale(1); }
    70%, 100% { opacity: 0; right: 10px; }
}

.menu-content {
    padding: 20px;
    min-height: 320px;
}

.destruct-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff5f57;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.destruct-content h3::before {
    content: '⚠';
    font-size: 1rem;
}

.destruct-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.destruct-btn {
    position: relative;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #ff3b30 0%, #ff6b5b 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255,59,48,0.3);
}

.destruct-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,59,48,0.5);
}

.destruct-btn .btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: none;
}

.destruct-btn:hover .btn-glow {
    animation: btnGlowSweep 0.6s ease forwards;
}

@keyframes btnGlowSweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.destruct-btn.running {
    background: linear-gradient(135deg, #333 0%, #222 100%);
    pointer-events: none;
}

.destruct-btn.running .btn-text::after {
    content: '...';
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Operations List */
.destruct-operations {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.destruct-operations.show {
    opacity: 1;
    max-height: 400px;
}

.op-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 8px;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.op-item.active {
    opacity: 1;
    background: rgba(255,189,46,0.05);
    border-color: rgba(255,189,46,0.2);
}

.op-item.done {
    opacity: 1;
    background: rgba(0,255,102,0.05);
    border-color: rgba(0,255,102,0.15);
}

.op-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,189,46,0.2);
    border-top-color: #ffbd2e;
    border-radius: 50%;
    display: none;
    animation: spin 0.8s linear infinite;
}

.op-item.active .op-spinner { display: block; }

.op-check {
    width: 18px;
    height: 18px;
    background: rgba(0,255,102,0.15);
    border: 1px solid rgba(0,255,102,0.3);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #00ff66;
    font-weight: 700;
}

.op-item.done .op-check { display: flex; }
.op-item.done .op-spinner { display: none; }

.op-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.op-item.active .op-text { color: #ffbd2e; }
.op-item.done .op-text { color: #00ff66; }

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Complete state */
.destruct-complete {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0,255,102,0.1) 0%, rgba(0,255,102,0.02) 100%);
    border: 1px solid rgba(0,255,102,0.25);
    border-radius: 12px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: completeReveal 0.6s ease forwards;
}

.destruct-complete.show { display: flex; }

@keyframes completeReveal {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.complete-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00ff66 0%, #00cc52 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    font-weight: 700;
    box-shadow: 0 0 30px rgba(0,255,102,0.4);
}

.destruct-complete span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #00ff66;
    letter-spacing: 2px;
}

/* ── Nexora Panel ── */
.nexora-panel {
    perspective: 1000px;
}

.nexora-website {
    transform: rotateY(2deg);
    transition: transform 0.5s ease;
}

.nexora-website:hover {
    transform: rotateY(0deg) translateY(-5px);
}

.nexora-browser {
    background: #0a0a0f;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0,0,0,0.8),
        0 0 0 1px rgba(255,255,255,0.03),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.nexora-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(180deg, #151520 0%, #0d0d14 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.nd {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.nr { background: #ff5f57; }
.ny { background: #ffbd2e; }
.ng { background: #28c841; }

.nexora-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.nexora-url svg {
    stroke: #00ff66;
}

.nexora-body {
    min-height: 380px;
    position: relative;
    background: linear-gradient(180deg, #08080c 0%, #0a0a10 100%);
}

.nexora-page {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nexora-page.active {
    display: flex;
    opacity: 1;
}

/* Landing Page */
.nexora-logo {
    text-align: center;
    margin-bottom: 30px;
}

.nexora-shield {
    margin-bottom: 16px;
    animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(0,212,255,0.3)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(0,212,255,0.5)); }
}

.nexora-logo h2 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 6px;
    background: linear-gradient(135deg, #00d4ff 0%, #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}

.nexora-logo p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

.nexora-download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border: none;
    border-radius: 10px;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,212,255,0.3);
}

.nexora-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,212,255,0.5);
}

.nexora-download-btn svg {
    stroke: #000;
}

.nexora-version {
    margin-top: 16px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
}

/* Download Page */
.download-animation {
    text-align: center;
}

.download-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon svg {
    stroke: #00d4ff;
    animation: downloadBounce 1s ease-in-out infinite;
}

@keyframes downloadBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.download-pulse {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(0,212,255,0.3);
    border-radius: 50%;
    animation: pulsing 1.5s ease-out infinite;
}

@keyframes pulsing {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.download-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.dl-filename {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-family: monospace;
}

.dl-progress-bar {
    width: 200px;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.dl-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00d4ff, #8a2be2);
    border-radius: 3px;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(0,212,255,0.5);
}

.dl-percent {
    font-size: 0.9rem;
    font-weight: 600;
    color: #00d4ff;
}

/* Tool Page */
.tool-window {
    width: 100%;
    max-width: 320px;
    background: #0c0c14;
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 20px rgba(0,212,255,0.1);
}

.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: linear-gradient(180deg, #12121a 0%, #0c0c14 100%);
    border-bottom: 1px solid rgba(0,212,255,0.1);
}

.tool-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00d4ff;
}

.tool-controls {
    display: flex;
    gap: 10px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

.tool-controls span {
    cursor: pointer;
    transition: color 0.2s;
}

.tool-controls span:hover { color: #fff; }
.tool-close:hover { color: #ff5f57 !important; }

.tool-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.scan-visual {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scan-ring {
    position: absolute;
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 50%;
    animation: scanRing 2s linear infinite;
}

.ring-1 { width: 60px; height: 60px; animation-delay: 0s; }
.ring-2 { width: 80px; height: 80px; animation-delay: 0.4s; }
.ring-3 { width: 100px; height: 100px; animation-delay: 0.8s; }

@keyframes scanRing {
    0% { transform: scale(0.8); opacity: 1; border-color: rgba(0,212,255,0.5); }
    100% { transform: scale(1.3); opacity: 0; border-color: rgba(0,212,255,0); }
}

.scan-center {
    position: relative;
    z-index: 2;
    color: #00d4ff;
    animation: scanPulse 1.5s ease-in-out infinite;
}

@keyframes scanPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.scan-status {
    text-align: center;
}

.status-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #00d4ff;
    animation: textBlink 1s ease-in-out infinite;
}

@keyframes textBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.scan-log {
    width: 100%;
    max-height: 100px;
    overflow-y: auto;
    font-family: monospace;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.3);
    border-radius: 6px;
    padding: 10px;
}

.log-entry {
    padding: 2px 0;
    opacity: 0;
    animation: logAppear 0.3s ease forwards;
}

@keyframes logAppear {
    to { opacity: 1; }
}

.log-entry.success { color: #00ff66; }
.log-entry.info { color: #00d4ff; }

/* Results Page */
.results-container {
    text-align: center;
    animation: resultsReveal 0.6s ease forwards;
}

@keyframes resultsReveal {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.results-icon {
    position: relative;
    margin-bottom: 20px;
}

.results-icon svg {
    animation: resultsPop 0.5s ease forwards;
}

@keyframes resultsPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.results-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0,255,136,0.3) 0%, transparent 70%);
    animation: glowPulse 2s ease-in-out infinite;
}

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

.results-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.results-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.status-badge {
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(0,255,136,0.2) 0%, rgba(0,255,136,0.05) 100%);
    border: 1px solid rgba(0,255,136,0.4);
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 800;
    color: #00ff88;
    letter-spacing: 3px;
    box-shadow: 0 0 20px rgba(0,255,136,0.2);
}

.status-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.results-details {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.detail-row:last-child { border-bottom: none; }

.detail-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.detail-value {
    font-size: 0.8rem;
    font-weight: 600;
}

.detail-value.clean { color: #00ff88; }

.results-close-btn {
    padding: 10px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.results-close-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .destruct-showcase {
        grid-template-columns: 1fr;
    }
    
    .menu-window, .nexora-website {
        transform: none;
    }
}

/* ═══════════════════════════════════════════════════
   DESTRUCT LAYER FEATURE CARD
═══════════════════════════════════════════════════ */
.destruct-layer-card {
    background: #030306 !important;
    border-color: rgba(255,80,60,0.12) !important;
    transition: border-color 0.4s, transform 0.3s;
    overflow: hidden;
}

.destruct-layer-card:hover {
    border-color: rgba(255,80,60,0.35) !important;
    transform: translateY(-5px);
}

.destruct-layer-card .card-content {
    position: relative;
    padding: 30px;
    min-height: 420px;
    overflow: hidden;
}

/* Diagram layout */
.destruct-diagram {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88%;
    max-width: 640px;
}

/* Source nodes */
.dstr-sources {
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
    flex-shrink: 0;
}

.dstr-node {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 120px;
    padding: 7px 10px;
    background: rgba(255,80,60,0.04);
    border: 1px solid rgba(255,80,60,0.12);
    border-radius: 10px;
    transition: all 0.35s ease;
    animation: nodeGlow 3s ease-in-out infinite;
    animation-delay: var(--nd);
}

.dstr-node:hover {
    background: rgba(255,80,60,0.1);
    border-color: rgba(255,80,60,0.35);
    transform: translateX(-4px);
}

@keyframes nodeGlow {
    0%, 100% { border-color: rgba(255,80,60,0.12); box-shadow: none; }
    50% { border-color: rgba(255,80,60,0.3); box-shadow: 0 0 12px rgba(255,80,60,0.1); }
}

.dstr-node svg {
    stroke: rgba(255,100,80,0.7);
    flex-shrink: 0;
}

.dstr-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Connection lines */
.dstr-lines {
    flex-shrink: 0;
    z-index: 1;
}

.dstr-beam {
    animation: dstrBeamTravel 2.5s ease-in-out infinite;
}

.db-1 { animation-delay: 0s; }
.db-2 { animation-delay: 0.4s; }
.db-3 { animation-delay: 0.8s; }
.db-4 { animation-delay: 1.2s; }
.db-5 { animation-delay: 1.6s; }
.db-6 { animation-delay: 2.0s; }

@keyframes dstrBeamTravel {
    0%   { stroke-dashoffset: 280; opacity: 0; }
    10%  { opacity: 1; }
    55%  { opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

/* Center destruct core */
.dstr-core {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.dstr-core-icon {
    position: relative;
    z-index: 3;
    width: 56px;
    height: 56px;
    background: radial-gradient(circle, rgba(255,60,40,0.15) 0%, rgba(255,60,40,0.02) 70%);
    border: 1px solid rgba(255,80,60,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5a3c;
    box-shadow:
        0 0 25px rgba(255,60,40,0.2),
        inset 0 -10px 20px rgba(255,60,40,0.1);
    animation: corePulse 2s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% { box-shadow: 0 0 25px rgba(255,60,40,0.2), inset 0 -10px 20px rgba(255,60,40,0.1); }
    50% { box-shadow: 0 0 40px rgba(255,60,40,0.4), inset 0 -10px 20px rgba(255,60,40,0.2); transform: scale(1.04); }
}

.dstr-core-icon svg {
    stroke: #ff5a3c;
    filter: drop-shadow(0 0 6px rgba(255,60,40,0.5));
}

/* Rings */
.dstr-ring {
    position: absolute;
    border: 1px solid rgba(255,80,60,0.2);
    border-radius: 50%;
    animation: ringExpand 2.5s ease-out infinite;
}

.dstr-ring-1 { width: 56px; height: 56px; animation-delay: 0s; }
.dstr-ring-2 { width: 56px; height: 56px; animation-delay: 0.8s; }
.dstr-ring-3 { width: 56px; height: 56px; animation-delay: 1.6s; }

@keyframes ringExpand {
    0%   { transform: scale(1); opacity: 0.8; border-color: rgba(255,80,60,0.4); }
    100% { transform: scale(2.2); opacity: 0; border-color: rgba(255,80,60,0); }
}

/* Shred particles */
.dstr-shred-particles {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.shred-p {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 8px;
    background: rgba(255,120,60,0.7);
    border-radius: 1px;
    animation: shredFly 2s ease-out infinite;
    box-shadow: 0 0 4px rgba(255,100,50,0.5);
}

@keyframes shredFly {
    0%   { transform: translate(-50%,-50%) rotate(0deg) scale(0); opacity: 0; }
    20%  { transform: translate(-50%,-50%) rotate(var(--r)) scale(1); opacity: 1; }
    100% { transform: translate(calc(-50% + var(--px)), calc(-50% + var(--py))) rotate(var(--r)) scale(0); opacity: 0; }
}

/* Output beam */
.dstr-out-line {
    flex-shrink: 0;
    z-index: 1;
}

.db-out {
    animation: dstrOutBeam 2.5s ease-in-out infinite 1.2s;
}

@keyframes dstrOutBeam {
    0%   { stroke-dashoffset: 100; opacity: 0; }
    10%  { opacity: 1; }
    55%  { opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

/* Clean result node */
.dstr-result {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgba(0,255,136,0.06);
    border: 1px solid rgba(0,255,136,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0;
    animation: resultPulse 3s ease-in-out infinite;
}

@keyframes resultPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0,255,136,0.1); }
    50% { box-shadow: 0 0 25px rgba(0,255,136,0.25); border-color: rgba(0,255,136,0.5); }
}

.dstr-result-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0,255,136,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowBreath 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowBreath {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* Bottom badge */
.dstr-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff5a3c;
    margin-bottom: 8px;
}

.dstr-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff5a3c;
    box-shadow: 0 0 8px #ff5a3c;
    animation: badgeDotBlink 1.5s ease-in-out infinite;
}

@keyframes badgeDotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.destruct-layer-card h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.destruct-layer-card p {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    max-width: 400px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .destruct-diagram {
        transform: translate(-50%, -50%) scale(0.7);
    }
    .dstr-node { width: 100px; }
}

/* ===== EFI BOOT LOADER ===== */
body.loading-active { overflow: hidden; }

.boot-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', 'Consolas', 'Courier New', monospace;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.boot-loader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.boot-inner {
    width: min(720px, 92vw);
    text-align: center;
}

.ascii-logo {
    font-size: clamp(0.7rem, 3.2vw, 1.15rem);
    line-height: 1.08;
    margin: 0 auto 24px;
    text-align: center;
    white-space: pre;
    border: none;
    background: none;
    font-weight: 700;
    letter-spacing: 2px;
    animation: asciiColorCycle 0.75s linear infinite;
    filter: drop-shadow(0 0 28px currentColor);
}

@keyframes asciiColorCycle {
    0%   { color: #ef4444; }
    16%  { color: #f97316; }
    33%  { color: #eab308; }
    50%  { color: #22c55e; }
    66%  { color: #3b82f6; }
    83%  { color: #a855f7; }
    100% { color: #ef4444; }
}

.boot-subtitle {
    font-size: 0.72rem;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 32px;
    text-transform: uppercase;
}

.boot-log-wrap {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 20px 24px;
    text-align: left;
    min-height: 52px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.boot-log {
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.6);
    width: 100%;
}

.boot-line-active {
    animation: bootLineIn 0.35s ease;
}

@keyframes bootLineIn {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
}

.boot-ok { color: #22c55e; font-weight: 700; }
.boot-info { color: #60a5fa; font-weight: 700; }

.boot-progress-track {
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 99px;
    overflow: hidden;
}

.boot-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    background-size: 200% 100%;
    animation: progressShine 1.5s linear infinite;
    transition: width 0.4s ease;
    border-radius: 99px;
}

@keyframes progressShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* ===== FAQ ===== */
.faq-section {
    padding: 100px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: rgba(59,130,246,0.35);
    background: rgba(59,130,246,0.04);
}

.faq-question {
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: transform 0.25s;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
    color: #60a5fa;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 22px 18px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    background: var(--bg-color, #050505);
    min-height: 100vh;
}

.legal-content {
    max-width: 720px;
    margin: 120px auto 60px;
    padding: 0 40px;
    color: var(--text-primary);
}

.legal-content h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.legal-updated {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.1rem;
    margin: 32px 0 12px;
    color: #fff;
}

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

.legal-content a {
    color: #60a5fa;
    text-decoration: none;
}
.legal-content a:hover { text-decoration: underline; }

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: contain;
}
