/* ============================================
   Novel Escape - Pre-Launch Website
   Color Palette: Black, Amber (#F5A623), White
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --black-light: #111111;
    --black-card: #161616;
    --amber: #F5A623;
    --amber-dark: #D4901E;
    --amber-glow: rgba(245, 166, 35, 0.15);
    --white: #ffffff;
    --white-soft: #f0f0f0;
    --gray-light: #aaaaaa;
    --gray-mid: #666666;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: var(--white);
}

/* --- Utility --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1rem;
    display: block;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

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

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

/* countGlow animation reserved for future countdown timer */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Navigation Bar --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.6rem 2rem;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo img {
    height: 45px;
    transition: height 0.4s ease;
}

.nav.scrolled .nav-logo img {
    height: 35px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--white-soft);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--amber) !important;
    color: var(--black) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    transition: background 0.3s ease, transform 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--white) !important;
    color: var(--black) !important;
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    background: var(--black);
    overflow: hidden;
}

/* Subtle ambient background */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(245, 166, 35, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 60%, rgba(245, 166, 35, 0.04) 0%, transparent 50%);
    animation: subtleFloat 15s ease-in-out infinite;
    pointer-events: none;
}

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

.hero-logo {
    margin-bottom: 2.5rem;
    animation: fadeIn 1.2s ease-out;
}

.hero-logo img {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: none;
    margin: 0 0 1rem;
    line-height: 1.3;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subheadline {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--gray-light);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--amber);
    font-weight: 400;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-location svg {
    width: 16px;
    height: 16px;
    fill: var(--amber);
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--gray-light);
    max-width: 650px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary {
    display: inline-block;
    background: var(--amber);
    color: var(--black);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--amber);
}

.btn-primary:hover {
    background: transparent;
    color: var(--amber);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.2);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: var(--amber);
    color: var(--amber);
    transform: translateY(-2px);
}

.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gray-mid);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 3s ease-in-out infinite;
    cursor: pointer;
}

.scroll-hint span {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.2rem;
}

/* =====================
   COUNTDOWN SECTION
   ===================== */
.countdown-section {
    position: relative;
    z-index: 3;
    padding: 6rem 2rem;
    background: var(--black-light);
    text-align: center;
    border-top: 1px solid rgba(245, 166, 35, 0.25);
    border-bottom: 1px solid rgba(245, 166, 35, 0.25);
    box-shadow: 0 0 80px rgba(245, 166, 35, 0.06);
}

.countdown-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--amber);
    text-shadow: 0 0 40px rgba(245, 166, 35, 0.3);
}

.countdown-subtitle {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.coming-soon-text {
    color: var(--gray-light);
    font-size: 0.95rem;
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =====================
   VISION SECTION
   ===================== */
.vision {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.vision-text h2 span {
    color: var(--amber);
}

.vision-text p {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.vision-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vision-image:hover img {
    transform: scale(1.03);
}

.vision-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 12px;
    pointer-events: none;
}

/* =====================
   FEATURES SECTION
   ===================== */
.features {
    padding: 8rem 2rem;
    background: var(--black-light);
    text-align: center;
}

.features-header {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.features-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.features-header p {
    color: var(--gray-light);
    font-size: 1.05rem;
}

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

.feature-card {
    position: relative;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(245, 166, 35, 0.08);
}

.feature-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-card-bg {
    transform: scale(1.08);
}

.feature-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.85) 70%, rgba(10, 10, 10, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    transition: background 0.4s ease;
}

.feature-card:hover .feature-card-overlay {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.8) 60%, rgba(10, 10, 10, 0.93) 100%);
}

.feature-card-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(245, 166, 35, 0.15);
    position: absolute;
    top: 1.5rem;
    left: 2rem;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Feature backgrounds */
.feature-curated .feature-card-bg {
    background-image: url('../assets/images/Bookstore-Curated.png');
}

.feature-coffee .feature-card-bg {
    background-image: url('../assets/images/Cafe-Artisan.png');
}

.feature-cozy .feature-card-bg {
    background-image: url('../assets/images/Bookstore-cafe-Cozy.png');
}

/* =====================
   JOURNEY / UPDATES SECTION
   ===================== */
.journey {
    padding: 8rem 2rem;
    background: var(--black);
}

.journey-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.journey-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.journey-header p {
    color: var(--gray-light);
    font-size: 1.05rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--amber), rgba(245, 166, 35, 0.1));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-date {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--amber);
    padding-top: 0.3rem;
    font-weight: 700;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.4);
}

.timeline-dot.upcoming {
    background: transparent;
    border: 2px solid var(--amber);
    box-shadow: none;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =====================
   INSTAGRAM FEED SECTION
   ===================== */
.instagram-feed {
    padding: 8rem 2rem;
    background: var(--black-light);
    text-align: center;
}

.instagram-feed-content {
    max-width: 650px;
    margin: 0 auto 2rem;
}

.instagram-feed-content p {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.9;
}

.instagram-feed-widget {
    max-width: 800px;
    margin: 0 auto;
}

.instagram-feed-cta {
    margin-top: 2.5rem;
}

.instagram-feed-cta .btn-outline {
    display: inline-block;
}

/* =====================
   EMAIL SIGNUP SECTION
   ===================== */
.signup {
    padding: 8rem 2rem;
    background: var(--black);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.signup-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

.signup-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.signup-content h2 span {
    color: var(--amber);
}

.signup-subtitle {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.signup-perks {
    color: var(--gray-mid);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

/* Founders List signup form */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 560px;
    margin: 0 auto 1.5rem;
    align-items: stretch;
}

.signup-form-row {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="tel"] {
    flex: 1;
    min-width: 0;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.signup-form input:focus {
    border-color: var(--amber);
    background: rgba(245, 166, 35, 0.05);
}

.signup-form input::placeholder {
    color: var(--gray-mid);
}

/* "Are you local?" radio group */
.signup-local-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.signup-local-label {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.signup-local-options {
    display: flex;
    gap: 1.25rem;
}

.signup-radio {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--white-soft);
    font-size: 0.9rem;
    cursor: pointer;
}

.signup-radio input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
    position: relative;
}

.signup-radio input[type="radio"]:checked {
    border-color: var(--amber);
}

.signup-radio input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
}

.signup-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--white-soft);
    font-size: 0.85rem;
    cursor: pointer;
    width: 100%;
}

.signup-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.signup-checkbox input[type="checkbox"]:checked {
    border-color: var(--amber);
    background: var(--amber);
}

.signup-checkbox input[type="checkbox"]:checked::after {
    content: '\2713';
    position: absolute;
    top: -1px;
    left: 2px;
    color: var(--black);
    font-size: 14px;
    font-weight: bold;
}

.signup-form button {
    padding: 1rem 2rem;
    background: var(--amber);
    color: var(--black);
    border: 2px solid var(--amber);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.signup-form button:hover {
    background: transparent;
    color: var(--amber);
}

.signup-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Founders landing page hero */
.founders-hero {
    padding-top: 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founders-benefits {
    list-style: none;
    text-align: left;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.founders-benefits li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.founders-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
}

.signup-privacy {
    font-size: 0.75rem;
    color: var(--gray-mid);
}

.signup-counter {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--gray-light);
}

.signup-counter strong {
    color: var(--amber);
    font-weight: 600;
}

/* =====================
   FOOTER
   ===================== */
.footer {
    padding: 4rem 2rem 2rem;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-mid);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: var(--gray-mid);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--amber);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    color: var(--gray-mid);
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--gray-mid);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--amber);
}

/* Social link icons */
.social-links a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: fill 0.3s ease, transform 0.3s ease;
}

.social-links a:hover svg {
    fill: var(--amber);
    transform: translateY(-2px);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

@media (max-width: 768px) {
    /* Nav mobile */
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

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

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero mobile */
    .hero-logo img {
        max-width: 320px;
    }

    .hero-tagline {
        font-size: 1.8rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* Countdown mobile */
    .countdown-title {
        font-size: 2.2rem;
    }

    /* Vision mobile */
    .vision {
        padding: 5rem 2rem;
    }

    .vision-text h2 {
        font-size: 2.2rem;
    }

    .vision-image {
        aspect-ratio: 16/9;
    }

    /* Features mobile */
    .features {
        padding: 5rem 1.5rem;
    }

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

    .feature-card {
        height: 380px;
    }

    .features-header h2,
    .journey-header h2,
    .signup-content h2 {
        font-size: 2.2rem;
    }

    /* Timeline mobile */
    .timeline::before {
        left: 7px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
    }

    .timeline-date {
        display: none;
    }

    .timeline-content .mobile-date {
        display: block !important;
        color: var(--amber);
        font-family: var(--font-heading);
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
    }

    /* Signup mobile */
    .signup-form-row {
        flex-direction: column;
    }

    .signup-form input[type="text"],
    .signup-form input[type="email"],
    .signup-form input[type="tel"] {
        min-width: auto;
        width: 100%;
    }

    .signup-local-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-logo img {
        max-width: 260px;
    }

    .feature-card {
        height: 340px;
    }
}
