/* ============================================
   CSS VARIABLES & RESET
   ============================================ */

:root {
    /* Core Industrial Palette */
    --primary: #37474f;
    --primary-dark: #263238;
    --primary-darker: #1a2327;
    --primary-light: #455a64;
    --secondary: #cfd8dc;
    --secondary-dark: #b0bec5;
    --secondary-light: #eceff1;
    --accent: #ff6f00;
    --accent-dark: #e65100;
    --accent-light: #ff8f00;
    --accent-glow: rgba(255, 111, 0, 0.3);

    /* Metallic Colors */
    --steel: #607d8b;
    --steel-light: #78909c;
    --gunmetal: #2c3e50;
    --rust: #bf360c;
    --rust-light: #d84315;
    --rivet-silver: #90a4ae;
    --blueprint-blue: #1a3a4a;
    --blueprint-line: rgba(100, 181, 246, 0.08);

    /* Warning Stripe */
    --warning-yellow: #ffc107;
    --warning-black: #212121;

    /* Text */
    --text-primary: #eceff1;
    --text-secondary: #b0bec5;
    --text-muted: #78909c;
    --text-dark: #263238;

    /* Surfaces */
    --surface-dark: #1e2a30;
    --surface-mid: #2a3740;
    --surface-light: #37474f;
    --surface-card: linear-gradient(145deg, #2f3d44 0%, #263238 100%);

    /* Borders */
    --border-heavy: 4px solid #455a64;
    --border-medium: 3px solid #37474f;
    --border-light: 2px solid #455a64;
    --border-accent: 3px solid var(--accent);

    /* Shadows */
    --shadow-heavy: 0 8px 32px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
    --shadow-medium: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-light: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-inset: inset 0 2px 6px rgba(0,0,0,0.4);

    /* Typography */
    --font-display: 'Bebas Neue', 'Oswald', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
    --font-body: 'Oswald', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-med: 0.4s ease;
    --transition-slow: 0.6s ease;

    /* Bolt size */
    --bolt-size: 12px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-primary);
    background-color: var(--primary-darker);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-light);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ============================================
   BLUEPRINT GRID BACKGROUND
   ============================================ */

.blueprint-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(var(--blueprint-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--blueprint-line) 1px, transparent 1px),
        linear-gradient(rgba(100, 181, 246, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 181, 246, 0.04) 1px, transparent 1px);
    background-size:
        100px 100px,
        100px 100px,
        20px 20px,
        20px 20px;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   WARNING STRIPE PATTERNS
   ============================================ */

.warning-stripe-full {
    height: 8px;
    background: repeating-linear-gradient(
        -45deg,
        var(--warning-yellow),
        var(--warning-yellow) 10px,
        var(--warning-black) 10px,
        var(--warning-black) 20px
    );
    position: relative;
    z-index: 2;
}

.header-warning-stripe {
    height: 4px;
    background: repeating-linear-gradient(
        -45deg,
        var(--accent),
        var(--accent) 8px,
        var(--primary-dark) 8px,
        var(--primary-dark) 16px
    );
}

/* ============================================
   BOLT / RIVET DECORATIONS
   ============================================ */

.bolt {
    position: absolute;
    width: var(--bolt-size);
    height: var(--bolt-size);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #b0bec5 0%, #607d8b 50%, #455a64 100%);
    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.3),
        0 1px 3px rgba(0,0,0,0.5);
    z-index: 5;
}

.bolt::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    font-family: var(--font-mono);
    color: rgba(0,0,0,0.4);
    line-height: 1;
}

.bolt-tl { top: 8px; left: 8px; }
.bolt-tr { top: 8px; right: 8px; }
.bolt-bl { bottom: 8px; left: 8px; }
.bolt-br { bottom: 8px; right: 8px; }

.card-bolts, .panel-bolts {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 5;
}

/* ============================================
   METAL CARD BASE
   ============================================ */

.metal-card {
    position: relative;
    background: var(--surface-card);
    border: var(--border-heavy);
    border-top-color: #546e7a;
    border-left-color: #546e7a;
    border-right-color: #263238;
    border-bottom-color: #263238;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
}

.metal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1) 50%, transparent);
    z-index: 3;
}

.metal-panel {
    position: relative;
    background: var(--surface-card);
    border: var(--border-heavy);
    border-top-color: #546e7a;
    border-left-color: #546e7a;
    border-right-color: #263238;
    border-bottom-color: #263238;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    border-color: var(--accent-dark);
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
    background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 100%);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(-2px);
    color: #fff;
}

.btn-secondary {
    background: var(--surface-mid);
    color: var(--text-primary);
    border-color: var(--steel);
    box-shadow: var(--shadow-light);
}

.btn-secondary:hover {
    background: var(--surface-light);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   NAVIGATION
   ============================================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 35, 39, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: var(--border-heavy);
    transition: all var(--transition-med);
}

.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: 2px solid var(--accent-dark);
    font-size: 20px;
    color: #fff;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 3px;
    line-height: 1;
    color: var(--text-primary);
}

.logo-main .accent {
    color: var(--accent);
}

.logo-sub {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-top: 2px;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 8px 16px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 8px 20px;
    border: 2px solid var(--accent-dark);
    margin-left: 8px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--accent-light);
    color: #fff !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 2px solid var(--steel);
    padding: 8px;
    cursor: pointer;
}

.toggle-bar {
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

.mobile-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
    background: linear-gradient(160deg, var(--primary-darker) 0%, var(--blueprint-blue) 50%, var(--primary-dark) 100%);
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 111, 0, 0.15);
    border: 2px solid var(--accent);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 24px;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.3); }
    50% { box-shadow: 0 0 20px 4px rgba(255, 111, 0, 0.15); }
}

.hero-title {
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-line-1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 6px;
    color: var(--text-secondary);
}

.title-line-2 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    letter-spacing: 8px;
    color: var(--text-primary);
}

.accent-text {
    color: var(--accent);
    position: relative;
}

.hero-description {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats-mini {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-top: 2px solid var(--steel);
}

.mini-stat {
    display: flex;
    flex-direction: column;
}

.mini-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.mini-stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mini-stat-divider {
    width: 2px;
    height: 40px;
    background: var(--steel);
}

/* Hero Machine Visual */
.hero-machine {
    position: relative;
    z-index: 3;
    display: none;
}

.machine-frame {
    position: relative;
    width: 400px;
    height: 350px;
}

.machine-screen {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(180deg, #0d1b2a 0%, #1b2838 100%);
    border: 3px solid var(--steel);
    box-shadow: var(--shadow-inset), 0 0 30px rgba(100, 181, 246, 0.05);
    overflow: hidden;
}

.screen-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.machine-bolts {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}

.machine-bolts .bolt {
    width: 16px;
    height: 16px;
}

.machine-bolts .bolt-tl { top: 2px; left: 2px; }
.machine-bolts .bolt-tr { top: 2px; right: 2px; }
.machine-bolts .bolt-bl { bottom: 2px; left: 2px; }
.machine-bolts .bolt-br { bottom: 2px; right: 2px; }

/* Factory Animation Inside Screen */
.factory-visual {
    width: 100%;
    height: 100%;
    position: relative;
}

.gear {
    position: absolute;
    color: var(--steel);
    opacity: 0.3;
}

.gear-1 {
    top: 20px;
    right: 30px;
    font-size: 60px;
    animation: spin-cw 8s linear infinite;
}

.gear-2 {
    top: 55px;
    right: 75px;
    font-size: 40px;
    animation: spin-ccw 6s linear infinite;
}

.gear-3 {
    bottom: 60px;
    left: 20px;
    font-size: 50px;
    animation: spin-cw 10s linear infinite;
}

@keyframes spin-cw {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spin-ccw {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.conveyor {
    position: absolute;
    bottom: 30px;
    left: 10%;
    right: 10%;
    height: 20px;
}

.conveyor-belt {
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--steel) 0px,
        var(--steel) 8px,
        var(--primary-dark) 8px,
        var(--primary-dark) 16px
    );
    position: absolute;
    bottom: 0;
    animation: belt-move 2s linear infinite;
}

@keyframes belt-move {
    from { background-position: 0 0; }
    to { background-position: 16px 0; }
}

.conveyor-item {
    position: absolute;
    bottom: 6px;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border: 2px solid var(--accent-dark);
    animation: item-move 4s linear infinite;
}

.item-1 { animation-delay: 0s; }
.item-2 { animation-delay: 1.3s; }
.item-3 { animation-delay: 2.6s; }

@keyframes item-move {
    0% { left: 0%; opacity: 0; }
    5% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.smoke-stack {
    position: absolute;
    top: 10px;
    left: 30px;
}

.smoke {
    width: 8px;
    height: 8px;
    background: rgba(176, 190, 197, 0.3);
    border-radius: 50%;
    position: absolute;
    animation: smoke-rise 3s ease-out infinite;
}

.smoke-1 { animation-delay: 0s; left: 0; }
.smoke-2 { animation-delay: 1s; left: 12px; }
.smoke-3 { animation-delay: 2s; left: 6px; }

@keyframes smoke-rise {
    0% { transform: translateY(0) scale(1); opacity: 0.5; }
    100% { transform: translateY(-60px) scale(3); opacity: 0; }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--steel);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--accent);
    animation: scroll-line-anim 2s ease-in-out infinite;
}

@keyframes scroll-line-anim {
    0% { top: -20px; }
    100% { top: 40px; }
}

.hero-scroll-indicator span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

/* ============================================
   TICKER / SOCIAL PROOF
   ============================================ */

.ticker-section {
    position: relative;
    z-index: 10;
    background: var(--primary-dark);
}

.ticker-container {
    overflow: hidden;
    padding: 16px 0;
    background: var(--surface-dark);
    border-top: 2px solid var(--steel);
    border-bottom: 2px solid var(--steel);
}

.ticker-track {
    display: flex;
    gap: 60px;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.ticker-item i {
    color: var(--accent);
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */

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

.section-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.tag-line {
    width: 40px;
    height: 2px;
    background: var(--steel);
}

.tag-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--accent);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 6px;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 12px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.05rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    position: relative;
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.about-card {
    padding: 40px 28px;
    text-align: center;
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-heavy), 0 0 30px rgba(255, 111, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: 3px solid var(--accent-dark);
    font-size: 28px;
    color: #fff;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(255, 111, 0, 0.2);
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* About Description Panel */
.about-description-panel {
    padding: 40px;
}

.panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.panel-left h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
}

.panel-left p {
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.panel-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.panel-list li i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* Tech Display */
.tech-display {
    background: #0d1b2a;
    border: 3px solid var(--steel);
    padding: 24px;
    box-shadow: var(--shadow-inset);
}

.readout-header {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--accent);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--steel);
    margin-bottom: 16px;
}

.readout-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(96, 125, 139, 0.2);
}

.readout-line span:last-child {
    color: var(--text-primary);
}

.status-online {
    color: #4caf50 !important;
    text-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

.status-good {
    color: #4caf50 !important;
}

.live-count {
    color: var(--accent) !important;
}

.readout-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0 0;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: var(--primary-dark);
    border: 1px solid var(--steel);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent));
    transition: width 1s ease;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    position: relative;
    padding: var(--section-padding);
    background: var(--primary-darker);
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px 28px;
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-heavy), 0 0 30px rgba(255, 111, 0, 0.1);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(255, 111, 0, 0.15);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 4px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-dark);
    border: 2px solid var(--steel);
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    position: relative;
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--blueprint-blue) 50%, var(--primary-dark) 100%);
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    padding: 36px 20px;
    text-align: center;
    transition: transform var(--transition-med);
}

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

.stat-gauge {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.gauge-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.gauge-bg {
    fill: none;
    stroke: var(--surface-dark);
    stroke-width: 8;
}

.gauge-fill {
    fill: none;
    stroke: var(--accent);
    stroke-width: 8;
    stroke-linecap: butt;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 2s ease-out;
    filter: drop-shadow(0 0 6px rgba(255, 111, 0, 0.4));
}

.gauge-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--accent);
    letter-spacing: 2px;
}

.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.stat-card p {
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Live Feed */
.live-feed {
    padding: 24px;
}

.feed-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--steel);
}

.feed-indicator {
    width: 10px;
    height: 10px;
    background: #4caf50;
    border-radius: 50%;
    animation: feed-blink 1.5s ease-in-out infinite;
}

@keyframes feed-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.feed-content {
    max-height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: rgba(0,0,0,0.2);
    border-left: 3px solid var(--steel);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-secondary);
    animation: feed-slide 0.4s ease-out;
}

.feed-item:first-child {
    border-left-color: var(--accent);
}

.feed-time {
    color: var(--accent);
    min-width: 60px;
}

.feed-msg i {
    color: var(--accent);
    margin-right: 4px;
}

@keyframes feed-slide {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.feed-content::-webkit-scrollbar {
    width: 6px;
}

.feed-content::-webkit-scrollbar-track {
    background: var(--surface-dark);
}

.feed-content::-webkit-scrollbar-thumb {
    background: var(--steel);
}

/* ============================================
   RESPONSIBLE GAMING SECTION
   ============================================ */

.responsible-section {
    position: relative;
    padding: var(--section-padding);
    background: var(--primary-darker);
    overflow: hidden;
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.responsible-card {
    padding: 36px 28px;
    text-align: center;
    transition: transform var(--transition-med);
}

.responsible-card:hover {
    transform: translateY(-4px);
}

.responsible-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--surface-dark);
    border: 3px solid var(--steel);
    font-size: 24px;
    color: var(--accent);
}

.responsible-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

/* Age Gate Warning */
.age-gate {
    padding: 24px;
    border-left: 5px solid var(--accent);
}

.age-gate-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.age-gate-content i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.age-gate-content strong {
    color: var(--accent);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    position: relative;
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    overflow: hidden;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    transition: box-shadow var(--transition-med);
}

.faq-item:hover {
    box-shadow: var(--shadow-heavy), 0 0 20px rgba(255, 111, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-q-icon {
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
    animation: spin-cw 8s linear infinite;
}

.faq-toggle {
    margin-left: auto;
    color: var(--steel);
    font-size: 0.9rem;
    transition: transform var(--transition-fast), color var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    border-top: 1px solid rgba(96, 125, 139, 0.3);
    padding-top: 16px;
}

/* ============================================
   SIGNUP / LEAD FORM SECTION
   ============================================ */

.signup-section {
    position: relative;
    padding: var(--section-padding);
    background: linear-gradient(160deg, var(--blueprint-blue) 0%, var(--primary-dark) 50%, var(--primary-darker) 100%);
    overflow: hidden;
}

.signup-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.signup-benefits {
    padding: 36px;
}

.signup-benefits h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 24px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.benefits-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 111, 0, 0.15);
    border: 2px solid var(--accent);
    font-size: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.benefits-list li strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.benefits-list li p {
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Spots Counter */
.spots-counter {
    background: var(--surface-dark);
    border: 2px solid var(--steel);
    padding: 20px;
    text-align: center;
}

.spots-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.spots-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent);
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.spots-bar {
    width: 100%;
    height: 10px;
    background: var(--primary-dark);
    border: 1px solid var(--steel);
    margin-bottom: 8px;
    overflow: hidden;
}

.spots-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
    width: 86%;
    transition: width 2s ease;
    position: relative;
}

.spots-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3));
    animation: spots-shimmer 2s ease-in-out infinite;
}

@keyframes spots-shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.spots-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Signup Form */
.signup-form-container {
    padding: 36px;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--steel);
}

.form-header i {
    color: var(--accent);
    font-size: 1.3rem;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--accent);
    font-size: 0.8rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--surface-dark);
    border: 3px solid var(--steel);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.15);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.8rem !important;
    font-weight: 300 !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    color: var(--text-muted) !important;
    cursor: pointer;
    line-height: 1.5;
}

.form-checkbox label a {
    color: var(--accent);
    text-decoration: underline;
}

.field-error {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #ef5350;
    margin-top: 4px;
    min-height: 16px;
}

.form-note {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 16px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.form-note i {
    color: #4caf50;
    margin-top: 2px;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.form-success p {
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.success-ref {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent);
    background: var(--surface-dark);
    border: 2px solid var(--steel);
    display: inline-block;
    padding: 8px 20px;
}

/* Form Error */
.form-error-msg {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(239, 83, 80, 0.1);
    border: 2px solid #ef5350;
    margin-top: 16px;
}

.form-error-msg i {
    color: #ef5350;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.form-error-msg p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
    position: relative;
    padding: var(--section-padding);
    background: var(--primary-dark);
    overflow: hidden;
}

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

.trust-card {
    padding: 32px 24px;
    text-align: center;
    transition: transform var(--transition-med);
}

.trust-card:hover {
    transform: translateY(-4px);
}

.trust-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: var(--surface-dark);
    border: 2px solid var(--steel);
    font-size: 22px;
    color: var(--accent);
}

.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: var(--primary-darker);
    padding-top: 0;
    border-top: var(--border-heavy);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-brand p {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-mid);
    border: 2px solid var(--steel);
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 300;
    font-size: 0.85rem;
}

.footer-links-col li i {
    color: var(--steel);
    font-size: 0.75rem;
    width: 16px;
}

.footer-links-col a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--accent);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 24px 0;
    border-top: 2px solid var(--steel);
}

.footer-bottom-left p {
    font-weight: 300;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-address {
    margin-top: 4px;
    font-family: var(--font-mono);
    font-size: 0.7rem !important;
    color: var(--text-muted);
}

.footer-badges {
    display: flex;
    gap: 16px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: 6px 12px;
    border: 1px solid var(--steel);
}

.badge-item i {
    color: var(--accent);
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(26, 35, 39, 0.98);
    border-top: 3px solid var(--accent);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 280px;
}

.cookie-icon {
    color: var(--accent);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.cookie-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.cookie-text p {
    font-weight: 300;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-accept {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent-dark);
}

.btn-accept:hover {
    background: var(--accent-light);
}

.btn-necessary {
    background: var(--surface-mid);
    color: var(--text-primary);
    border-color: var(--steel);
}

.btn-necessary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-decline {
    background: transparent;
    color: var(--text-muted);
    border-color: var(--steel);
}

.btn-decline:hover {
    border-color: #ef5350;
    color: #ef5350;
}

/* ============================================
   LEGAL CONTENT PAGES
   ============================================ */

.legal-content {
    padding: 140px 24px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content .legal-card {
    background: var(--secondary-light);
    border: var(--border-heavy);
    box-shadow: var(--shadow-heavy);
    padding: 48px;
    position: relative;
    color: var(--text-dark);
}

.legal-card .bolt-tl { top: 12px; left: 12px; }
.legal-card .bolt-tr { top: 12px; right: 12px; }
.legal-card .bolt-bl { bottom: 12px; left: 12px; }
.legal-card .bolt-br { bottom: 12px; right: 12px; }

.legal-content h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 8px;
}

.legal-content .legal-updated {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--steel);
    letter-spacing: 2px;
    margin-bottom: 32px;
    display: block;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-top: 32px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--secondary-dark);
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--primary-light);
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-content p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.92rem;
    color: #37474f;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 24px;
    margin-bottom: 12px;
}

.legal-content li {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.92rem;
    color: #37474f;
    line-height: 1.8;
    margin-bottom: 6px;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: var(--accent-dark);
}

.legal-content a:hover {
    color: var(--accent);
}

.legal-content strong {
    font-weight: 600;
    color: var(--primary);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

[data-reveal] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal="up"] {
    transform: translateY(40px);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (min-width: 1024px) {
    .hero-section {
        flex-direction: row;
        justify-content: space-between;
        padding: 120px 60px 60px;
        gap: 60px;
    }

    .hero-machine {
        display: block;
    }
}

@media (max-width: 1023px) {
    .hero-section {
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats-mini {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .panel-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .signup-container {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(26, 35, 39, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        border-bottom: var(--border-heavy);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-med);
        z-index: 999;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .nav-cta {
        margin-left: 0;
        text-align: center;
        justify-content: center;
    }

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-badges {
        flex-wrap: wrap;
    }

    .hero-stats-mini {
        flex-direction: column;
        gap: 16px;
    }

    .mini-stat-divider {
        width: 40px;
        height: 2px;
    }

    .cookie-inner {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
        text-align: center;
    }

    .legal-content .legal-card {
        padding: 28px 20px;
    }

    .legal-content h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title .title-line-2 {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* ============================================
   SCROLLBAR CUSTOM
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--steel);
    border: 2px solid var(--primary-darker);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ============================================
   SELECTION
   ============================================ */

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

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