/*
Theme Name: Cheap Banana
Theme URI: https://cheapbanana.com
Author: Colony, Inc. + Jaggers Creative Co.
Author URI: https://cheapbanana.com
Description: The grocery store doesn't want you here. Hardcoded landing page theme for Cheap Banana.
Version: 1.0.0
License: Proprietary
Text Domain: cheap-banana
*/

/* ========== VARIABLES ========== */
:root {
    --black: #0A0A0A;
    --dark: #111111;
    --darker: #0D0D0D;
    --yellow: #FFE500;
    --yellow-glow: rgba(255, 229, 0, 0.4);
    --white: #F0EDE6;
    --gray: #555;
    --light-gray: #999;
    --font-display: 'Saira Condensed', sans-serif;
    --font-body: 'JetBrains Mono', monospace;
}

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

::selection {
    background: var(--yellow);
    color: var(--black);
}

::-webkit-scrollbar { width: 14px; }
::-webkit-scrollbar-track { background: var(--black); border-left: 1px solid #1a1a1a; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FFE500 0%, #E6C200 40%, #FFD000 60%, #FFE500 100%);
    border-radius: 10px;
    border: 3px solid var(--black);
    min-height: 60px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FFF176 0%, #FFE500 40%, #E6C200 60%, #FFF176 100%);
}

html {
    scroll-behavior: smooth;
    scrollbar-color: #FFE500 var(--black);
    scrollbar-width: auto;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ========== LOADING SCREEN ========== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

.loader.done {
    transform: translateY(-100%);
    pointer-events: none;
}

.loader-word {
    display: flex;
    overflow: hidden;
}

.loader-word:first-child {
    margin-bottom: -12px;
}

.loader-letter {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(5rem, 16vw, 14rem);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--yellow);
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: letter-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.loader-word:nth-child(2) .loader-letter {
    color: var(--white);
}

@keyframes letter-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loader-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loader-line {
    width: 120px;
    height: 3px;
    background: var(--yellow);
    margin-top: 30px;
    opacity: 0;
    animation: loader-line-in 0.4s ease 1.2s forwards;
}

@keyframes loader-line-in {
    to { opacity: 0.5; }
}

.loader.pulse .loader-letter {
    animation: loader-pulse 1.2s ease-in-out infinite;
}

/* ========== NOISE OVERLAY ========== */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.035;
}

/* ========== ANIMATIONS ========== */
@keyframes slide-up {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes banana-enter {
    from { opacity: 0; transform: translateY(-50%) rotate(-30deg) scale(0.7); }
    to { opacity: 1; transform: translateY(-50%) rotate(-20deg) scale(1); }
}

@keyframes banana-breathe {
    0%, 100% { transform: translateY(-50%) rotate(-20deg) scale(1); }
    50% { transform: translateY(-50%) rotate(-17deg) scale(1.03); }
}

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-10px); }
    40% { transform: translateX(10px); }
    60% { transform: translateX(-6px); }
    80% { transform: translateX(6px); }
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 20px var(--yellow-glow); }
    50% { text-shadow: 0 0 60px var(--yellow-glow), 0 0 100px rgba(255,229,0,0.15); }
}

@keyframes stripe-scroll {
    from { background-position: 0 0; }
    to { background-position: 40px 40px; }
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== NAV ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 229, 0, 0.08);
    animation: fade-in 0.6s ease both;
}

.nav-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--yellow);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-tag {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--gray);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ========== HAMBURGER ========== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 2001;
    position: relative;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--yellow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: absolute;
}

.hamburger span:nth-child(1) { transform: translateY(-8px); }
.hamburger span:nth-child(2) { opacity: 1; }
.hamburger span:nth-child(3) { transform: translateY(8px); }

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 3;
}

.mobile-menu-links li {
    overflow: hidden;
}

.mobile-menu-links a {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.4rem, 8vw, 4.5rem);
    color: var(--white);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.06em;
    line-height: 1.2;
    padding: 8px 0;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}

.mobile-menu.open .mobile-menu-links a {
    transform: translateY(0);
}

.mobile-menu-links li:nth-child(1) a { transition-delay: 0.15s; }
.mobile-menu-links li:nth-child(2) a { transition-delay: 0.22s; }
.mobile-menu-links li:nth-child(3) a { transition-delay: 0.29s; }
.mobile-menu-links li:nth-child(4) a { transition-delay: 0.36s; }
.mobile-menu-links li:nth-child(5) a { transition-delay: 0.43s; }
.mobile-menu-links li:nth-child(6) a { transition-delay: 0.50s; }

.mobile-menu:not(.open) .mobile-menu-links a {
    transition-delay: 0s !important;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:focus {
    color: var(--yellow);
}

/* Mobile menu monkey arms */
.menu-monkey-left,
.menu-monkey-right {
    position: absolute;
    height: 80%;
    width: auto;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-monkey-left {
    left: -15%;
    bottom: -10%;
    transform: translateX(-60px);
}

.menu-monkey-right {
    right: -15%;
    top: -10%;
    transform: translateX(60px) scaleX(-1) rotate(180deg);
}

.mobile-menu.open .menu-monkey-left {
    opacity: 0.08;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.mobile-menu.open .menu-monkey-right {
    opacity: 0.06;
    transform: translateX(0) scaleX(-1) rotate(180deg);
    transition-delay: 0.4s;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-content > * {
    opacity: 0;
    animation: slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.45s; }
.hero-content > *:nth-child(3) { animation-delay: 0.65s; }
.hero-content > *:nth-child(4) { animation-delay: 0.85s; }

.hero-headline {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(4rem, 10vw, 8.5rem);
    line-height: 0.92;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 28px;
}

.hero-headline .highlight {
    color: var(--yellow);
    display: inline;
}

.hero-sub {
    font-size: 0.9rem;
    color: var(--light-gray);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-banana {
    position: absolute;
    right: -4%;
    top: 50%;
    height: 88vh;
    width: auto;
    z-index: 1;
    animation: banana-enter 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-banana.breathing {
    animation: banana-breathe 10s ease-in-out infinite;
}

/* ========== EMAIL FORMS ========== */
.email-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    width: 100%;
}

.email-input {
    flex: 1;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid #2a2a2a;
    border-right: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.email-input:focus {
    border-color: var(--yellow);
    background: rgba(255, 229, 0, 0.03);
}

.email-input::placeholder {
    color: #444;
}

.email-btn {
    padding: 18px 28px;
    background: var(--yellow);
    color: var(--black);
    border: 2px solid var(--yellow);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.email-btn:hover {
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 229, 0, 0.15);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    color: var(--yellow);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-success.active {
    display: flex;
    animation: slide-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.form-success .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--yellow);
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 900;
}

.email-form.shake {
    animation: shake 0.4s ease;
}

/* ========== SECTION: WHAT IT IS ========== */
.section {
    padding: 100px 40px;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 60px;
    padding-bottom: 16px;
    border-bottom: 1px solid #1a1a1a;
}

.features {
    max-width: 900px;
}

.feature {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: baseline;
    padding: 40px 0;
    border-bottom: 1px solid #1a1a1a;
}

.feature:first-child {
    padding-top: 0;
}

.feature:last-child {
    border-bottom: none;
}

.feature-number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--yellow);
    line-height: 1;
    letter-spacing: -0.02em;
    transition: text-shadow 0.3s;
}

.feature:hover .feature-number {
    text-shadow: 0 0 40px var(--yellow-glow);
}

.feature-text {
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.7;
}

.feature-text strong {
    color: var(--white);
    font-weight: 700;
}

/* ========== SECTION: CONTESTS & DROPS ========== */
.drops {
    background: var(--darker);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.drops::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 18px,
            rgba(255, 229, 0, 0.015) 18px,
            rgba(255, 229, 0, 0.015) 20px
        );
    pointer-events: none;
    animation: stripe-scroll 3s linear infinite;
}

.drops-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.drops-label {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(3.5rem, 9vw, 7rem);
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 50px;
    animation: pulse-glow 4s ease-in-out infinite;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.countdown-sep {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--yellow);
    align-self: flex-start;
    padding-top: 14px;
    opacity: 0.5;
}

.countdown-block {
    text-align: center;
}

.countdown-digit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 96px;
    background: var(--black);
    border: 2px solid rgba(255, 229, 0, 0.25);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--yellow);
}

.countdown-unit {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--gray);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 10px;
}

.drops-redacted {
    margin: 0 auto 40px;
    text-align: center;
}

.redacted-line {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    text-transform: uppercase;
    color: var(--yellow);
    filter: blur(7px);
    user-select: none;
    line-height: 1.6;
    letter-spacing: 0.06em;
}

.drops-desc {
    font-size: 0.85rem;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.drops .email-form {
    margin: 0 auto;
}

.drops .email-btn {
    background: var(--yellow);
}

/* ========== MARQUEE ========== */
.marquee-section {
    padding: 0;
    border-top: 2px solid var(--yellow);
    border-bottom: 2px solid var(--yellow);
    overflow: hidden;
    background: var(--black);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 80s linear infinite;
}

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 40px;
    white-space: nowrap;
    font-size: 0.8rem;
    color: var(--white);
    border-right: 1px solid #1a1a1a;
}

.marquee-handle {
    color: var(--yellow);
    font-weight: 700;
    font-size: 0.75rem;
}

.marquee-quote {
    color: var(--light-gray);
    font-style: italic;
}

/* ========== SECTION: WAITLIST CTA ========== */
.waitlist {
    background: var(--yellow);
    text-align: center;
    padding: 100px 40px;
}

.waitlist-number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(5rem, 15vw, 12rem);
    color: var(--black);
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.waitlist-label {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 50px;
    opacity: 0.7;
}

.waitlist .email-form {
    margin: 0 auto;
    max-width: 500px;
}

.waitlist .email-input {
    background: var(--white);
    border-color: var(--black);
    color: var(--black);
}

.waitlist .email-input::placeholder {
    color: #888;
}

.waitlist .email-input:focus {
    border-color: var(--black);
    background: #fff;
}

.waitlist .email-btn {
    background: var(--black);
    color: var(--yellow);
    border-color: var(--black);
}

.waitlist .email-btn:hover {
    background: #222;
    border-color: #222;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.waitlist .form-success {
    color: var(--black);
}

.waitlist .form-success .check {
    background: var(--black);
    color: var(--yellow);
}

/* ========== FOOTER ========== */
.footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--yellow);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-credit {
    font-size: 0.7rem;
    color: #333;
    letter-spacing: 0.05em;
}

/* ========== SECTION: HOW IT WORKS ========== */
.how-section {
    background: var(--dark);
    border-top: 1px solid #1a1a1a;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    padding: 50px 36px;
    background: var(--black);
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(5rem, 10vw, 8rem);
    color: var(--yellow);
    line-height: 0.85;
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 20px;
}

.step-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.step-desc {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ========== SECTION: MANIFESTO + MONKEY ========== */
.manifesto {
    position: relative;
    padding: 140px 40px;
    text-align: center;
    overflow: hidden;
    background: var(--black);
    border-top: 2px solid var(--yellow);
    border-bottom: 2px solid var(--yellow);
}

.manifesto-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 4.2rem);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    letter-spacing: 0.02em;
}

.manifesto-text em {
    color: var(--yellow);
    font-style: normal;
}

.monkey-arm {
    position: absolute;
    bottom: -20%;
    left: -8%;
    height: 110%;
    width: auto;
    z-index: 1;
    opacity: 0.07;
}

.monkey-arm-right {
    position: absolute;
    top: -20%;
    right: -8%;
    height: 110%;
    width: auto;
    z-index: 1;
    opacity: 0.05;
    transform: scaleX(-1) rotate(180deg);
}

/* ========== SECTION: THEM VS US ========== */
.comparison {
    padding: 100px 40px;
    background: var(--darker);
}

.comparison-header-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 800px;
    margin: 0 auto 0;
}

.comparison-col-header {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    padding: 0 40px 30px;
    letter-spacing: 0.04em;
}

.comparison-col-header.them {
    color: #333;
    border-right: 1px solid #1a1a1a;
}

.comparison-col-header.us {
    color: var(--yellow);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-item {
    font-size: 0.85rem;
    padding: 18px 40px;
    border-top: 1px solid #1a1a1a;
    line-height: 1.5;
}

.comparison-item.them {
    color: #444;
    text-decoration: line-through;
    text-decoration-color: #333;
    border-right: 1px solid #1a1a1a;
}

.comparison-item.us {
    color: var(--white);
    font-weight: 700;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .feature {
        grid-template-columns: 140px 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 16px 24px;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .nav-tag {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
        min-height: 100svh;
    }

    .hero-banana {
        opacity: 0.08;
        right: -30%;
        height: 70vh;
    }

    .hero-headline {
        margin-bottom: 20px;
    }

    .hero-sub {
        margin-bottom: 32px;
    }

    .section {
        padding: 70px 24px;
    }

    .feature {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 28px 0;
    }

    .feature-number {
        font-size: 2.8rem;
    }

    .email-form {
        flex-direction: column;
    }

    .email-input {
        border-right: 2px solid #2a2a2a;
        border-bottom: none;
    }

    .email-input:focus {
        border-color: var(--yellow);
    }

    .waitlist .email-input {
        border-color: var(--black);
        border-right: 2px solid var(--black);
    }

    .email-btn {
        text-align: center;
    }

    .countdown {
        gap: 6px;
    }

    .countdown-digit {
        width: 60px;
        height: 72px;
        font-size: 2.2rem;
    }

    .countdown-sep {
        font-size: 1.8rem;
        padding-top: 8px;
    }

    .marquee-item {
        padding: 18px 28px;
    }

    .drops {
        padding: 70px 24px;
    }

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

    .step {
        padding: 36px 24px;
    }

    .manifesto {
        padding: 80px 24px;
    }

    .comparison-col-header {
        padding: 0 20px 20px;
        font-size: 1.6rem;
    }

    .comparison-item {
        padding: 14px 20px;
        font-size: 0.78rem;
    }

    .menu-monkey-left {
        left: -25%;
    }

    .menu-monkey-right {
        right: -25%;
    }
}

@media (max-width: 420px) {
    .hero-headline {
        font-size: 3.2rem;
    }

    .countdown-digit {
        width: 50px;
        height: 60px;
        font-size: 1.8rem;
    }

    .countdown-sep {
        font-size: 1.4rem;
        padding-top: 6px;
    }

    .countdown-unit {
        font-size: 0.5rem;
    }

    .waitlist-number {
        font-size: 4rem;
    }
}
