:root {
    --bg-primary: #000000;
    /* Pure Apple OLED Black */
    --bg-secondary: #0A0A0C;
    /* Premium dark grey */
    --bg-card: rgba(12, 12, 14, 0.6);
    /* Semi-transparent minimal glass */
    --bg-card-hover: rgba(20, 20, 22, 0.8);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    --accent-primary: #007aff;
    /* Apple Classic Blue */
    --accent-glow: rgba(0, 122, 255, 0.15);
    --accent-gradient: linear-gradient(135deg, #2f80ed 0%, #007aff 60%, #1a365d 100%);
    /* Restored original blue gradient */

    --text-primary: #f5f5f7;
    /* Apple White */
    --text-secondary: #86868b;
    /* Apple Subtitle Grey */
    --text-muted: #48484a;

    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
    --font-mono: "SF Mono", "JetBrains Mono", Menlo, Monaco, monospace;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Smooth Scroll */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

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

/* Soft Premium Ambient Glows */
.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
    mix-blend-mode: screen;
}

.glow-1 {
    background: radial-gradient(circle, #007aff 0%, transparent 70%);
    top: -150px;
    right: -100px;
}

.glow-2 {
    background: radial-gradient(circle, #1c3d5a 0%, transparent 70%);
    top: 600px;
    left: -200px;
}

/* Header & Blur Navigation */
header {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1100px;
    z-index: 100;
    backdrop-filter: blur(20px) saturate(190%);
    -webkit-backdrop-filter: blur(20px) saturate(190%);
    background-color: rgba(10, 10, 12, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

header:hover {
    background-color: rgba(10, 10, 12, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 45px rgba(0, 122, 255, 0.08);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: inherit;
}

.nav-logo {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 122, 245, 0.2);
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #ffffff;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    position: relative;
    padding: 0.25rem 0;
    transition: var(--transition);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--accent-gradient);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

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

nav a:hover::after {
    width: 100%;
}

/* Button UI System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    border-radius: 8px;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.btn-primary:hover {
    background-color: #1a8bff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 122, 255, 0.25);
}

.btn-secondary {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: none;
}

.btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.btn-glass {
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

.btn-dl-count {
    font-size: 0.75rem;
    opacity: 0.65;
    font-weight: 500;
    margin-left: 0.25rem;
}

/* Layout Grid Container */
main {
    width: 100%;
    position: relative;
    z-index: 2;
    background-color: var(--bg-primary);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.95);
    padding: 0;
    max-width: none;
    margin: 0;
}

.hero-section,
.features-section,
.bypass-guide-section {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero-section {
    min-height: calc(90vh - 60px);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 4rem;
    padding: 10rem 2rem 6.5rem 2rem;
}

/* Staggered Load Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-badge,
.hero-section h1,
.hero-description,
.hero-actions,
.hero-actions-bottom,
.hero-stats {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    animation-delay: 0.1s;
}

.hero-subtitle-mimp {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.15s;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #30d158;
    /* Apple green */
    border-radius: 50%;
    box-shadow: 0 0 8px #30d158;
    animation: pulseDot 2.5s infinite;
}

@keyframes pulseDot {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

.hero-section h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 1.25rem;
    animation-delay: 0.2s;
    background: linear-gradient(180deg, #ffffff 30%, #a5a5a7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-right-title {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.8px;
    text-align: center;
    margin-bottom: 1.75rem;
    background: linear-gradient(180deg, #ffffff 40%, #c4c4c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.3s;
}

.accent-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.12rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.65;
    animation-delay: 0.3s;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
    animation-delay: 0.4s;
}

.hero-actions-bottom {
    margin-top: -2.5rem;
    margin-bottom: 3.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    gap: 0.4rem;
    justify-content: flex-start;
    align-items: center;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.45s;
}

.hero-actions-bottom a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.hero-actions-bottom a:hover {
    color: #1a8bff;
    text-decoration: underline;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.75rem;
    animation-delay: 0.5s;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: var(--text-primary);
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.15rem;
}

/* Beautiful Interactive 3D Showcase (Hero Right) */
.hero-right {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 780px;
    z-index: 2;
}

.hero-screenshot-wrapper {
    position: relative;
    width: 100%;
    max-width: 780px; /* Increased from 680px for a massive visual screen */
    border-radius: 14px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.9);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
    transition: var(--transition);
    z-index: 2;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.35s;
    background: #000;
}

.hero-screenshot-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(0, 122, 255, 0.25) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
    transition: var(--transition);
}

.hero-screenshot-wrapper:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) scale(1.04);
    box-shadow: 0 45px 110px rgba(0, 0, 0, 0.95);
}

.hero-screenshot-wrapper:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(0, 122, 255, 0.5) 50%, rgba(255, 255, 255, 0.15) 100%);
}

.hero-screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

/* Pulsating Neon Glow Behind the Screen */
.hero-screenshot-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 122, 255, 0.22) 0%, rgba(191, 90, 242, 0.12) 30%, rgba(94, 92, 230, 0.04) 55%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    animation: slowGlowPulse 8s infinite alternate ease-in-out;
}

@keyframes slowGlowPulse {
    0% {
        opacity: 0.65;
        transform: translate(-50%, -50%) scale(0.92);
    }
    100% {
        opacity: 0.95;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

/* Floating Glass Badges */
.floating-badge {
    position: absolute;
    padding: 0.65rem 1.15rem;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    z-index: 5;
    pointer-events: none;
    transition: var(--transition);
}

.floating-badge .badge-icon {
    width: 14px;
    height: 14px;
    color: var(--accent-primary);
}

.badge-top-left {
    top: 8%;
    left: -4%;
    transform: perspective(1200px) translateZ(30px) rotateY(-10deg);
    animation: floatTopLeft 6s infinite alternate ease-in-out;
}

.badge-bottom-right {
    bottom: 10%;
    right: -4%;
    transform: perspective(1200px) translateZ(40px) rotateY(-10deg);
    animation: floatBottomRight 6s infinite alternate ease-in-out;
}

@keyframes floatTopLeft {
    0% {
        transform: perspective(1200px) translateZ(30px) rotateY(-10deg) translateY(0);
    }
    100% {
        transform: perspective(1200px) translateZ(30px) rotateY(-10deg) translateY(-12px);
    }
}

@keyframes floatBottomRight {
    0% {
        transform: perspective(1200px) translateZ(40px) rotateY(-10deg) translateY(0);
    }
    100% {
        transform: perspective(1200px) translateZ(40px) rotateY(-10deg) translateY(12px);
    }
}

/* Features System */
.features-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
}

.section-header {
    max-width: 600px;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2.25rem 2rem;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.feature-card:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.box-blue {
    background: rgba(0, 122, 255, 0.15);
    color: #0a84ff;
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.box-gold {
    background: rgba(255, 159, 10, 0.15);
    color: #ff9f0a;
    border: 1px solid rgba(255, 159, 10, 0.2);
}

.box-purple {
    background: rgba(191, 90, 242, 0.15);
    color: #bf5af2;
    border: 1px solid rgba(191, 90, 242, 0.2);
}

.box-green {
    background: rgba(48, 209, 88, 0.15);
    color: #30d158;
    border: 1px solid rgba(48, 209, 88, 0.2);
}

.box-red {
    background: rgba(255, 69, 58, 0.15);
    color: #ff453a;
    border: 1px solid rgba(255, 69, 58, 0.2);
}

.box-teal {
    background: rgba(100, 210, 255, 0.15);
    color: #64d2ff;
    border: 1px solid rgba(100, 210, 255, 0.2);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

/* macOS Gatekeeper Bypass (Instruction) */
.bypass-guide-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
}

.bypass-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: stretch;
}

.bypass-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
}

.highlight-border {
    border-color: rgba(0, 122, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 122, 255, 0.03);
}

.bypass-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.bypass-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--accent-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.bypass-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.bypass-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.75rem;
}

/* macOS Terminal Window Emulation */
.terminal-box {
    background-color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.terminal-header {
    background-color: #0f1012;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    display: inline-block;
}

.t-red {
    background-color: #ff5f56;
}

.t-yellow {
    background-color: #ffbd2e;
}

.t-green {
    background-color: #27c93f;
}

.terminal-title {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-secondary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 500;
}

.terminal-body {
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.terminal-body code {
    color: #30d158;
    /* Green code */
    word-break: break-all;
}

.terminal-copy-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: var(--text-primary);
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.terminal-copy-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.bypass-tip {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.bypass-tip strong {
    color: var(--text-primary);
}

.bypass-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.bypass-list li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.list-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

kbd {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.15rem 0.4rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
}

.format-pill {
    display: inline-block;
    padding: 0.12rem 0.4rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

/* Footer Section with Parallax Effect */
footer {
    border-top: none;
    background-color: var(--bg-secondary);
    padding: 4rem 0;
}

@media (min-width: 769px) {
    main {
        margin-bottom: 240px; /* Space released for sliding parallax footer */
    }
    
    footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 240px; /* Fixed height for seamless scroll parallax */
        z-index: 1; /* Positioned strictly below main overlay */
        box-sizing: border-box;
        display: flex;
        align-items: center;
        padding: 0;
    }
}

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

.footer-left p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 320px;
    line-height: 1.5;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.bmc-link {
    display: inline-block;
    transition: var(--transition);
}

.bmc-link:hover {
    transform: translateY(-2px);
}

.credits {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive Adaptive Queries */
@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 6rem 2rem 3rem 2rem;
    }

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

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

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

    .hero-screenshot-wrapper {
        margin: 0 auto;
        transform: none !important;
    }

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

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

@media (max-width: 768px) {
    main {
        margin-bottom: 0 !important;
    }

    header {
        width: calc(100% - 2rem);
        top: 1rem;
    }

    .hero-section {
        padding-top: 8rem;
    }

    .hero-section h1 {
        font-size: 2.6rem;
    }

    nav {
        display: none;
    }

    .download-options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-right {
        align-items: center;
    }
}