/* ==========================================================================
   RESET & SYSTEM STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent; /* Disable tap highlight glow on mobile devices */
}

html {
    scroll-behavior: smooth;
    background-color: #080808;
    color: #ffffff;
    font-family: 'Neue Metana', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    cursor: none; /* Hide default cursor to enable custom interactive cursor */
    -webkit-overflow-scrolling: touch; /* Force smooth momentum scrolling on mobile iOS/iPadOS */
}

body.preloading {
    overflow: hidden !important;
    height: 100vh !important;
}

/* ==========================================================================
   CUSTOM PREMIUM TYPOGRAPHY
   ========================================================================== */
@font-face {
    font-family: 'Monument Extended';
    src: url('./assets/fonts/MonumentExtended-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Monument Extended';
    src: url('./assets/fonts/MonumentExtended-Ultrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Hanson';
    src: url('./assets/fonts/Hanson-Bold.ttf') format('truetype'),
         url('./assets/fonts/Hanson-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Neue Metana';
    src: url('./assets/fonts/NeueMetana-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Neue Metana';
    src: url('./assets/fonts/NeueMetana-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Uni Sans';
    src: url('./assets/fonts/Uni%20Sans%20Heavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

/* Helper Classes */
.font-display-large {
    font-family: 'Hanson', 'Monument Extended', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
.font-display {
    font-family: 'Monument Extended', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}
.font-text {
    font-family: 'Neue Metana', sans-serif;
    font-weight: 400;
}
.font-mono {
    font-family: 'Uni Sans', monospace;
    font-weight: 800;
    letter-spacing: 0.1em;
}
.text-red {
    color: #ff1e27 !important;
}
.text-green {
    color: #00ff66 !important;
}
.text-white {
    color: #ffffff !important;
}
.font-weight-bold {
    font-weight: 700;
}

/* ==========================================================================
   CSS CUSTOM VARIABLES
   ========================================================================== */
:root {
    --bg-dark: #080808;
    --card-bg: rgba(12, 12, 12, 0.7);
    --red-accent: #ff1e27;
    --red-accent-rgb: 255, 30, 39;
    --grid-line: rgba(255, 255, 255, 0.04);
    --border-light: rgba(255, 255, 255, 0.08);
    --text-muted: #888888;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   TECH GRID LAYOUT LINES (BACKGROUND)
   ========================================================================== */
.grid-lines-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
}

.grid-line {
    position: absolute;
    background-color: var(--grid-line);
}

.grid-line.vertical {
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
}
.grid-line.vertical:nth-child(1) { left: 25%; }
.grid-line.vertical:nth-child(2) { left: 50%; }
.grid-line.vertical:nth-child(3) { left: 75%; }
.grid-line.vertical:nth-child(4) { left: 100%; }

.grid-line.horizontal {
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
}
.grid-line.horizontal:nth-child(5) { top: 25%; }
.grid-line.horizontal:nth-child(6) { top: 50%; }
.grid-line.horizontal:nth-child(7) { top: 75%; }

/* ==========================================================================
   PRELOADER SCREEN
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    width: 100vw;
    height: 100vh;
}

.preloader-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    border-color: rgba(255, 255, 255, 0.03);
}

.preloader-cell.border-right { border-right: 1px solid rgba(255, 255, 255, 0.03); }
.preloader-cell.border-left { border-left: 1px solid rgba(255, 255, 255, 0.03); }
.preloader-cell.border-top { border-top: 1px solid rgba(255, 255, 255, 0.03); }
.preloader-cell.border-bottom { border-bottom: 1px solid rgba(255, 255, 255, 0.03); }

.tech-preloader-box {
    text-align: center;
    max-width: 320px;
    width: 80%;
}

.loading-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
}

.progress-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.progress-number {
    font-family: 'Hanson', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--red-accent);
    text-shadow: 0 0 20px rgba(255, 30, 39, 0.4);
    letter-spacing: -0.05em;
}

.progress-percent {
    font-family: 'Monument Extended', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-left: 0.2rem;
}

.loading-bar-wrapper {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.loading-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--red-accent);
    box-shadow: 0 0 10px var(--red-accent);
}

.loading-status {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* ==========================================================================
   CUSTOM CURSOR FOLLOWER
   ========================================================================== */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    mix-blend-mode: normal;
}

.cursor-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: var(--red-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

.cursor-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
}

.cursor-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    pointer-events: none;
    transition: transform 0.2s;
}

/* Cursor States */
.custom-cursor.hovering .cursor-ring {
    width: 64px;
    height: 64px;
    border-color: var(--red-accent);
    background-color: rgba(255, 30, 39, 0.1);
}
.custom-cursor.hovering .cursor-dot {
    width: 0;
    height: 0;
}
.custom-cursor.hovering-link .cursor-ring {
    width: 50px;
    height: 50px;
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}
.custom-cursor.hovering-item .cursor-ring {
    width: 80px;
    height: 80px;
    border-color: var(--red-accent);
    background-color: rgba(255, 30, 39, 0.15);
}
.custom-cursor.hovering-item .cursor-text {
    transform: translate(-50%, -50%) scale(1);
}

/* ==========================================================================
   LAYOUT STRUCTURE
   ========================================================================== */
.layout-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex-grow: 1;
}

.section {
    padding: 4rem 5vw;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: transparent;
    color: #fff;
    border: 1px solid var(--red-accent);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--red-accent);
    transition: var(--transition-fast);
    z-index: -1;
}

@media (hover: hover) {
    .btn-primary:hover::before {
        left: 0;
    }

    .btn-primary:hover {
        color: #fff;
        box-shadow: 0 0 20px rgba(255, 30, 39, 0.4);
    }
}

.btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

@media (hover: hover) {
    .btn:hover svg {
        transform: translate(2px, -2px);
    }
}

/* Border Utilities */
.border-all { border: 1px solid var(--border-light); }

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
    height: 90px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    padding: 0 5vw;
}

.header-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: 0.05em;
}

.domain-badge {
    font-size: 0.7rem;
    color: #fff;
    border: 1px solid rgba(255, 30, 39, 0.35);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    background-color: rgba(255, 30, 39, 0.08);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 15px rgba(255, 30, 39, 0.15);
    letter-spacing: 0.08em;
    font-weight: 600;
}

.glow-dot {
    width: 6px;
    height: 6px;
    background-color: var(--red-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--red-accent);
    animation: pulseGlow 2s infinite;
}

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

/* ==========================================================================
   SECTION 1: HERO
   ========================================================================== */
.section-hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(90vh - 90px);
    padding-top: 2rem;
}

.hero-text-container {
    width: 100%;
}

.hero-tag {
    font-size: 0.75rem;
    color: var(--red-accent);
    letter-spacing: 0.25em;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    font-size: clamp(2.5rem, 6.2vw, 6.2rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
}

.text-row {
    overflow: hidden;
    display: block;
}

.letter-reveal {
    display: inline-block;
    transform: translateY(100%);
}

.text-outline-white {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.85);
    color: transparent;
}

.hero-subtitle-row {
    margin-top: 1.5rem;
    max-width: 580px;
}

.hero-desc {
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    line-height: 1.6;
    color: var(--text-muted);
}

.hero-visual-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.outline-slideshow {
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: rgba(20, 20, 20, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slideshow-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.outline-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 2rem;
    background: radial-gradient(circle at center, rgba(255, 30, 39, 0.04) 0%, transparent 70%);
}

.outline-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.outline-slide .wireframe-svg {
    width: 100%;
    max-width: 230px;
    height: auto;
    margin-bottom: 2rem;
}

.outline-slide-title {
    font-size: 0.8rem;
    color: #fff;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 700;
    text-transform: uppercase;
}

.status-box {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 30, 39, 0.03) 100%);
    border: 1px solid rgba(255, 30, 39, 0.25) !important;
    position: relative;
    overflow: hidden;
}

.status-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--red-accent);
}

.status-title {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    font-weight: 600;
}

.status-value {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-shadow: 0 0 15px rgba(255, 30, 39, 0.45);
}

.typing-cursor {
    animation: typingBlink 0.75s step-end infinite;
    color: var(--red-accent);
    margin-left: 2px;
    font-weight: inherit;
}

@keyframes typingBlink {
    from, to { opacity: 0; }
    50% { opacity: 1; }
}

/* ==========================================================================
   SECTION 2: PRODUCT SHOWCASE (THE ARSENAL)
   ========================================================================== */
.section-showcase {
    position: relative;
}

.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.5rem;
}

.section-number {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-decor {
    font-size: 0.75rem;
    color: var(--red-accent);
}

.showcase-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    position: relative;
}

/* Product list items */
.product-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.product-item {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-num {
    font-size: 1rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.product-name {
    font-size: clamp(1.5rem, 3.2vw, 2.8rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    cursor: pointer;
    display: inline-block;
    transition: var(--transition-smooth);
}

/* Outline Text Effect */
.font-display-outline {
    font-family: 'Monument Extended', sans-serif;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
}

/* Hover States on product items (Enabled only for hover-capable devices) */
@media (hover: hover) {
    .product-list:hover .product-item {
        opacity: 0.15;
    }

    .product-list .product-item:hover {
        opacity: 1;
        transform: translateX(20px);
    }

    .product-item:hover .product-num {
        color: var(--red-accent);
    }

    .product-item:hover .product-name {
        -webkit-text-stroke: 1.5px var(--red-accent);
        color: var(--red-accent);
        text-shadow: 0 0 25px rgba(255, 30, 39, 0.35);
    }
}

/* Floating Card Container */
.floating-cards-wrapper {
    position: fixed;
    width: 320px;
    height: 380px;
    pointer-events: none;
    z-index: 100;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.floating-cards-wrapper.active {
    opacity: 1;
    visibility: visible;
}

/* The Wireframe Card style */
.wireframe-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.wireframe-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.card-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.55rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

.card-body {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    background: radial-gradient(circle at center, rgba(255, 30, 39, 0.03) 0%, transparent 70%);
}

.wireframe-svg {
    width: 100%;
    height: 100%;
    max-width: 220px;
    max-height: 220px;
}

.card-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.55rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* SVG Outline path animation styling */
.draw-path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Tactical Specs Panel (Desktop showcase right side) */
.tactical-panel {
    align-self: stretch;
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.7) 0%, rgba(6, 6, 6, 0.9) 100%);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.01), 0 15px 35px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.tactical-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-accent), transparent);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.85rem;
}

.panel-dot {
    width: 6px;
    height: 6px;
    background-color: var(--red-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--red-accent);
}

.panel-title {
    font-weight: 700;
    color: #fff;
}

.panel-status {
    color: var(--red-accent);
    font-weight: 700;
    animation: flash 1.5s infinite alternate;
}

@keyframes flash {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.panel-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.4rem;
}

.panel-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.panel-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    font-weight: 700;
}

.panel-value {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.panel-value.text-muted-more {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-transform: none;
}

.panel-value.text-white-highlight {
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.panel-value.highlight {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.performance-bar-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.2rem;
}

.bar-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.bar-track {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: var(--red-accent);
    box-shadow: 0 0 8px var(--red-accent);
}

.panel-log-screen {
    background-color: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 2px;
    margin-top: 0.3rem;
}

.log-screen-header {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 0.25rem;
    text-transform: uppercase;
}

.log-screen-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.log-screen-body.font-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0.02em;
}

.log-entry {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

/* Social links in Brief Panel */
.panel-socials {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.panel-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background-color: rgba(255, 255, 255, 0.01);
    color: var(--text-muted);
    border-radius: 3px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.panel-social-icon svg,
.panel-social-icon i {
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
}

@media (hover: hover) {
    .panel-social-icon:hover {
        color: #ffffff;
        background-color: rgba(255, 30, 39, 0.08);
        border-color: rgba(255, 30, 39, 0.35);
        box-shadow: 0 0 15px rgba(255, 30, 39, 0.12);
    }

    .panel-social-icon:hover svg,
    .panel-social-icon:hover i {
        transform: scale(1.1);
    }
}

.wireframe-card.active .draw-path,
.outline-slide.active .draw-path {
    stroke-dashoffset: 0;
}

/* Radar scanner sweeping animation */
.scanner-line {
    stroke: rgba(255, 30, 39, 0.2);
    stroke-width: 1px;
    animation: scannerSweep 3s infinite linear;
}

@keyframes scannerSweep {
    0% { y1: 0; y2: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { y1: 200; y2: 200; opacity: 0; }
}

/* ==========================================================================
   MOBILE CAROUSEL SHOWCASE (Touch screens fallback)
   ========================================================================== */
.section-mobile-gallery {
    display: none; /* Hidden on desktop */
    padding: 4rem 5vw;
    border-bottom: 1px solid var(--border-light);
}

/* ==========================================================================
   SECTION 3: THE LAUNCH CHAMBER (NEWSLETTER)
   ========================================================================== */
.section-notify {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8rem 5vw;
}

.launch-chamber-card {
    max-width: 800px;
    width: 100%;
    position: relative;
    padding: 4rem;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
}

.chamber-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.chamber-line {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.02);
}

.chamber-line.vertical {
    top: 0;
    bottom: 0;
    width: 1px;
    left: 50%;
}
.chamber-line.horizontal {
    left: 0;
    right: 0;
    height: 1px;
    top: 50%;
}

.card-interior {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.chamber-tag {
    font-size: 0.7rem;
    color: var(--red-accent);
    margin-bottom: 1.5rem;
}

.chamber-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.chamber-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Tech Form Styling */
.form-wrapper {
    width: 100%;
    transition: opacity 0.5s, transform 0.5s;
}

.cyber-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.input-container {
    position: relative;
    width: 100%;
    height: 60px;
}

/* Corner bracket details */
.input-corner {
    position: absolute;
    width: 8px;
    height: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
}

.corner-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.corner-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.corner-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.corner-br { bottom: 0; right: 0; border-left: none; border-top: none; }

.cyber-input {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 1.5rem;
    color: #fff;
    font-size: 0.8rem;
    border-radius: 2px;
    outline: none;
    transition: var(--transition-fast);
}

/* Focus animation: bracket lines expand/highlight */
.cyber-input:focus {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.02);
}

.input-container:focus-within .input-corner {
    border-color: var(--red-accent);
    width: 14px;
    height: 14px;
}

.btn-submit {
    height: 55px;
    font-size: 0.8rem;
    border-radius: 2px;
    width: 100%;
}

/* Success Membership Panel style */
.success-console {
    text-align: left;
    width: 100%;
    border: 1px solid rgba(255, 30, 39, 0.25);
    background-color: rgba(10, 10, 10, 0.95);
    border-radius: 4px;
    padding: 1.75rem;
    box-shadow: 0 15px 40px rgba(255, 30, 39, 0.08);
    transform: scale(0.95);
    opacity: 0;
    transition: var(--transition-smooth);
}

.success-console.show {
    transform: scale(1);
    opacity: 1;
}

.console-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.console-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.console-dot.green {
    background-color: var(--red-accent);
    box-shadow: 0 0 8px var(--red-accent);
}

.console-title {
    font-size: 0.6rem;
    color: #ffffff;
    letter-spacing: 0.1em;
}

.console-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.console-line {
    font-size: 0.7rem;
    color: #b0b0b0;
    line-height: 1.5;
}

.console-prompt {
    color: var(--red-accent);
    margin-right: 0.5rem;
    font-weight: 700;
}

.hide {
    display: none !important;
}

/* Cyber Socials Links */
.chamber-socials {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.socials-label {
    font-size: 0.55rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    font-weight: 700;
}

.socials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.chamber-social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background-color: rgba(255, 255, 255, 0.01);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 3px;
    transition: var(--transition-fast);
}

.chamber-social-link svg,
.chamber-social-link i {
    width: 14px;
    height: 14px;
}

@media (hover: hover) {
    .chamber-social-link:hover {
        color: #ffffff;
        background-color: rgba(255, 30, 39, 0.08);
        border-color: rgba(255, 30, 39, 0.35);
        box-shadow: 0 0 15px rgba(255, 30, 39, 0.12);
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    height: 80px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    padding: 0 5vw;
}

.footer-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    font-size: 0.55rem;
    color: var(--text-muted);
}

.footer-center {
    text-align: center;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.social-link {
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.55;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

@media (hover: hover) {
    .social-link:hover {
        opacity: 1;
        color: #ffffff;
    }
}

.social-link svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
}

@media (hover: hover) {
    .social-link:hover svg {
        transform: scale(1.1);
    }
}

/* ==========================================================================
   RESPONSIVE LAYOUTS & TOUCH DEVICES STYLING
   ========================================================================== */

/* Tablet & Mobile Breakpoints */
@media (max-width: 1024px) {
    body {
        cursor: auto; /* Fallback to default cursor on touch/smaller screens */
    }
    
    .preloader-grid {
        grid-template-columns: 0.1fr 1.8fr 0.1fr; /* Widen center column on mobile */
    }
    
    .tech-preloader-box {
        width: 100%;
        max-width: 290px;
    }
    
    .custom-cursor {
        display: none !important; /* Hide custom cursor */
    }

    .grid-lines-overlay {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-line.vertical:nth-child(1) { left: 50%; }
    .grid-line.vertical:nth-child(2),
    .grid-line.vertical:nth-child(3) { display: none; }

    .header-inner {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .domain-badge {
        order: 3;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .section-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 4rem;
        padding-bottom: 4rem;
        gap: 3rem;
    }

    .hero-subtitle-row {
        gap: 2rem;
    }

    /* Showcase changes: Disable desktop layout, activate mobile stack */
    .showcase-container {
        display: none !important; /* Hide list & floating card wrapper */
    }

    .section-mobile-gallery {
        display: block; /* Show the static cards */
    }

    .mobile-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mobile-card {
        padding: 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        position: relative;
    }

    .mobile-card-num {
        font-size: 0.65rem;
        color: var(--red-accent);
    }

    .mobile-card-title {
        font-size: 1.5rem;
        letter-spacing: -0.01em;
    }

    .mobile-svg-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2rem 0;
        background: radial-gradient(circle at center, rgba(255, 30, 39, 0.02) 0%, transparent 70%);
    }

    .mobile-svg-container svg {
        width: 150px;
        height: 150px;
    }

    .mobile-card-desc {
        font-size: 0.55rem;
        color: var(--text-muted);
        text-transform: uppercase;
        border-top: 1px solid var(--border-light);
        padding-top: 1rem;
        letter-spacing: 0.05em;
    }
    
    .launch-chamber-card {
        padding: 3rem 1.5rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-center {
        text-align: center;
    }
    
    .footer-right {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 4rem 1.5rem;
    }
    
    .header {
        padding: 0 1.5rem;
        height: auto;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .brand-logo {
        height: 32px;
    }

    .btn-nav {
        padding: 0.5rem 1rem;
        font-size: 0.65rem;
    }

    .hero-title {
        margin-bottom: 2rem;
    }

    .status-box {
        padding: 1rem;
    }

    .mobile-card {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   STICKY SECTION SEPARATORS
   ========================================================================== */
.sticky-separator {
    position: sticky;
    top: 0;
    z-index: 99;
    width: 100%;
    pointer-events: none;
    display: flex;
    align-items: center;
    padding: 1.25rem 0;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin: 1rem 0;
}

.separator-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 30, 39, 0.3) 50%, rgba(255, 255, 255, 0.02) 100%);
}

.separator-badge {
    position: absolute;
    left: 5vw;
    background: rgba(14, 14, 14, 0.95);
    border: 1px solid rgba(255, 30, 39, 0.35);
    padding: 0.45rem 1rem;
    font-size: 0.65rem;
    color: #fff;
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 3px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(255, 30, 39, 0.05);
    pointer-events: auto;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--red-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--red-accent);
    animation: pulseGlow 2s infinite;
}

.section-showcase {
    padding-top: 1rem;
}

.section-notify {
    padding-top: 1rem;
}

@media (max-width: 1024px) {
    .sticky-separator {
        padding: 0.85rem 0;
        margin: 2.5rem 0;
    }
    .separator-badge {
        font-size: 0.55rem;
        padding: 0.35rem 0.75rem;
    }
}

/* Slide Navigation Buttons */
.slide-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(8, 8, 8, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

@media (hover: hover) {
    .slide-nav-btn:hover {
        color: #fff;
        border-color: rgba(255, 30, 39, 0.4);
        background: rgba(255, 30, 39, 0.1);
        box-shadow: 0 0 15px rgba(255, 30, 39, 0.25);
    }
}

.slide-nav-btn.prev {
    left: 1.5rem;
}

.slide-nav-btn.next {
    right: 1.5rem;
}

.slide-nav-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .slide-nav-btn {
        width: 32px;
        height: 32px;
    }
    .slide-nav-btn.prev {
        left: 0.75rem;
    }
    .slide-nav-btn.next {
        right: 0.75rem;
    }
    .slide-nav-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* Scroll Reveal Animations */
.reveal-element {
    opacity: 0;
    transform: translateY(35px);
    filter: blur(4px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}
