/* ==========================================================================
   Rhodeum Networks LLC - Core Design System
   Aesthetic: Premium Futuristic Cyberpunk / Web3 Dark Theme
   ========================================================================== */

/* Font Import has been moved to HTML head for optimal preconnecting and non-blocking load */

:root {
    /* Color Palette (HSL for advanced transparency & tailoring) */
    --color-bg-base: 224 40% 4%;
    /* #04060b */
    --color-bg-surface: 222 36% 7%;
    /* #0b0e16 */
    --color-bg-card: 220 30% 10%;
    /* #111622 */

    --color-cyan: 182 100% 50%;
    /* #00F2FE - Beacon */
    --color-magenta: 331 100% 50%;
    /* #FF007A - Miner */
    --color-text-primary: 210 40% 98%;
    /* #f8fafc */
    --color-text-muted: 215 20% 65%;
    /* #94a3b8 */
    --color-border: 217 30% 18%;
    /* #1e293b */

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Transitions & Blurs */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glass-blur: blur(16px);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: hsl(var(--color-bg-base));
}

body {
    font-family: var(--font-body);
    color: hsl(var(--color-text-primary));
    background-color: hsl(var(--color-bg-base));
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: hsl(var(--color-bg-base));
}

::-webkit-scrollbar-thumb {
    background: hsl(var(--color-border));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--color-cyan) / 0.5);
}

/* ==========================================================================
   Layout & Background Ambient Glows
   ========================================================================== */
.glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-spot-1 {
    position: absolute;
    top: -10%;
    left: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsl(var(--color-cyan) / 0.08) 0%, transparent 70%);
    filter: blur(80px);
    animation: pulse-glow 8s infinite alternate;
    will-change: transform, opacity;
}

.glow-spot-2 {
    position: absolute;
    top: 40%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, hsl(var(--color-magenta) / 0.06) 0%, transparent 70%);
    filter: blur(100px);
    animation: pulse-glow 12s infinite alternate-reverse;
    will-change: transform, opacity;
}

.glow-spot-3 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsl(var(--color-cyan) / 0.05) 0%, transparent 70%);
    filter: blur(90px);
}

@keyframes pulse-glow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.15) translate(30px, -20px);
        opacity: 1;
    }
}

/* Grid background */
.tech-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image:
        linear-gradient(to right, hsl(var(--color-border) / 0.15) 1px, transparent 1px),
        linear-gradient(to bottom, hsl(var(--color-border) / 0.15) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.7;
    pointer-events: none;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    background-color: hsl(var(--color-bg-base) / 0.75);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid hsl(var(--color-border) / 0.4);
    padding: 0.85rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.5px;
    color: hsl(var(--color-text-primary));
}

.logo-icon {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 0 8px hsl(var(--color-cyan) / 0.4));
    transition: var(--transition-smooth);
}

.logo-link:hover .logo-icon {
    transform: rotate(45deg);
}

.logo-text span {
    background: linear-gradient(135deg, hsl(var(--color-cyan)), hsl(var(--color-magenta)));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: hsl(var(--color-text-muted));
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover {
    color: hsl(var(--color-text-primary));
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(to right, hsl(var(--color-cyan)), hsl(var(--color-magenta)));
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: hsl(var(--color-bg-base));
    background: linear-gradient(90deg, hsl(var(--color-cyan)), #00d2ff);
    box-shadow: 0 4px 20px hsl(var(--color-cyan) / 0.25);
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px hsl(var(--color-cyan) / 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: hsl(var(--color-text-primary));
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: hsl(var(--color-bg-card) / 0.6);
    border: 1px solid hsl(var(--color-border));
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: hsl(var(--color-cyan));
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: var(--glass-blur);
}

.hero-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: hsl(var(--color-cyan));
    box-shadow: 0 0 8px hsl(var(--color-cyan));
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(135deg, hsl(var(--color-cyan)) 10%, hsl(var(--color-magenta)) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 20px hsl(var(--color-cyan) / 0.15));
}

.hero-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--color-text-muted));
    max-width: 720px;
    margin: 0 auto 3rem auto;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    color: hsl(var(--color-bg-base));
    background: linear-gradient(90deg, hsl(var(--color-cyan)), #00d2ff);
    box-shadow: 0 4px 25px hsl(var(--color-cyan) / 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px hsl(var(--color-cyan) / 0.5);
}

.btn-secondary {
    color: hsl(var(--color-text-primary));
    background: hsl(var(--color-bg-card) / 0.4);
    border: 1px solid hsl(var(--color-border));
    backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: hsl(var(--color-bg-card) / 0.8);
    border-color: hsl(var(--color-text-muted) / 0.4);
}

/* ==========================================================================
   Product Section
   ========================================================================== */
.section {
    padding: 8rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: hsl(var(--color-magenta));
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

/* Card Design */
.product-card {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(135deg, hsl(var(--color-bg-card) / 0.5) 0%, hsl(var(--color-bg-surface) / 0.5) 100%);
    border: 1px solid hsl(var(--color-border) / 0.6);
    padding: 3rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: var(--transition-smooth);
}

/* Hover effects */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), hsl(var(--card-glow-color) / 0.08), transparent 40%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: hsl(var(--card-glow-color) / 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 40px hsl(var(--card-glow-color) / 0.05);
}

/* Card variables */
.product-card.beacon-card {
    --card-glow-color: var(--color-cyan);
}

.product-card.miner-card {
    --card-glow-color: var(--color-magenta);
}

/* Card Image Containers */
.card-visual {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 16px;
    background-color: rgba(0, 0, 0, 0.3);
    margin-bottom: 2.5rem;
    overflow: hidden;
    border: 1px solid hsl(var(--color-border) / 0.3);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .card-img {
    transform: scale(1.04);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.8rem;
    border-radius: 9999px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: var(--glass-blur);
    z-index: 2;
}

.beacon-card .card-badge {
    background-color: hsl(var(--color-cyan) / 0.15);
    border: 1px solid hsl(var(--color-cyan) / 0.3);
    color: hsl(var(--color-cyan));
}

.miner-card .card-badge {
    background-color: hsl(var(--color-magenta) / 0.15);
    border: 1px solid hsl(var(--color-magenta) / 0.3);
    color: hsl(var(--color-magenta));
}

/* Card Details */
.card-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: hsl(var(--color-text-primary));
}

.card-desc {
    color: hsl(var(--color-text-muted));
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.card-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    color: hsl(var(--color-text-primary) / 0.9);
}

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

.beacon-card .card-features svg {
    color: hsl(var(--color-cyan));
}

.miner-card .card-features svg {
    color: hsl(var(--color-magenta));
}

/* Teaser / Mysterious Form inside Miner Card */
.teaser-form-container {
    margin-top: auto;
}

.teaser-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group-row {
    display: flex;
    gap: 0.5rem;
}

.form-input {
    flex-grow: 1;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid hsl(var(--color-border));
    color: hsl(var(--color-text-primary));
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: hsl(var(--color-magenta) / 0.5);
    box-shadow: 0 0 12px hsl(var(--color-magenta) / 0.15);
}

.btn-form {
    padding: 0.75rem 1.2rem;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.miner-card .btn-form {
    background: linear-gradient(90deg, hsl(var(--color-magenta)), #ff00ab);
    color: white;
    box-shadow: 0 4px 15px hsl(var(--color-magenta) / 0.25);
}

.miner-card .btn-form:hover {
    box-shadow: 0 6px 20px hsl(var(--color-magenta) / 0.4);
    transform: translateY(-1px);
}

.form-response {
    font-size: 0.85rem;
    font-family: var(--font-mono);
    min-height: 1.2rem;
}

.form-response.success {
    color: hsl(var(--color-cyan));
}

.form-response.error {
    color: hsl(var(--color-magenta));
}

/* ==========================================================================
   Company / Vision Section
   ========================================================================== */
.about-section {
    position: relative;
    padding: 8rem 2rem;
    background-color: hsl(var(--color-bg-surface) / 0.3);
    border-top: 1px solid hsl(var(--color-border) / 0.4);
    border-bottom: 1px solid hsl(var(--color-border) / 0.4);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.about-content p {
    color: hsl(var(--color-text-muted));
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.stat-card {
    padding: 2rem;
    border-radius: 16px;
    background: hsl(var(--color-bg-card) / 0.4);
    border: 1px solid hsl(var(--color-border) / 0.5);
    backdrop-filter: var(--glass-blur);
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, hsl(var(--color-cyan)), hsl(var(--color-magenta)));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: hsl(var(--color-text-primary));
    font-weight: 500;
}

.stat-desc {
    font-size: 0.8rem;
    color: hsl(var(--color-text-muted));
    margin-top: 0.25rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    padding: 5rem 2rem 3rem 2rem;
    background-color: hsl(var(--color-bg-base));
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid hsl(var(--color-border) / 0.4);
    padding-top: 3rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    color: hsl(var(--color-text-primary));
}

.footer-logo .logo-icon {
    width: 24px;
    height: 24px;
}

.footer-copy {
    font-size: 0.85rem;
    color: hsl(var(--color-text-muted));
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-link a {
    text-decoration: none;
    color: hsl(var(--color-text-muted));
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-link a:hover {
    color: hsl(var(--color-cyan));
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.25rem;
    }

    .product-grid {
        gap: 2rem;
    }

    .product-card {
        padding: 2.25rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Disable expensive blur animation loops on mobile viewports */
    .glow-spot-1,
    .glow-spot-2 {
        animation: none;
    }

    header {
        padding: 1rem 0;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: hsl(var(--color-bg-base) / 0.98);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        padding: 2rem 1.5rem;
        border-bottom: 1px solid hsl(var(--color-border) / 0.5);
        gap: 1.5rem;
        z-index: 99;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background-color: hsl(var(--color-text-primary));
        margin: 5px 0;
        transition: var(--transition-smooth);
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding-top: 7.5rem;
        padding-bottom: 3.5rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.25rem;
        letter-spacing: -0.75px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
    }

    .section {
        padding: 4.5rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

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

    .product-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-card {
        padding: 2.25rem 1.5rem;
        border-radius: 20px;
    }

    .card-visual {
        height: 200px;
        margin-bottom: 1.75rem;
    }

    .card-title {
        font-size: 1.6rem;
    }

    .card-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .card-features {
        margin-bottom: 2rem;
    }

    .card-features li {
        font-size: 0.9rem;
    }

    /* Genesis Section Mobile Styles */
    .genesis-section {
        padding: 4.5rem 1.5rem;
    }

    .genesis-title {
        font-size: 1.85rem;
        margin-bottom: 2.5rem;
    }

    .genesis-content-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .genesis-text {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .genesis-quote {
        font-size: 1.15rem;
        padding: 1.5rem;
        border-radius: 16px;
        margin-bottom: 1.5rem;
    }

    .genesis-text-highlight {
        font-size: 0.95rem;
    }

    /* About Section Mobile Styles */
    .about-section {
        padding: 4.5rem 1.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-content h3 {
        font-size: 1.85rem;
        margin-bottom: 1.25rem;
    }

    .about-content p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

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

    .stat-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-desc {
        font-size: 0.75rem;
    }

    /* Footer Mobile Styles */
    footer {
        padding: 3.5rem 1.5rem 2rem 1.5rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 1.75rem;
        text-align: center;
        padding-top: 2.5rem;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .footer-link a {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Teaser Card Styling (Miner Shrouding & Lock overlay)
   ========================================================================== */
.teaser-blur {
    filter: blur(20px) brightness(0.4);
    transition: var(--transition-smooth);
    pointer-events: none;
    user-select: none;
}

.product-card.miner-card:hover .teaser-blur {
    filter: blur(14px) brightness(0.55);
}

.teaser-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
    background-color: rgba(4, 6, 11, 0.35);
    transition: var(--transition-smooth);
}

.product-card.miner-card:hover .teaser-overlay {
    background-color: rgba(4, 6, 11, 0.2);
}

.lock-icon {
    width: 48px;
    height: 48px;
    color: hsl(var(--color-magenta));
    filter: drop-shadow(0 0 15px hsl(var(--color-magenta) / 0.6));
    animation: teaser-float 3s ease-in-out infinite;
    transition: var(--transition-smooth);
}

.product-card.miner-card:hover .lock-icon {
    transform: scale(1.08);
    color: #ff00b3;
    filter: drop-shadow(0 0 20px rgba(255, 0, 179, 0.8));
}

@keyframes teaser-float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ==========================================================================
   Genesis Section Styling (Full-Width Immersive Row)
   ========================================================================== */
.genesis-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, transparent, hsl(var(--color-bg-surface) / 0.3) 50%, transparent);
    border-top: 1px solid hsl(var(--color-border) / 0.4);
    border-bottom: 1px solid hsl(var(--color-border) / 0.4);
    position: relative;
}

.genesis-container {
    max-width: 1280px;
    margin: 0 auto;
}

.genesis-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 3.5rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, hsl(var(--color-text-muted)));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.genesis-content-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.genesis-text {
    color: hsl(var(--color-text-muted));
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.genesis-text:last-child {
    margin-bottom: 0;
}

.genesis-quote {
    font-size: 1.35rem;
    line-height: 1.5;
    font-weight: 500;
    color: hsl(var(--color-cyan));
    padding: 2.25rem;
    border-radius: 20px;
    background: hsl(var(--color-bg-card) / 0.35);
    border-left: 4px solid hsl(var(--color-cyan));
    margin-bottom: 2rem;
    font-style: italic;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.genesis-text-highlight {
    color: hsl(var(--color-text-primary) / 0.9);
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .genesis-content-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .genesis-title {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   Rhodeum Beacon Dynamic Animations
   ========================================================================== */
.beacon-card .card-visual {
    animation: beacon-float 6s ease-in-out infinite;
    will-change: transform;
}

/* Pulsing cyan glow overlay centered on the hardware node's central orb */
.beacon-card .card-visual::after {
    content: '';
    position: absolute;
    top: 52%;
    left: 58%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, hsl(var(--color-cyan) / 0.45) 0%, hsl(var(--color-cyan) / 0.1) 30%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: screen;
    animation: beacon-glow 4s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes beacon-float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes beacon-glow {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.85);
    }

    50% {
        opacity: 0.85;
        transform: translate(-50%, -50%) scale(1.15);
    }

    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.85);
    }
}