/* Import font */
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

/* Custom Properties */
:root {
    /* Colors */
    --ink: #000;
    --card: #fff;
    --gold: #FFD44D;
    --red: #FF3B30;
    --blue: #3AA1FF;
    --magenta: #C83B6B;
    --sky1: #8DD6FF;
    --sky2: #BDE7FF;
    --usa-red: #FF3B30;
    --usa-blue: #3AA1FF;
    --usa-gold: #FFD700;

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-12: 48px;
    --space-16: 64px;
    --space-24: 96px;

    /* Layout */
    --max-width: 1160px;
    --header-height: 74px;
    --outline: 6px;
    --radius-sm: 18px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-pill: 9999px;
    --shadow: 0 6px 0 rgba(0,0,0,0.2);

    /* New spacing */
    --space-dropdown: 12px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + var(--space-4));
}

/* Base background */
body {
    background: linear-gradient(180deg, 
        #8DD6FF 0%,
        #A5E0FF 25%,
        #BDE7FF 50%,
        #A5E0FF 75%,
        #8DD6FF 100%
    );
    color: var(--ink);
    overflow-x: hidden;
    position: relative;
}

/* USA-themed background effects */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        linear-gradient(45deg,
            rgba(255, 0, 0, 0.02) 0%,
            transparent 20%,
            rgba(255, 255, 255, 0.02) 40%,
            transparent 60%,
            rgba(0, 48, 255, 0.02) 80%,
            transparent 100%
        );
    pointer-events: none;
    z-index: -1;
}

/* Enhanced cloud styling */
.moving-clouds {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-pill);
    filter: blur(1px);
    opacity: 0.9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: 50%;
    box-shadow: inherit;
}

/* Large fluffy cloud */
.cloud-1 {
    width: 300px;
    height: 100px;
    top: 15%;
    left: -300px;
    animation: floatingCloud 40s linear infinite;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.98),
        rgba(255, 255, 255, 0.92)
    );
}

.cloud-1::before {
    width: 160px;
    height: 160px;
    top: -60px;
    left: 40px;
}

.cloud-1::after {
    width: 140px;
    height: 140px;
    top: -50px;
    right: 40px;
}

/* Medium cloud */
.cloud-2 {
    width: 240px;
    height: 80px;
    top: 35%;
    left: -240px;
    animation: floatingCloud 30s linear infinite;
    animation-delay: -15s;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.9)
    );
}

.cloud-2::before {
    width: 120px;
    height: 120px;
    top: -40px;
    left: 30px;
}

.cloud-2::after {
    width: 100px;
    height: 100px;
    top: -30px;
    right: 30px;
}

/* Small distant cloud */
.cloud-3 {
    width: 180px;
    height: 60px;
    top: 55%;
    left: -180px;
    animation: floatingCloud 35s linear infinite;
    animation-delay: -5s;
    opacity: 0.85;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.92),
        rgba(255, 255, 255, 0.88)
    );
}

.cloud-3::before {
    width: 80px;
    height: 80px;
    top: -30px;
    left: 20px;
}

.cloud-3::after {
    width: 90px;
    height: 90px;
    top: -35px;
    right: 20px;
}

/* Extra large background cloud */
.cloud-4 {
    width: 400px;
    height: 120px;
    top: 75%;
    left: -400px;
    animation: floatingCloud 45s linear infinite;
    animation-delay: -25s;
    opacity: 0.8;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.85)
    );
}

.cloud-4::before {
    width: 180px;
    height: 180px;
    top: -70px;
    left: 50px;
}

.cloud-4::after {
    width: 160px;
    height: 160px;
    top: -60px;
    right: 50px;
}

@keyframes floatingCloud {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(calc(100vw + 100%));
    }
}

/* Remove the fading line animation below header */
.hero::after {
    display: none;
}

/* Update header styling */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: calc(var(--header-height) + var(--space-2));
    background: linear-gradient(45deg, 
        var(--magenta) 0%,
        var(--usa-red) 25%,
        var(--magenta) 50%,
        var(--usa-blue) 75%,
        var(--magenta) 100%
    );
    background-size: 400% 400%;
    animation: headerGradient 10s ease infinite;
    z-index: 1000;
    padding-top: var(--space-2);
    border-bottom: 2px solid var(--ink);
}

@keyframes headerGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Add subtle ambient lighting */
.moving-clouds::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0.5;
}

/* Ensure reduced motion is respected */
@media (prefers-reduced-motion: reduce) {
    .moving-clouds,
    .moving-clouds::before {
        animation: none;
    }
    
    .cloud {
        display: none;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--magenta);
    z-index: 1000;
    border-bottom: 2px solid var(--ink);
}

.header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--outline);
    background: var(--ink);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    position: relative;
    max-width: 100%;
    overflow: visible;
    margin: 0 auto;
}

.pill {
    font-family: 'Luckiest Guy', system-ui;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-pill);
    border: 3px solid var(--ink);
    background: var(--card);
    color: var(--ink);
    white-space: nowrap;
    transform: rotate(-2deg);
    box-shadow: var(--shadow);
    font-size: 16px;
}

.nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    padding-right: var(--space-2);
}

/* Ensure mobile responsiveness */
@media (max-width: 1200px) {
    .header-content {
        gap: var(--space-2);
    }
    
    .pill {
        font-size: 14px;
        padding: var(--space-2);
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-2);
    }
    
    .header-content {
        justify-content: space-between;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--magenta);
        padding: var(--space-4);
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-3);
    }
    
    .nav-links.active {
        display: flex;
    }
}

/* Update main padding to account for new header height */
main {
    padding-top: calc(var(--header-height) + var(--space-4));
}

/* Header Pills */
.countdown-pill,
.status-pill,
.progress-pill {
    font-family: 'Luckiest Guy', system-ui;
    font-size: 18px;
    padding: var(--space-2) var(--space-4);
    border: var(--outline) solid var(--ink);
    border-radius: var(--radius-md);
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
    animation: usaColorFade 6s infinite;
    flex-shrink: 0;
}

.countdown-pill {
    background: var(--usa-red);
    color: var(--card);
    transform: rotate(-2deg);
    position: relative;
    animation-delay: 0s;
}

.countdown-pill::before,
.countdown-pill::after {
    content: '★';
    position: absolute;
    color: var(--usa-gold);
    text-shadow: 2px 2px 0 var(--ink);
}

.countdown-pill::before {
    left: -10px;
    top: -10px;
}

.countdown-pill::after {
    right: -10px;
    bottom: -10px;
}

.status-pill {
    background: var(--card);
    color: var(--ink);
    animation-delay: -2s;
}

.progress-pill {
    background: var(--gold);
    color: var(--ink);
    transform: rotate(2deg);
    animation-delay: -4s;
}

@keyframes usaColorFade {
    0%, 100% {
        background: var(--usa-red);
        color: var(--card);
    }
    50% {
        background: var(--usa-blue);
        color: var(--card);
    }
}

/* Hero Title USA Style */
.hero-title {
    font-family: 'Luckiest Guy', system-ui;
    font-size: clamp(48px, 8vw, 72px);
    line-height: 1.1;
    margin-bottom: var(--space-4);
    position: relative;
    color: var(--card);
    -webkit-text-stroke: 2px var(--ink);
    text-shadow: 
        -2px -2px 0 var(--usa-red),
        2px -2px 0 var(--usa-red),
        -2px 2px 0 var(--usa-blue),
        2px 2px 0 var(--usa-blue),
        4px 4px 0 var(--ink);
    letter-spacing: 2px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.hero-title::before,
.hero-title::after {
    display: none;
}

@keyframes flagWave {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 200%;
    }
}

/* Hero Section */
.hero {
    padding: var(--space-24) 0 var(--space-16);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-8);
    align-items: center;
}

.hero-content {
    position: relative;
    max-width: 600px;
    padding-right: var(--space-8);
    padding-left: var(--space-16);
    margin-left: var(--space-8);
    z-index: 2;
}

.hero-subtitle {
    font-family: 'Luckiest Guy', system-ui;
    font-size: 24px;
    margin-bottom: var(--space-6);
    color: var(--ink);
}

/* Update Contract Display and Buttons */
.contract-display {
    background: var(--card);
    padding: var(--space-3) var(--space-4);
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    max-width: fit-content;
    border: var(--outline) solid var(--ink);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow);
}

.contract-text {
    font-family: 'Luckiest Guy', system-ui;
    font-size: 18px;
    color: var(--ink);
}

.copy-btn {
    background: var(--gold);
    border: var(--outline) solid var(--ink);
    border-radius: var(--radius-pill);
    padding: var(--space-2) var(--space-3);
    cursor: pointer;
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    transform: translateY(-2px);
}

.copy-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--card);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.copy-btn[data-copied="true"] .copy-tooltip {
    opacity: 1;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: var(--space-4);
}

.btn {
    font-family: 'Luckiest Guy', system-ui;
    font-size: 18px;
    text-decoration: none;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    transition: all 0.2s ease;
    text-align: center;
    white-space: nowrap;
    border: var(--outline) solid var(--ink);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

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

.btn--primary {
    background: var(--gold);
    color: var(--ink);
}

.btn--secondary {
    background: var(--card);
    color: var(--ink);
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border: var(--outline) solid var(--ink);
}

/* Sticker/Mascot Effect */
.sticker {
    position: absolute;
    right: var(--space-12);
    top: -px;
    width: 400px;
    height: 400px;
    z-index: 100;
    overflow: visible;
}

.sticker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    pointer-events: none;
}

.sticker-border {
    display: none;
}

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

/* Mobile Adjustments for Sticker */
@media (max-width: 1024px) {
    .sticker {
        width: 360px;
        height: 360px;
    }
}

@media (max-width: 768px) {
    .sticker {
        width: 320px;
        height: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .sticker {
        width: 260px;
        height: 260px;
    }
}

/* Marquee */
.marquee {
    background: var(--card);
    padding: var(--space-4);
    border: 6px solid #000;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.marquee-content {
    font-family: 'Luckiest Guy', system-ui;
    font-size: 20px;
    color: var(--ink);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.marquee-content span {
    display: block;
    text-align: center;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* Sections */
.section {
    padding: var(--space-16) 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 2;
}

.section-title::before,
.section-title::after {
    content: '★';
    color: var(--usa-gold);
    text-shadow: 2px 2px 0 var(--ink);
}

/* Cards */
.card {
    background: var(--card);
    padding: var(--space-6);
    position: relative;
    transition: transform 0.2s ease;
}

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

.card h3 {
    font-family: 'Luckiest Guy', system-ui;
    font-size: 24px;
    margin-bottom: var(--space-3);
    color: var(--ink);
}

.card p {
    font-family: 'Luckiest Guy', system-ui;
    font-size: 18px;
    color: var(--ink);
    opacity: 0.9;
}

/* Timeline */
.timeline-grid {
    position: relative;
    padding: var(--space-8) 0;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-grid::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: var(--outline);
    background: repeating-linear-gradient(
        to bottom,
        var(--ink) 0,
        var(--ink) 8px,
        transparent 8px,
        transparent 16px
    );
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-16);
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 2;
}

.ribbon {
    font-family: 'Luckiest Guy', system-ui;
    font-size: 24px;
    padding: var(--space-3) var(--space-5);
    color: var(--card);
    transform: rotate(-6deg);
    margin-bottom: var(--space-4);
    position: relative;
    width: fit-content;
}

.ribbon--red {
    background: var(--usa-red);
}

.ribbon--blue {
    background: var(--usa-blue);
}

.timeline-content {
    background: var(--card);
    border: var(--outline) solid var(--ink);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.timeline-sticker {
    width: 64px;
    height: 64px;
    position: relative;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--usa-red);
    color: var(--card);
    font-size: 12px;
    padding: var(--space-1) var(--space-2);
    z-index: 1;
}

/* Accordion */
.accordion {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: var(--space-4) var(--space-5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Luckiest Guy', system-ui;
    font-size: 18px;
    color: var(--ink);
    transition: all 0.3s ease;
    margin-bottom: var(--space-dropdown);
    border-radius: var(--radius-md);
}

.accordion:last-child {
    margin-bottom: 0;
}

.accordion[aria-expanded="true"] {
    background: rgba(0,0,0,0.05);
    transform: translateX(var(--space-2));
}

.accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--ink);
    transition: transform 0.2s ease;
}

.accordion-icon::before {
    width: 2px;
    height: 20px;
    left: 9px;
    top: 0;
}

.accordion-icon::after {
    width: 20px;
    height: 2px;
    left: 0;
    top: 9px;
}

.accordion[aria-expanded="true"] .accordion-icon::before {
    transform: rotate(90deg);
}

.accordion-content {
    padding: var(--space-4) var(--space-5);
    font-family: 'Luckiest Guy', system-ui;
    font-size: 16px;
    color: var(--ink);
    opacity: 0.9;
}

/* FAQ adjustments */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    gap: var(--space-4);
    padding: 0 var(--space-4);
}

/* Footer */
.footer {
    background: var(--off);
    padding: var(--space-6) 0;
}

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

.footer-content p {
    font-family: 'Luckiest Guy', system-ui;
    color: var(--card);
    font-size: 16px;
    -webkit-text-stroke: 1px var(--ink);
    text-shadow: 1px 1px 0 var(--ink);
    letter-spacing: 0.5px;
    line-height: 1;
    padding: var(--space-2);
}

.link-item:hover::after {
    display: none;
}

.footer-social {
    display: none;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-6);
    }

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

    .footer-social {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-3);
        text-align: center;
    }
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.nav-links {
    display: flex;
    gap: var(--space-2);
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2) var(--space-4);
    font-family: 'Luckiest Guy', system-ui;
    color: var(--ink);
    text-decoration: none;
    background: var(--card);
    border: var(--outline) solid var(--ink);
    border-radius: var(--radius-pill);
    min-height: 44px;
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
    line-height: 1;
}

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

.nav-link span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.nav-links {
    display: flex;
    gap: var(--space-2);
    align-items: center;
}

.nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gold);
    color: var(--ink);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .nav-links {
        gap: var(--space-2);
    }

    .nav-link {
        font-size: 14px;
        padding: var(--space-2);
    }
}

@media (max-width: 768px) {
    .nav {
        width: 100%;
        margin-top: var(--space-4);
    }

    .nav-toggle {
        display: block;
        position: absolute;
        top: var(--space-4);
        right: var(--space-4);
        z-index: 2;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--card);
        padding: var(--space-4);
        border: var(--outline) solid var(--ink);
        border-top: none;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
    }
}

/* Remove old top-nav styles */

/* Responsive Adjustments */
@media (max-width: 1024px) {
    :root {
        --space-24: 64px;
    }

    .header-content {
        padding: var(--space-2);
    }

    .countdown-pill,
    .status-pill,
    .progress-pill {
        font-size: 14px;
        padding: var(--space-2);
        min-height: 40px;
    }

    .nav-links {
        gap: var(--space-2);
    }

    .nav-link {
        font-size: 14px;
        padding: var(--space-1) var(--space-2);
    }
}

@media (max-width: 768px) {
    .header {
        height: auto;
    }

    .header-content {
        flex-direction: column;
        padding: var(--space-2);
        gap: var(--space-2);
    }

    .nav {
        width: 100%;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        top: var(--space-2);
        right: var(--space-2);
        z-index: 2;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--card);
        padding: var(--space-4);
        border: var(--outline) solid var(--ink);
        border-top: none;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
        padding: var(--space-2);
    }

    .countdown-pill,
    .status-pill,
    .progress-pill {
        width: 100%;
        transform: none;
    }

    .countdown-pill::before,
    .countdown-pill::after {
        display: none;
    }

    .timeline-grid::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        grid-template-columns: 1fr;
        padding-left: 50px;
    }

    .timeline-content {
        width: 100%;
    }

    .ribbon {
        margin-left: 20px;
    }

    .top-nav {
        margin-top: auto;
        position: relative;
        top: 0;
    }

    .nav-buttons {
        flex-direction: column;
        padding: var(--space-2);
    }

    .nav-button {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .moving-clouds {
        display: none;
    }
}

/* Add more USA-themed animations */
@keyframes starTwinkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(15deg); opacity: 0.8; }
}

.card::before {
    animation: starTwinkle 2s ease-in-out infinite;
}

.section-title::before,
.section-title::after {
    animation: starTwinkle 2s ease-in-out infinite;
}

.section-title::after {
    animation-delay: 1s;
}

@keyframes stripeWave {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--usa-red), var(--usa-blue), var(--usa-gold));
    animation: stripeWave 3s linear infinite;
    opacity: 0.3;
}

/* Update footer for USA theme */
.footer {
    border-top: 4px solid var(--usa-red);
}

.footer::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--usa-blue);
}

/* Add stars to section titles */
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title::before,
.section-title::after {
    content: '★';
    color: var(--usa-gold);
    font-size: 28px;
    text-shadow: 2px 2px 0 var(--usa-blue);
}

/* Add hover effect to section titles */
.section-title:hover {
    transform: scale(1.05);
}

/* Add animation when accordion is opened */
.faq-item .accordion[aria-expanded="true"] + .accordion-content {
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Add ripple effect to all buttons */
@keyframes ripple {
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.btn:active::before,
.nav-button:active::before,
.copy-btn:active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple 0.6s ease-out;
}

/* Roadmap Section Title */
.roadmap-title {
    width: 300px;
    height: 120px;
    background: var(--usa-blue);
    color: var(--card);
    font-family: 'Luckiest Guy', system-ui;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-16);
    position: relative;
    border: var(--outline) solid var(--ink);
    border-radius: 0 0 150px 150px;
    box-shadow: var(--shadow);
}

/* Timeline Layout */
.timeline-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-4);
    position: relative;
}

.timeline-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--ink);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
}

.timeline-content {
    background: var(--card);
    padding: var(--space-6);
    padding-top: var(--space-12);
    border-radius: 20px;
    border: 6px solid var(--ink);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.timeline-content h3 {
    font-family: 'Luckiest Guy', system-ui;
    font-size: 28px;
    color: var(--usa-red);
    margin-bottom: var(--space-4);
    -webkit-text-stroke: 1px var(--ink);
    text-shadow: 2px 2px 0 var(--ink);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content p {
    font-family: 'Luckiest Guy', system-ui;
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: var(--space-4);
}

/* Override any potential conflicting styles */
.card h3 {
    color: var(--usa-red) !important;
}

.ribbon {
    position: absolute;
    left: -15px;
    top: -15px;
    background: var(--usa-gold);
    color: var(--card);
    font-family: 'Luckiest Guy', system-ui;
    padding: var(--space-2) var(--space-4);
    transform: rotate(-6deg);
    border: 3px solid var(--ink);
    border-radius: var(--radius-sm);
    -webkit-text-stroke: 1px var(--ink);
    text-shadow: 1px 1px 0 var(--ink);
    z-index: 2;
}

.location {
    display: inline-block;
    font-family: 'Luckiest Guy', system-ui;
    font-size: 14px;
    color: var(--card);
    background: var(--usa-blue);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-pill);
    border: 2px solid var(--ink);
    transform: rotate(-2deg);
}

@media (max-width: 768px) {
    .timeline-grid::before {
        left: 20px;
    }
    
    .timeline-item {
        justify-content: flex-start;
        padding-left: 40px;
    }
    
    .ribbon {
        font-size: 14px;
        padding: var(--space-1) var(--space-3);
    }
}

/* USA Flag Button Style */
.btn--usa {
    position: relative;
    background: transparent;
    color: var(--ink);
    overflow: hidden;
    padding: var(--space-4) var(--space-6);
    min-height: 64px;
}

.btn--usa::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        var(--usa-blue) 0%,
        var(--usa-blue) 40%,
        var(--card) 40%,
        var(--card) 50%,
        var(--usa-red) 50%,
        var(--usa-red) 75%,
        var(--card) 75%,
        var(--card) 100%
    );
    z-index: -1;
}

.btn-text {
    position: relative;
    z-index: 1;
    font-family: 'Luckiest Guy', system-ui;
    font-size: 18px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
}

/* Button Hover Effect */
.btn--usa:hover {
    transform: translateY(-2px);
}

.btn--usa:active {
    transform: translateY(0);
}

/* Update Hero Buttons Layout */
.hero-buttons {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

/* Icon Button Style */
.btn--icon {
    position: relative;
    background: linear-gradient(
        45deg,
        var(--usa-red) 0%,
        var(--usa-red) 33%,
        var(--card) 33%,
        var(--card) 66%,
        var(--usa-blue) 66%,
        var(--usa-blue) 100%
    );
    color: var(--card);
    padding: var(--space-3) var(--space-6);
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    transition: all 0.2s ease;
    border: var(--outline) solid var(--ink);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow);
    text-decoration: none;
    transform: rotate(-1deg);
}

.btn--icon:hover {
    transform: translateY(-2px) rotate(-1deg);
}

.btn--icon:active {
    transform: translateY(0) rotate(-1deg);
}

.btn-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-right: var(--space-2);
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    filter: drop-shadow(2px 2px 0 var(--ink));
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-6);
    min-height: 56px;
    min-width: max-content;
}

.btn-text {
    display: inline-block;
    margin-top: 2px;
    font-family: 'Luckiest Guy', system-ui;
    font-size: 18px;
    color: var(--card);
    text-shadow: 
        -1px -1px 0 var(--ink),
        1px -1px 0 var(--ink),
        -1px 1px 0 var(--ink),
        1px 1px 0 var(--ink),
        2px 2px 0 var(--ink);
    letter-spacing: 0.5px;
}

/* Button Layout */
.hero-buttons {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

/* Section Title USA Style */
.usa-bubble {
    font-family: 'Luckiest Guy', system-ui;
    font-size: 48px;
    color: var(--card);
    padding: var(--space-4) var(--space-8);
    background: linear-gradient(
        45deg,
        var(--usa-red) 0%,
        var(--usa-red) 33%,
        var(--card) 33%,
        var(--card) 66%,
        var(--usa-blue) 66%,
        var(--usa-blue) 100%
    );
    border: 6px solid var(--ink);
    border-radius: var(--radius-pill);
    display: inline-block;
    transform: rotate(-2deg);
    -webkit-text-stroke: 2px var(--ink);
    text-shadow: 3px 3px 0 var(--ink);
    box-shadow: var(--shadow);
    margin-bottom: var(--space-12);
}

/* Card Styling */
.card {
    background: var(--card);
    padding: var(--space-6);
    border-radius: 100px / 50px;
    border: 6px solid var(--ink);
    box-shadow: var(--shadow);
    position: relative;
    width: 100%;
    margin-top: var(--space-4);
}

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

.card h3 {
    font-family: 'Luckiest Guy', system-ui;
    font-size: 24px;
    margin-bottom: var(--space-3);
    color: var(--ink);
}

.card p {
    font-family: 'Luckiest Guy', system-ui;
    font-size: 18px;
    color: var(--ink);
    opacity: 0.9;
    line-height: 1.5;
}

/* Step Numbers */
.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    background: var(--usa-red);
    color: var(--card);
    font-family: 'Luckiest Guy', system-ui;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--ink);
    border-radius: 50%;
    box-shadow: var(--shadow);
}

/* Grid Layouts */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    max-width: 900px;
    margin: var(--space-4) auto 0;
    width: 100%;
}

.steps-grid .card {
    border-radius: 50% / 20%;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

/* FAQ Accordion */
.accordion {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: var(--space-4) var(--space-5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Luckiest Guy', system-ui;
    font-size: 18px;
    color: var(--ink);
    transition: all 0.3s ease;
}

.accordion[aria-expanded="true"] {
    color: var(--usa-blue);
}

.accordion-content {
    padding: var(--space-4) var(--space-5);
    border-top: 2px solid rgba(0,0,0,0.1);
    margin-top: var(--space-2);
}

/* Section Spacing */
.section {
    padding: var(--space-24) 0;
    position: relative;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .usa-bubble {
        font-size: 36px;
        padding: var(--space-3) var(--space-6);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: var(--space-4);
    }
}

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

.star-background::before {
    content: '★';
    position: absolute;
    color: var(--usa-gold);
    font-size: 20px;
    text-shadow: 2px 2px 0 var(--ink);
    animation: starFloat 3s linear infinite;
    opacity: 0;
}

/* Generate multiple stars with different positions and animations */
@for $i from 1 through 20 {
    .star-background::before:nth-child($i) {
        left: calc(random() * 100%);
        top: calc(random() * 100%);
        animation-delay: calc(random() * -3s);
    }
}

@keyframes starFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scale(1);
    }
}

/* Add stars using multiple elements for better browser support */
.star {
    position: fixed;
    color: var(--usa-gold);
    font-size: 20px;
    text-shadow: 2px 2px 0 var(--ink);
    animation: starFloat 3s linear infinite;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

/* Bottom Links Section */
.bottom-links {
    padding: var(--space-16) 0;
    background: var(--off);
}

.links-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin: 0 auto;
    max-width: 1000px;
}

.links-card {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    border: 6px solid var(--ink);
    box-shadow: var(--shadow);
}

.links-card:nth-child(1) {
    background: #f0f0f0;
}

.links-card:nth-child(2) {
    background: #8dd6ff;
}

.links-card:nth-child(3) {
    background: #ff6b6b;
}

.links-card h3 {
    font-family: 'Luckiest Guy', system-ui;
    font-size: 24px;
    margin-bottom: var(--space-4);
    color: var(--card);
    text-align: center;
    -webkit-text-stroke: 2px var(--ink);
    text-shadow: 2px 2px 0 var(--ink);
}

.link-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    font-family: 'Luckiest Guy', system-ui;
    color: var(--card);
    text-decoration: none;
    transition: transform 0.2s;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    -webkit-text-stroke: 1.5px var(--ink);
    text-shadow: 2px 2px 0 var(--ink);
}

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

.link-item:hover::after {
    content: '★';
    position: absolute;
    right: -20px;
    color: var(--card);
    text-shadow: 2px 2px 0 var(--ink);
    animation: starPulse 1s ease-in-out infinite alternate;
}

.link-icon {
    font-size: 20px;
}

.trade-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    filter: drop-shadow(2px 2px 0 var(--ink));
}

.contract-section {
    display: none;
}

.ca-display {
    font-family: 'Luckiest Guy', system-ui;
    font-size: 32px;
    color: var(--card);
    margin: var(--space-4) 0;
    -webkit-text-stroke: 2px var(--ink);
    text-shadow: 2px 2px 0 var(--ink);
}

.copy-btn {
    background: var(--ink);
    color: var(--card);
    font-family: 'Luckiest Guy', system-ui;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-pill);
    border: 3px solid var(--ink);
    cursor: pointer;
    transition: transform 0.2s;
    font-size: 16px;
    text-shadow: 1px 1px 0 var(--ink);
}

.copy-btn:hover {
    transform: translateY(-2px);
}

.footer {
    background: var(--off);
    padding: var(--space-4) 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--card);
    font-family: 'Luckiest Guy', system-ui;
    font-size: 18px;
    text-shadow: 1px 1px 0 var(--ink);
}

@media (max-width: 768px) {
    .links-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-2);
        text-align: center;
    }
}

/* Update existing text sizes and add hover effects */

/* Header nav links */
.nav-link {
    font-size: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-2px) scale(1.05);
    filter: brightness(1.2);
}

/* Hero section */
.hero-title {
    font-size: clamp(56px, 10vw, 86px);
}

.hero-subtitle {
    font-size: clamp(24px, 4vw, 32px);
}

/* Section titles */
.section-title {
    font-size: clamp(36px, 6vw, 48px);
}

/* Card titles and content */
.card h3 {
    font-size: 28px;
}

.card p {
    font-size: 20px;
}

/* Links card styles */
.links-card h3 {
    font-size: 32px;
    transition: all 0.3s ease;
}

.links-card h3:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.link-item {
    font-size: 24px;
    transition: all 0.3s ease;
    position: relative;
}

.link-item:hover {
    transform: translateY(-2px) scale(1.05);
    filter: brightness(1.2);
}

.link-item:hover::after {
    content: '★';
    position: absolute;
    right: -20px;
    color: var(--card);
    text-shadow: 2px 2px 0 var(--ink);
    animation: starPulse 1s ease-in-out infinite alternate;
}

/* Contract section */
.contract-section h3 {
    font-size: 36px;
}

.ca-display {
    font-size: 42px;
    transition: all 0.3s ease;
}

.ca-display:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.copy-btn {
    font-size: 20px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: translateY(-2px) scale(1.05);
    filter: brightness(1.2);
}

/* Footer */
.footer-content {
    font-size: 18px;
}

/* Accordion buttons */
.accordion {
    font-size: 24px;
    transition: all 0.3s ease;
}

.accordion:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

/* Add keyframes for star pulse if not already present */
@keyframes starPulse {
    from {
        transform: scale(1);
        opacity: 0.8;
    }
    to {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Media queries */
@media (max-width: 768px) {
    .links-card h3 {
        font-size: 28px;
    }
    
    .link-item {
        font-size: 20px;
    }
    
    .contract-section h3 {
        font-size: 32px;
    }
    
    .ca-display {
        font-size: 36px;
    }
}

.timeline {
    padding: var(--space-16) 0;
    text-align: center;
    position: relative;
}

.roadmap-title {
    display: block;
    text-align: center;
    margin-bottom: var(--space-12);
    width: 100%;
}

.timeline-grid {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-4);
}

.timeline-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50px;
    bottom: 50px;
    width: 4px;
    background: var(--ink);
    transform: translateX(-50%);
}

.timeline-content {
    background: var(--card);
    padding: var(--space-6);
    padding-top: var(--space-12);
    border-radius: 100px / 50px;
    border: 6px solid var(--ink);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 1;
    margin: var(--space-4) 0;
}

.roadmap-title {
    font-family: 'Luckiest Guy', system-ui;
    font-size: 48px;
    color: var(--card);
    padding: var(--space-4) var(--space-8);
    background: linear-gradient(
        45deg,
        var(--usa-red) 0%,
        var(--usa-red) 33%,
        var(--card) 33%,
        var(--card) 66%,
        var(--usa-blue) 66%,
        var(--usa-blue) 100%
    );
    border: 6px solid var(--ink);
    border-radius: var(--radius-pill);
    display: inline-block;
    transform: rotate(-2deg);
    -webkit-text-stroke: 2px var(--ink);
    text-shadow: 3px 3px 0 var(--ink);
    box-shadow: var(--shadow);
    margin-bottom: var(--space-12);
}

.roadmap-statue-left {
    position: absolute;
    left: -100px;
    top: 0;
    height: 100%;
    z-index: 1;
}

.roadmap-statue-right {
    position: absolute;
    right: 200px;
    top: 0;
    height: 100%;
    z-index: 1;
}

.statue-img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    animation: spin 10s linear infinite;
    position: absolute;
}

.statue-top {
    top: 15%;
}

.statue-middle {
    top: 50%;
    transform: translateY(-50%);
}

.statue-bottom {
    bottom: 15%;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.timeline {
    position: relative;
    padding: var(--space-16) 0;
    overflow: visible;
    max-width: 1400px;
    margin: 0 auto;
}

.container {
    position: relative;
    overflow: visible;
}

@media (max-width: 1400px) {
    .roadmap-statue-left, .roadmap-statue-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0;
        margin: 0 auto;
        text-align: center;
        max-width: 90%;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
        margin: 0 auto var(--space-4);
        padding: 0;
        width: 100%;
        max-width: 600px;
    }

    .hero-subtitle {
        font-size: clamp(18px, 4vw, 24px);
        margin: 0 auto;
        padding: 0;
        width: 100%;
        max-width: 600px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--space-4);
        align-items: center;
        padding: var(--space-4) 0;
        margin: 0 auto;
        width: 100%;
        max-width: 600px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .sticker {
        position: relative;
        right: auto;
        top: auto;
        width: 250px;
        height: 250px;
        margin: var(--space-8) auto 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .timeline-content {
        margin: 0 auto;
        padding: var(--space-4);
        padding-top: var(--space-8);
    }

    .ribbon {
        font-size: 16px;
        padding: var(--space-2) var(--space-3);
    }

    .timeline-content h3 {
        font-size: 24px;
    }

    .timeline-content p {
        font-size: 16px;
    }

    .roadmap-statue-left,
    .roadmap-statue-right {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--magenta);
        padding: var(--space-4);
        flex-direction: column;
        align-items: center;
        gap: var(--space-3);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .pill {
        font-size: 14px;
        padding: var(--space-2) var(--space-3);
    }

    .header-content {
        flex-direction: column;
        gap: var(--space-3);
        padding: var(--space-4) var(--space-2);
    }

    .usa-bubble {
        font-size: 32px;
        padding: var(--space-3) var(--space-6);
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: var(--space-3) var(--space-2);
    }

    .pill {
        font-size: 12px;
        padding: var(--space-2);
    }

    .hero-title {
        font-size: clamp(28px, 7vw, 36px);
    }

    .hero-subtitle {
        font-size: clamp(16px, 4vw, 20px);
    }

    .btn {
        font-size: 14px;
    }

    .sticker {
        width: 200px;
        height: 200px;
    }

    .container {
        padding: 0 var(--space-2);
    }
}

.countdown-pill,
.status-pill,
.progress-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 44px;
}

@media (max-width: 768px) {
    .countdown-text {
        font-size: 14px;
        white-space: nowrap;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .links-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .timeline-grid {
        padding: 0;
    }

    .timeline-content {
        padding: var(--space-4);
        padding-top: var(--space-8);
    }

    .ribbon {
        font-size: 14px;
        padding: var(--space-2) var(--space-3);
        left: -10px;
    }
}

@media (max-width: 480px) {
    .countdown-text {
        font-size: 12px;
    }

    .timeline-content {
        padding: var(--space-3);
        padding-top: var(--space-6);
    }

    .timeline-content h3 {
        font-size: 20px;
    }

    .timeline-content p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .countdown-pill,
    .status-pill,
    .progress-pill,
    .nav-links,
    .star,
    .header {
        display: none;
    }

    .hero {
        padding-top: 0;
    }

    .hero-content {
        padding: var(--space-8) var(--space-4);
        margin: 0 auto;
        text-align: center;
        max-width: 500px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 36px;
        margin: 0 0 var(--space-4);
        width: auto;
        display: inline-block;
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 20px;
        margin: 0 0 var(--space-8);
        width: auto;
        display: inline-block;
        white-space: nowrap;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
        align-items: center;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
    }

    .sticker {
        position: relative;
        right: auto;
        top: auto;
        width: 200px;
        height: 200px;
        margin: var(--space-8) auto 0;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: var(--space-6) var(--space-2);
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}
