:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-secondary: #d0d0d0; /* Increased brightness from #a0a0a0 */
    --accent-metallic: #f0f0f0; /* Increased brightness from #e0e0e0 */
    --accent-platinum: #c0c0c0; /* Increased brightness from #b0b0b0 */
    --accent-graphite: #6a6a6a; /* Increased brightness from #4a4a4a */
    
    --glass-bg: rgba(255, 255, 255, 0.08); /* Increased opacity from 0.03 */
    --glass-border: rgba(255, 255, 255, 0.15); /* Increased opacity from 0.08 */
    --glass-highlight: rgba(255, 255, 255, 0.25); /* Increased opacity from 0.15 */
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 120px;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    background: linear-gradient(to bottom right, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-sm);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--accent-metallic);
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Glass Material */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Hover Effect for Cards - Only for non-image cards */
.glass-card:not(.image-card):hover {
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255,255,255,0.1);
}

/* Layout */
.roger-signature {
    grid-column: 1;
    display: block;
    width: 150px;
    height: auto;
    line-height: 0;
    transition: opacity 0.3s ease;
    justify-self: start;
}

.roger-signature img {
    width: 100%;
    height: auto;
    display: block;
    filter: invert(1);
}

.roger-signature:hover {
    opacity: 0.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: background 0.3s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: var(--spacing-md);
}

.logo {
    grid-column: 1;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    justify-self: start;
}

.nav-links {
    grid-column: 2;
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    justify-self: center;
    transform: translateX(60px);
}

.mobile-menu-btn {
    grid-column: 3;
    justify-self: end;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.btn-cta-nav {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    color: var(--text-primary) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: auto;
    bottom: calc(env(safe-area-inset-bottom) + 30px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.scroll-indicator.is-hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
}

.scroll-indicator-label {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1;
}

.scroll-indicator-track {
    width: 1px;
    height: 58px;
    background: rgba(255, 255, 255, 0.22);
    position: relative;
    overflow: hidden;
}

.scroll-indicator-track::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -40%;
    width: 3px;
    height: 24px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,1) 35%, rgba(255,255,255,1) 70%, rgba(255,255,255,0));
    animation: scroll-drop 1.55s linear infinite;
}

@keyframes scroll-drop {
    0% {
        top: -40%;
        opacity: 0;
    }
    12% {
        opacity: 1;
    }
    86% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-text {
    z-index: 1;
}

.hero-actions {
    margin-top: var(--spacing-md);
    display: flex;
    gap: var(--spacing-sm);
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-color);
    padding: 10px 24px; /* Slightly reduced padding */
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.00rem; /* Slightly reduced font size */
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 10px 24px; /* Slightly reduced padding */
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.00rem; /* Slightly reduced font size */
    border: 1px solid var(--glass-border);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    opacity: 1;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Optional: maintain some of the original tilt/float if desired, 
       or keep it clean. Let's start with a subtle float. */
    animation: float 6s ease-in-out infinite;
}

.hero-logo {
    max-width: 100%;
    max-height: 500px; /* Adjust based on logo aspect ratio */
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); /* Nice shadow for depth */
}

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

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 16px;
}

.mockup-day {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    height: 60px;
    border: 1px solid var(--glass-border);
    position: relative;
}

.mockup-day.active {
    background: rgba(255,255,255,0.1);
    border-right: 2px solid var(--accent-metallic);
}

/* ------------------------------------------------ */
/* NEW SCROLLYTELLING LAYOUT */
/* ------------------------------------------------ */

#scrollytelling-root {
    position: relative;
    padding-bottom: 10vh;
}

.scrolly-container {
    display: flex;
    justify-content: space-between; /* Push columns apart */
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    gap: 10%; /* Explicit large gap between columns */
}

/* The Sticky Visuals Column (HTML Order: 1st -> Left Side) */
.scrolly-visuals {
    width: 45%;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed margin-left: auto and padding-left */
}

.visual-stack {
    width: 100%;
    height: 500px; /* Fixed height for consistency */
    position: relative;
}

/* The Scrolling Text Column (HTML Order: 2nd -> Right Side) */
.scrolly-text {
    width: 45%;
    position: relative;
    z-index: 10;
    pointer-events: none; 
}

.step {
    min-height: 100vh; /* Each step takes full height scroll */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0; /* Reset padding */
     /* Increased base opacity for better readability */
    transition: opacity 0.5s ease;
    pointer-events: auto;
}


.scrolly-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    visibility: hidden; /* Hide completely to prevent overlapping click targets */
    z-index: 1;
}

.scrolly-card.active-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    z-index: 2;
}

/* Specific inner card styling */
.card-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

/* Calendar Grid Styling */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    width: 100%;
    height: 100%;
    align-content: start;
}

.calendar-header {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-primary);
    padding-bottom: 8px;
    font-weight: 500;
}

.calendar-day-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    aspect-ratio: 1.2; /* Slightly rectangular */
    border: 1px solid var(--glass-border);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4px;
    transition: all 0.2s ease;
}

.calendar-day-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.day-date {
    position: absolute;
    top: 4px;
    left: 6px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.day-main-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.day-sub-value {
    position: absolute;
    bottom: 4px;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.day-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: var(--glass-highlight);
    border-radius: 50%;
    border: 1px solid var(--bg-color);
}

/* Specific day states */
.day-has-data {
    border-color: rgba(255, 255, 255, 0.2);
}

.day-border-green {
    border-bottom: 2px solid #4ade80; /* Tailwind green-400 equivalent */
}

.day-border-red {
    border-bottom: 2px solid #f87171; /* Tailwind red-400 equivalent */
}

/* Animations */

/* Image Card Styling */
.image-card {
    padding: 0;
    overflow: visible; /* Allow image to be fully seen */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Remove glass effect properties */
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.image-card::before {
    display: none; /* Remove gradient overlay */
}

.card-image-fit {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Rounded corners on the image itself if needed, or remove if image has them */
    border-radius: var(--radius-lg); 
    display: block;
}
.counter {
    font-variant-numeric: tabular-nums;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 16px;
}

.progress-fill {
    height: 100%;
    background: var(--accent-metallic);
    width: 0%;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.chat-bubble {
    background: rgba(255,255,255,0.08);
    padding: 12px 20px;
    border-radius: 16px;
    border-bottom-left-radius: 2px;
    margin-bottom: 12px;
    max-width: 80%;
    opacity: 0;
    transform: translateY(10px);
}

.chat-bubble.ai {
    background: rgba(255,255,255,0.15);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 2px;
    margin-left: auto;
}

.scrolly-card.active-card .chat-bubble {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.scrolly-card.active-card .chat-bubble:nth-child(1) { transition-delay: 0.1s; }
.scrolly-card.active-card .chat-bubble:nth-child(2) { transition-delay: 0.8s; }
.scrolly-card.active-card .chat-bubble:nth-child(3) { transition-delay: 1.5s; }
.scrolly-card.active-card .chat-bubble:nth-child(4) { transition-delay: 2.2s; }


/* Footer */
.pre-footer-banner {
    margin-top: var(--spacing-xl);
    position: relative;
    min-height: 180vh;
    padding: 0;
    background: #000000;
    isolation: isolate;
}

.pre-footer-banner .container {
    min-height: 180vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
}

.pre-footer-card {
    position: sticky;
    top: 50vh;
    transform: translateY(-50%);
    overflow: hidden;
    max-width: 920px;
    width: min(920px, 100%);
    min-height: clamp(300px, 50vh, 520px);
    margin: 0 auto;
    padding: clamp(36px, 6vw, 62px);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 38%),
        radial-gradient(circle at 82% 76%, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(16, 16, 16, 0.72) 100%);
    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.pre-footer-card::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.pre-footer-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 700;
    font-size: clamp(0.7rem, 1.4vw, 0.95rem);
    color: var(--text-secondary);
}

.pre-footer-brand {
    margin: clamp(10px, 1.8vw, 14px) 0 clamp(16px, 2vw, 24px);
    font-size: clamp(3.2rem, 12vw, 7.2rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: transparent;
    display: inline-block;
    padding-bottom: 0.08em;
    background: linear-gradient(180deg, #ffffff 0%, #b8b8b8 92%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 22px 36px rgba(0, 0, 0, 0.45);
}

.pre-footer-store {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.pre-footer-store::after {
    content: '→';
    font-size: 1rem;
}

.pre-footer-store:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    opacity: 1;
}

.pre-footer-banner + footer {
    margin-top: clamp(72px, 12vh, 140px);
}

footer {
    border-top: 1px solid var(--glass-border);
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-xl);
}

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

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Privacy & Support Pages */
.page-header {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    text-align: center;
}

.content-section {
    margin-bottom: var(--spacing-lg);
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: var(--spacing-sm) 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-answer p {
    padding-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

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

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 900px) {
    :root {
        --mobile-visual-height: 52vh;
        --mobile-visual-height: clamp(320px, 52svh, 520px);
    }

    header {
        padding: calc(env(safe-area-inset-top) + 4px) 0 6px;
    }

    .roger-signature {
        width: 120px;
    }

    .scroll-indicator {
        top: auto;
        bottom: calc(env(safe-area-inset-bottom) + 22px);
        gap: 6px;
    }

    .scroll-indicator-label {
        font-size: 0.54rem;
        letter-spacing: 0.16em;
    }

    .scroll-indicator-track {
        height: 50px;
    }

    .hero {
        min-height: 100vh;
        align-items: flex-start;
        padding-top: calc(76px + env(safe-area-inset-top));
    }

    .scrolly-container {
        display: block; 
        position: relative;
    }
    
    .scrolly-visuals {
        position: -webkit-sticky;
        position: sticky;
        top: calc(60px + env(safe-area-inset-top)); /* Below header + iOS safe area */
        left: 0;
        width: 100%;
        height: var(--mobile-visual-height); /* More room so device image is never cropped */
        margin: 0;
        padding: 20px var(--spacing-sm) calc(18px + env(safe-area-inset-bottom));
        box-sizing: border-box;
        z-index: 20; /* On top of text */
        background: radial-gradient(circle at center, rgba(30,30,30,1) 0%, rgba(0,0,0,1) 100%);
        border-bottom: 1px solid var(--glass-border);
    }
    
    .scrolly-text {
        width: 100%;
        position: relative;
        z-index: 5; /* Behind visuals */
        padding: 0 var(--spacing-sm);
        margin-top: 0; /* Reset margin */
        pointer-events: none; 
    }

    .visual-stack {
        height: 100%;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }
    
    .scrolly-card {
        padding: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .scrolly-card.image-card {
        padding: 18px 8px max(26px, env(safe-area-inset-bottom));
    }

    .image-card .card-image-fit {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
        object-position: center 62%;
    }

    .step {
        min-height: 80vh; 
        display: flex;
        flex-direction: column;
        justify-content: center; 
        padding-top: calc(var(--mobile-visual-height) + 3rem);
        padding-bottom: 10vh;
        background: transparent;
        pointer-events: auto;
    }
    
    /* Keep text readable without boxed backgrounds */
    .step h2, .step h3, .step p {
        background: transparent;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        text-shadow: 0 8px 20px rgba(0, 0, 0, 0.72);
        position: relative;
        z-index: 20;
    }

    .step h3 {
        color: var(--accent-metallic);
        margin-bottom: 8px;
        font-size: 1rem;
        width: auto;
    }

    .step h2 {
        margin-bottom: 12px;
        font-size: 1.8rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-sm);
        padding-top: 8px;
    }

    .hero-text {
        order: 2;
    }

    .hero-text h1 {
        margin-top: -10px;
        margin-bottom: 20px;
    }

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

    .hero-logo-container {
        order: 1;
        margin-top: 0;
        margin-bottom: 12px;
    }

    .hero-logo {
        width: min(62vw, 230px);
        max-height: 260px;
    }

    /* Mobile Navigation */
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: var(--text-primary);
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-links {
        transform: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid var(--glass-border);
        padding: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .pre-footer-card {
        top: 50vh;
        min-height: 58vh;
        border-radius: 24px;
        padding: 30px 20px 34px;
    }

    .pre-footer-card::before {
        inset: 8px;
        border-radius: 18px;
    }

    .pre-footer-kicker {
        letter-spacing: 0.16em;
    }

    .pre-footer-banner {
        min-height: 150vh;
    }

    .pre-footer-banner .container {
        min-height: 150vh;
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (min-width: 901px) {
    .mobile-menu-btn {
        display: none;
    }
}
