/* =========================================
   Variables & Reset
   ========================================= */
:root {
    --bg-deep: #050505;
    --bg-surface: #0f0f0f;
    --bg-card: rgba(255, 255, 255, 0.03);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    
    --accent-orange: #d4742c;
    --accent-orange-bright: #ff8c42;
    --accent-glow: rgba(212, 116, 44, 0.5);
    
    --font-sans: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-display: 'Avenir Next Condensed', 'Oswald', sans-serif;
    
    --container-width: 1200px;
    --header-height: 80px;
    
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   Background FX
   ========================================= */
.background-effects {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.sphere-1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--accent-orange) 0%, transparent 70%);
    top: -20%;
    right: -20%;
    animation: pulse 15s infinite alternate;
}

.sphere-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #2c3e50 0%, transparent 70%);
    bottom: -10%;
    left: -10%;
    animation: pulse 20s infinite alternate-reverse;
}

.cube-grid {
    position: absolute;
    inset: -50%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: perspective(1000px) rotateX(60deg) rotateZ(20deg) scale(2);
    opacity: 0.15;
    mask-image: radial-gradient(circle at center, black 0%, transparent 60%);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 60%);
    animation: gridFloat 120s linear infinite;
}

@keyframes gridFloat {
    0% { background-position: 0 0; }
    100% { background-position: 80px 80px; }
}

/* =========================================
   Layout & Typography
   ========================================= */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================
   Navigation
   ========================================= */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 100;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.store-icons-mini {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.store-icons-mini a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.store-icons-mini a:hover {
    opacity: 1;
    transform: scale(1.1);
}

.store-icons-mini img {
    height: 18px; /* Small and subtle */
    width: auto;
    filter: brightness(0) invert(1); /* Pure white logos */
}

.nav-cta {
    font-size: 0.9rem;
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(212, 116, 44, 0.3);
    border-radius: 4px;
    transition: 0.3s;
}

.nav-cta:hover {
    background: rgba(212, 116, 44, 0.1);
    border-color: var(--accent-orange);
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

/* Stat Block */
.stat-block {
    display: flex;
    align-items: center; /* Vertically center icon and text */
    margin-bottom: 2rem;
    line-height: 1;
}

.stat-number {
    font-size: clamp(6rem, 12vw, 10rem);
    font-weight: 800;
    color: var(--accent-orange);
    font-family: var(--font-display);
    text-shadow: 0 0 40px var(--accent-glow);
    line-height: 0.8;
}

.stat-percent {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--accent-orange);
    margin-top: 0.5rem;
    align-self: flex-start; /* Percent stays top aligned if needed, or center */
}

.stat-label {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    text-transform: uppercase;
    font-weight: 600;
    margin-left: 1.5rem;
    /* padding-top: 1rem; Removed to allow better centering relative to number */
    line-height: 1.4;
    color: var(--text-secondary);
    border-left: 2px solid rgba(255,255,255,0.2);
    padding-left: 1rem;
    text-align: left; /* Explicitly left aligned */
}

/* Hero Text */
.hero-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-sub strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem; /* Adjusted padding */
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-orange);
    color: #fff;
    box-shadow: 0 10px 30px rgba(212, 116, 44, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(212, 116, 44, 0.4);
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.btn-primary:hover .btn-shine {
    left: 200%;
    transition: 0.5s;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    background: transparent;
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-text {
    color: var(--text-primary);
    padding-left: 0;
}
.btn-text:hover {
    color: var(--accent-orange);
}

.hero-availability {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.avail-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.avail-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.avail-logos a {
    opacity: 0.5;
    transition: 0.3s ease;
    filter: grayscale(100%);
}

.avail-logos a:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px);
}

.avail-logos img {
    height: 20px;
    width: auto;
    /* Ensure logos are visible on dark background. 
       If logos are dark, invert them. If they are colored/light, keep as is.
       Assuming logos might be mixed, we force them to white-ish monotone first then color on hover if desired, 
       or just keep them white. Let's try brightness/invert based on the likely black logos provided. */
    filter: brightness(0) invert(1);
}

/* 3D Book Presentation */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 2000px;
}

.book-presentation {
    position: relative;
    width: 100%;
    max-width: 450px;
    transform-style: preserve-3d;
}

@media (min-width: 993px) {
    .hero-grid {
        align-items: flex-start; /* Align book with top of text */
    }
    .book-presentation {
        margin-top: 0; /* Reset margin as flex-start handles the positioning */
    }
}

.book-cover-3d {
    width: 100%;
    height: auto;
    transform: rotateY(-25deg) rotateX(10deg);
    box-shadow: -20px 30px 60px rgba(0,0,0,0.6), inset 2px 0 5px rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: transform 0.1s ease-out; /* Fast response for JS parallax */
    will-change: transform;
}

.book-glow-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 116, 44, 0.2), transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

.floating-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    transform: translateZ(50px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateZ(50px); }
    50% { transform: translateY(-10px) translateZ(50px); }
}

/* =========================================
   Content Sections
   ========================================= */
.section {
    padding: 6rem 0;
}

.max-w-800 { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    background: linear-gradient(180deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eyebrow {
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}

.highlight {
    color: #fff;
    font-weight: 500;
    border-bottom: 2px solid var(--accent-orange);
}

/* Solution / Genes Grid */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.sticky-content {
    position: sticky;
    top: 120px;
}

.genes-grid {
    display: grid;
    gap: 1.5rem;
}

.gene-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.gene-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateX(10px);
    border-color: rgba(255,255,255,0.1);
}

.gene-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 0rem;
    right: 1rem;
    font-family: var(--font-display);
}

.gene-card h3 {
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.gene-card p {
    color: var(--text-secondary);
}

/* Buy Section */
.buy-section {
    background: linear-gradient(to top, #000, transparent);
}

.shop-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.shop-tile {
    width: 200px;
    height: 120px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    transition: 0.4s var(--ease-out-expo);
    cursor: pointer;
}

.tile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 1rem;
    width: 100%;
    height: 100%;
}

.shop-logo {
    max-width: 120px;
    max-height: 40px;
    object-fit: contain;
    transition: 0.3s;
    /* Invert filter for initial state if logos are dark on white bg */
    filter: grayscale(100%); 
}

.shop-tile:hover .shop-logo {
    filter: grayscale(0%);
    transform: translateY(-5px);
}

.shop-cta {
    margin-top: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}

.shop-tile:hover .shop-cta {
    opacity: 1;
    transform: translateY(0);
}

.shop-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255,255,255,0.1);
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 3rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
}

.footer-col nav {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
    justify-content: flex-end;
}

.footer-col nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: 0.2s;
}

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

.text-right { text-align: right; }

/* Modals */
.modal {
    position: fixed;
    z-index: 2000; /* Higher than anything else */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    
    /* Transition states */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    
    /* Centering */
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 600px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 4px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.open .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: var(--text-secondary);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent-orange);
}

.modal h2 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.modal-body {
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal-body h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-sans); /* Use sans for legal text headings for readability */
}

.modal-divider {
    border: 0;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 2rem 0;
}

.local-support-hint {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.support-icon {
    color: var(--accent-orange);
    font-size: 1rem;
}

/* =========================================
   Analysis / Metrics Section
   ========================================= */
.analysis-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.matrix-metrics {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 3rem;
}

.metric-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.matrix-text {
    font-family: 'Courier New', Courier, monospace; /* Tech/Code font */
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
    letter-spacing: -0.05em;
}

.metric-desc {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 992px) {
    .analysis-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .matrix-metrics {
        border-left: none;
        padding-left: 0;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 3rem;
    }
}

/* =========================================
   Methodology Visuals (New DNA Style)
   ========================================= */
.dna-helix-container {
    position: relative;
    padding: 2rem 0;
}

/* Vertical connector line */
.dna-helix-container::before {
    content: '';
    position: absolute;
    left: 28px; /* Center of icons */
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(212, 116, 44, 0.1), var(--accent-orange), rgba(212, 116, 44, 0.1));
    z-index: 0;
}

.step-node {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    align-items: flex-start;
    /* Ensure opacity is 0 initially for animation */
    opacity: 0; 
    transform: translateX(30px);
    transition: transform 0.3s ease; /* Add transition for hover effect */
}

.step-node:hover {
    transform: translateX(5px); /* Gentle movement on hover */
}

/* Override fade-in-right for step nodes when parent is visible */
.scroll-reveal.visible .step-node,
.step-node.fade-in-right {
    animation: fadeInRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.step-node:last-child {
    margin-bottom: 0;
}

.node-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-node:hover .node-icon {
    border-color: var(--accent-orange);
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--accent-glow);
}

.node-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-grow: 1;
    transition: all 0.3s ease;
}

.step-node:hover .node-content {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.node-content h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.node-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Abstract DNA strands effect */
.dna-strand {
    position: absolute;
    width: 2px;
    top: 0;
    bottom: 0;
    opacity: 0.2;
    z-index: -1;
}

.dna-strand.left {
    left: 10px;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, var(--accent-orange) 10px, var(--accent-orange) 20px);
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.dna-strand.right {
    left: 46px;
    background: repeating-linear-gradient(-45deg, transparent, transparent 10px, var(--accent-orange) 10px, var(--accent-orange) 20px);
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

@media (max-width: 768px) {
    .dna-helix-container::before {
        left: 24px;
    }
    .node-icon {
        width: 48px;
        height: 48px;
    }
}

.mb-lg { margin-bottom: 4rem; }

.mt-md { margin-top: 2rem; }

/* =========================================
   Animations classes
   ========================================= */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) forwards;
}

.fade-in-down {
    opacity: 0;
    animation: fadeInDown 0.8s var(--ease-out-expo) forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 1s var(--ease-out-expo) forwards 0.2s;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.1); opacity: 0.6; }
}

/* Scroll Reveal States */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--ease-out-expo); /* Slightly slower for elegance */
    will-change: opacity, transform;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 992px) {
    .nav-right {
        gap: 1rem;
    }
    
    .store-icons-mini {
        display: none; /* Hide mini icons on tablet to save space */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .stat-block {
        justify-content: center;
    }

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

    .cta-group {
        justify-content: center;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .sticky-content {
        position: static;
        text-align: center;
        margin-bottom: 3rem;
    }

    .shop-logo {
        filter: grayscale(0%);
    }
}

@media (max-width: 600px) {
    .stat-number { font-size: 5rem; }
    .stat-percent { font-size: 2.5rem; }
    .stat-label { 
        font-size: 0.8rem; 
        margin-left: 0.5rem;
        padding-left: 0.5rem;
    }
    
    .footer-grid {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-col nav {
        justify-content: center;
    }
    
    .text-right { text-align: center; }
}