﻿:root {
    --tactical-blue: #0055FFFF;
    --ticket-bg: #F0F0F0;
    --dark-bg: #000000;
    --white: #FFFFFF;
    --black: #000000;
    --grey-100: #F5F5F7;
    --grey-200: #EBEBEB;
    --grey-400: #888888;
    --font-main: 'JetBrains Mono', monospace;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.2;
}

/* Background Elements */
.main-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--grey-100);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: fit-content;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    z-index: 1000;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 0 15px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.5px;
}

.nav-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    transition: all 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background-color: var(--tactical-blue);
    padding: 8px 16px !important;
    border-radius: 100px;
    color: var(--white) !important;
    font-size: 11px !important;
}

/* HERO SECTION */
.hero-cinematic {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 7vw;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: var(--tactical-blue);
    z-index: -1;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-bg-accent::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-text-area {
    flex: 1.2;
    z-index: 2;
}

.hero-huge-title {
    font-size: clamp(60px, 12vw, 160px);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -6px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-huge-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-tagline {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 4px;
    color: var(--black);
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-solid {
    background-color: var(--black);
    color: var(--white);
    padding: 20px 40px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.2s;
}

.btn-solid:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 0 var(--tactical-blue);
}

.btn-outline {
    border: 3px solid var(--black);
    color: var(--black);
    padding: 17px 40px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-outline i {
    font-size: 28px;
}

#btn-app-store:hover {
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0 var(--tactical-blue);
    background-color: var(--black);
    color: var(--white);
}

/* TICKET COMPONENT */
.hero-visual-area {
    flex: 1;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-ticket-container {
    width: 100%;
    max-width: 440px;
    transform-style: preserve-3d;
}

.ticket {
    background-color: var(--ticket-bg);
    width: 100%;
    border-radius: 40px;
    padding: 30px 30px 30px 30px;
    position: relative;
    border: 4px solid var(--black);
    box-shadow: 20px 20px 0 var(--black);
}

.hanger-hole {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 12px;
    background-color: #DDD;
    border-radius: 6px;
    border: 2px solid #BBB;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 100%;
    height: 15px;
    border-radius: 0px;
    filter: brightness(0);
    /* Make black for contrast */
}

.brand-name {
    font-weight: 800;
    font-size: 20px;
}

.status-badge {
    border: 2px solid var(--black);
    padding: 4px 12px;
    font-weight: 800;
    font-size: 11px;
    background-color: var(--white);
}

.ticket-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.ticket-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background-color: var(--white);
    border: 3px solid var(--black);
    box-shadow: 6px 6px 0 var(--black);
    transition: transform 0.2s;
}

.feature-row:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--black);
}

.feature-icon-box {
    width: 36px;
    height: 36px;
    background-color: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-info {
    display: flex;
    flex-direction: column;
}

.feature-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--tactical-blue);
    letter-spacing: 0.5px;
}

.feature-sub {
    font-size: 11px;
    font-weight: 700;
    color: var(--black);
}

.ticket-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.barcode-group {
    display: flex;
    gap: 4px;
    height: 30px;
}

.barcode-line {
    background-color: var(--black);
    height: 100%;
}

.w-1 {
    width: 1px;
}

.w-2 {
    width: 2px;
}

.w-4 {
    width: 4px;
}

.footer-ref {
    font-size: 12px;
    color: var(--grey-400);
    font-weight: 400;
}

/* BENTO GRID */
.bento-section {
    padding: 120px 10vw;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--tactical-blue);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
}

.section-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -2px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 30px;
}

.bento-card {
    background-color: var(--ticket-bg);
    border: 4px solid var(--black);
    padding: 60px 40px 40px 40px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 10px;
    background-color: #DDD;
    border-radius: 5px;
    border: 1px solid #BBB;
}

.bento-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.bento-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 16px 16px 0 var(--black);
}

.card-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 500px;
}

.card-medium {
    grid-column: span 2;
    min-height: 250px;
}

.card-wide {
    grid-column: span 4;
    min-height: 200px;
}

.feature-specs {
    margin-top: 30px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-specs li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 14px;
}

.feature-specs li i {
    color: var(--tactical-blue);
    font-size: 20px;
}

.card-small {
    grid-column: span 1;
    min-height: 250px;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 30px;
}

.icon-blue {
    color: var(--tactical-blue);
}

.icon-red {
    color: #ff4400;
}

.icon-green {
    color: #34C759;
}

.icon-yellow {
    color: #FFCC00;
}

.card-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.card-desc {
    font-size: 16px;
    color: var(--grey-400);
    line-height: 1.4;
}

/* BETA SECTION */
.beta-section-alt {
    padding: 120px 10vw;
    background-color: var(--tactical-blue);
    display: flex;
    justify-content: center;
}

.beta-box-solid {
    background-color: var(--ticket-bg);
    border: 4px solid var(--black);
    padding: 60px 40px;
    border-radius: 40px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 15px 15px 0 var(--black);
    position: relative;
    opacity: 0;
    transition: all 0.6s;
}

.beta-box-solid::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 12px;
    background-color: #DDD;
    border-radius: 6px;
    border: 2px solid #BBB;
}

.beta-box-solid.visible {
    opacity: 1;
}

.beta-box-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.beta-box-subtitle {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--grey-400);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.input-group-alt {
    display: flex;
    gap: 0;
    border: 4px solid var(--black);
}

.input-tactical {
    flex: 1;
    padding: 24px;
    border: none;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 18px;
    outline: none;
}

.btn-primary-alt {
    background-color: var(--black);
    color: var(--white);
    border: none;
    padding: 0 30px;
    height: 80px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary-alt:hover {
    background-color: var(--tactical-blue);
}


/* FOOTER */
.site-footer-cinematic {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 10vw;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 32px;
    font-weight: 800;
}

.footer-logo img {
    width: 100%;
    height: 30px;
    border-radius: 0px;
}

.footer-clock {
    font-size: 48px;
    font-weight: 300;
    opacity: 0.3;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    letter-spacing: 2px;
}

.social-icons {
    display: flex;
    gap: 24px;
}

.social-icons a {
    color: var(--white);
    font-size: 24px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-cinematic {
        flex-direction: column;
        height: auto;
        padding-bottom: 100px;
        padding-top: 140px;
    }

    .hero-huge-title {
        font-size: 14vw;
        text-align: center;
    }

    .hero-tagline {
        text-align: center;
    }

    .hero-cta-group {
        justify-content: center;
        margin-bottom: 80px;
        width: 100%;
    }

    .hero-bg-accent {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        clip-path: none;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .card-large,
    .card-medium,
    .card-wide,
    .card-small {
        grid-column: span 1;
        min-height: 300px;
    }

    .btn-solid,
    .btn-outline {
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .beta-box-solid {
        padding: 40px 30px;
        box-shadow: 15px 15px 0 var(--black);
    }

    .beta-box-title {
        font-size: 32px;
    }

    .input-group-alt {
        flex-direction: column;
        border: none;
        gap: 15px;
    }

    .input-tactical {
        border: 4px solid var(--black);
        padding: 20px;
    }

    .btn-primary-alt {
        width: 100%;
        height: 60px;
        padding: 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* LEGAL PAGE STYLES */
.legal-cinematic {
    width: 100%;
    min-height: 100vh;
    padding: 0 5vw 120px 5vw;
    padding-top: calc(var(--nav-height) + 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.legal-hero {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
    max-width: 900px;
}

.legal-hero-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.legal-hero-subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--grey-400);
}

.legal-ticket-container {
    width: 100%;
    max-width: 900px;
}

.legal-ticket {
    background-color: var(--ticket-bg);
    width: 100%;
    border-radius: 40px;
    padding: 60px 50px;
    position: relative;
    border: 4px solid var(--black);
    box-shadow: 20px 20px 0 var(--black);
}

.legal-content {
    font-family: var(--font-main);
    color: var(--black);
    line-height: 1.6;
}

.legal-section-header {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-top: 50px;
    margin-bottom: 20px;
    border-bottom: 4px solid var(--black);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

.legal-content strong {
    font-weight: 800;
    color: var(--tactical-blue);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 30px;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-content li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
}

.legal-content li::before {
    content: '¦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--black);
    font-size: 12px;
}

.warning-box-tactical {
    background-color: var(--black);
    border: 4px solid #FF3B30;
    padding: 30px;
    margin: 40px 0;
    color: var(--white);
    position: relative;
    box-shadow: 8px 8px 0 var(--tactical-blue);
}

.warning-box-tactical::before {
    content: 'CRITICAL OPS NOTICE';
    position: absolute;
    top: -12px;
    left: 20px;
    background-color: var(--tactical-blue);
    color: var(--white);
    padding: 2px 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.warning-box-tactical p {
    color: var(--white);
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}

.legal-content a {
    color: var(--tactical-blue);
    text-decoration: underline;
    font-weight: 800;
}

.legal-content a:hover {
    color: var(--black);
    background-color: var(--tactical-blue);
    text-decoration: none;
    padding: 0 4px;
}

@media (max-width: 768px) {
    .legal-ticket {
        padding: 40px 25px;
        border-radius: 24px;
        box-shadow: 12px 12px 0 var(--black);
        border: 3px solid var(--black);
    }

    .legal-hero-title {
        font-size: 14vw;
    }
}

/* LAUNCH CHALLENGE SECTION (ASYMMETRICAL HUB) */
.launch-challenge-section {
    padding: 120px 5vw;
    background-color: var(--tactical-blue);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 800px;
}

/* Background Large Text */
.launch-challenge-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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: 30px 30px;
    z-index: 0;
}

.lc-background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    font-family: var(--font-main);
}

.lc-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 2;
    align-items: flex-start;
}

/* Left: Hook Card */
.lc-hook-card {
    flex: 1;
    background-color: var(--black);
    border: 4px solid var(--black);
    padding: 60px 50px;
    box-shadow: -15px 15px 0 var(--black);
    position: relative;
    margin-top: 40px;
    /* Offset downward */
}

/* Tactical accents remaining but with fitness tone */
.lc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    color: var(--black);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.lc-dot {
    width: 8px;
    height: 8px;
    background-color: rgb(0, 207, 34);
    border-radius: 50%;
}

.lc-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 30px;
}

.lc-accent-line {
    width: 80px;
    height: 4px;
    background-color: var(--white);
    margin-bottom: 30px;
}

.lc-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 40px;
}

.lc-rewards {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 50px;
}

.reward-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--grey-400);
    letter-spacing: 2px;
}

.reward-item {
    font-size: 16px;
    font-weight: 800;
    color: var(--tactical-blue);
}

.lc-tech-deco {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: rgba(255, 255, 255, 0.2);
    font-size: 24px;
}

.lc-barcode-mini {
    display: flex;
    height: 20px;
    gap: 2px;
}

.lc-barcode-mini .bar {
    background-color: rgba(255, 255, 255, 0.2);
    height: 100%;
}

/* Right: Form Card */
.lc-form-card {
    flex: 1;
    background-color: var(--ticket-bg);
    border: 4px solid var(--black);
    padding: 60px 50px;
    box-shadow: 20px 20px 0 var(--black);
    margin-bottom: 40px;
    /* Offset upward */
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 14px;
    color: var(--grey-400);
}

.lc-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.lc-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lc-input-group label {
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
}

.lc-input-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lc-input {
    width: 100%;
    background-color: var(--white);
    border: 3px solid var(--black);
    padding: 16px 20px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 16px;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.lc-input:focus {
    border-color: var(--black);
    box-shadow: 8px 8px 0 var(--black);
    transform: translate(-4px, -4px);
}

.lc-submit-btn {
    width: 100%;
    margin-top: 10px;
    background-color: var(--black);
    color: var(--white);
    border: 4px solid var(--black);
    padding: 20px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: 8px 8px 0 var(--black);
    font-family: var(--font-main);
}

.lc-submit-btn i {
    font-size: 24px;
    transition: transform 0.2s ease;
}

.lc-submit-btn:hover {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0 var(--black);
    background-color: var(--black);
    color: var(--white);
}

.lc-submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .lc-container {
        flex-direction: column;
        gap: 60px;
    }

    .lc-hook-card,
    .lc-form-card {
        margin: 0;
        width: 100%;
        box-shadow: 12px 12px 0 var(--white);
    }

    .lc-hook-card {
        box-shadow: 12px 12px 0 var(--black);
    }

    .lc-title {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .launch-challenge-section {
        padding: 80px 5vw;
        min-height: auto;
    }

    .lc-input-split {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .lc-hook-card,
    .lc-form-card {
        padding: 40px 25px;
        border-width: 3px;
    }

    .lc-submit-btn {
        font-size: 16px;
    }
}

/* SUCCESS PAGE */
.success-section {
    min-height: 100vh;
    padding: 180px 5vw 120px 5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.success-container {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.success-title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 25px;
}

.success-desc {
    font-size: 18px;
    color: var(--grey-400);
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 600px;
}

#btn-app-store-success {
    margin-bottom: 80px;
    background-color: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: var(--font-main);
    box-shadow: 6px 6px 0 var(--tactical-blue);
}

#btn-app-store-success i {
    font-size: 28px;
}

#btn-app-store-success:hover {
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0 var(--tactical-blue);
    background-color: var(--white);
    color: var(--black);
}

.success-image-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    border: 4px solid var(--black);
    box-shadow: 0 0 50px rgba(0, 102, 255, 0.4);
    border-radius: 40px;
    overflow: hidden;
}

.success-app-img {
    width: 100%;
    height: auto;
    display: block;
}