/* Landing Page Styles */

@property --a {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* Theme Variables - Dark Theme Only */
:root {
    /* Primary Colors - Forest & Gold Brand */
    --primary-green: #6b8e6b;
    --primary-gold: #e6d570;
    --primary-red: #dc2626;
    --primary-forest: #8db88d;

    /* Dark Theme - Deep Forest Night */
    --bg-primary: #0f1b0f;
    --bg-secondary: #1a2e1a;
    --bg-tertiary: #2d4a2d;
    --text-primary: #f0f8f0;
    --text-secondary: #d4edda;
    --text-muted: #9db5a0;
    --border-color: #3e5c3e;
    --card-bg: rgba(15, 27, 15, 0.95);
    --card-hover-bg: #1a2e1a;
    --hero-bg: linear-gradient(135deg, #0f1b0f 0%, #1a2e1a 50%, #2d4a2d 100%);
    --header-bg: linear-gradient(135deg, rgba(185, 28, 28, 1), rgba(220, 38, 38, 1));
    --section-bg: #0f1b0f;
    --section-alt-bg: linear-gradient(135deg, #0f1b0f 0%, #1a2e1a 50%, #2d4a2d 100%);
    --footer-bg: #0a120a;
    --cta-bg: linear-gradient(135deg, #6b8e6b, #8db88d);
    --mockup-bg: #3e5c3e;
    --comment-bg: #1a2e1a;
    --shadow-light: rgba(0,0,0,0.2);
    --shadow-medium: rgba(0,0,0,0.3);
    --shadow-heavy: rgba(0,0,0,0.5);

    /* Gradients */
    --gradient-warm: linear-gradient(135deg, #0f1b0f 0%, #1a2e1a 50%, #2d4a2d 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-secondary);
    overflow-x: hidden;
    transition: all 0.3s ease;
}

.landing-container {
    min-height: 100vh;
    background: #0f1b0f;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.hero-header {
    background: var(--header-bg);
    background-size: 400% 400%;
    animation: headerGradientShift 25s ease-in-out infinite;
    padding: calc(1.5rem - 10px) 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid #fbbf24;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    font-weight: 800;
    font-size: 2.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

.logo-text {
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-icon {
    width: 65px;
    height: 65px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.8);
}

.nav-launch {
    padding: 0.6rem 1.25rem !important;
    font-size: 0.95rem !important;
    margin-left: 0.5rem;
    white-space: nowrap;
}


/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
    z-index: 1001;
    position: relative;
}

.hamburger-menu:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.8);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Launch Buttons */
.launch-btn {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    color: white;
    border: 3px solid #fbbf24;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    box-shadow:
        0 4px 15px rgba(185, 28, 28, 0.4),
        0 0 0 0 rgba(251, 191, 36, 0.7);
    animation: goldenPulse 2s ease-in-out infinite;
}

@keyframes goldenPulse {
    0% {
        box-shadow:
            0 4px 15px rgba(185, 28, 28, 0.4),
            0 0 0 0 rgba(251, 191, 36, 0.7);
    }
    50% {
        box-shadow:
            0 4px 15px rgba(185, 28, 28, 0.4),
            0 0 20px 5px rgba(251, 191, 36, 0.4);
    }
    100% {
        box-shadow:
            0 4px 15px rgba(185, 28, 28, 0.4),
            0 0 0 0 rgba(251, 191, 36, 0.7);
    }
}

.launch-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    animation: none;
    box-shadow:
        0 8px 25px rgba(185, 28, 28, 0.5),
        0 0 30px 8px rgba(251, 191, 36, 0.6);
}

.launch-btn.primary {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.launch-btn.large {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

.launch-btn.full-width {
    width: 100%;
    margin-top: -10px;
}

.learn-more-btn {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.learn-more-btn:hover {
    background: var(--primary-gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 213, 112, 0.3);
}

/* Hero Section */
.hero {
    background: transparent;
    padding: 120px 20px 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
    transition: background 0.3s ease;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
    padding-left: 3vw;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    transition: all 0.3s ease;
}

.hero-title-white {
    color: white;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #ff6b6b, #ffa500, #ff1744);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.highlight {
    background: linear-gradient(135deg, #6b8e6b, #8db88d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

/* Screenshot Carousel */
.screenshot-carousel {
    position: relative;
    width: 52vw;
    max-width: 100%;
    min-width: 450px;
    margin-left: 15px;
    margin-top: 1vw;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-slides {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--primary-gold);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.95);
}

.hero-screenshot.active {
    position: relative;
    opacity: 1;
    transform: scale(1);
}

.hero-screenshot:hover {
    box-shadow: 0 25px 70px rgba(251, 191, 36, 0.3);
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(185, 28, 28, 0.9);
    color: #fbbf24;
    border: 2px solid #fbbf24;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
    background: rgba(220, 38, 38, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.carousel-btn.prev {
    left: -30px;
}

.carousel-btn.next {
    right: -30px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: var(--primary-gold);
    transform: scale(1.2);
}

.dot.active {
    background: #ffd700;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    transform: scale(1.4);
}

.phone-mockup {
    width: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: scale(1.05);
}

.phone-screen {
    width: 100%;
    height: 320px;
    background: var(--mockup-bg);
    border-radius: 12px 12px 0 0;
    padding: 15px 15px 0 15px;
    box-shadow: 0 -5px 20px var(--shadow-medium);
    position: relative;
}

.phone-screen::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 8px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1));
}

.phone-screen::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: rgba(0,0,0,0.3);
    border-radius: 2px;
}

.mockup-content {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px 8px 0 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.mockup-header {
    background: linear-gradient(135deg, #6b8e6b, #8db88d);
    padding: 0.75rem;
    color: white;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.mockup-content > .boycott-card {
    margin: 1rem;
}

.laptop-base {
    width: 110%;
    height: 20px;
    background: linear-gradient(to bottom, var(--mockup-bg), #1a1a1a);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 20px var(--shadow-heavy);
    position: relative;
}

.laptop-base::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 8px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.3) 80%, transparent);
    border-radius: 0 0 4px 4px;
}

.mockup-content {
    background: #1a1a1a;
}

.boycott-card {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.boycott-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(107, 142, 107, 0.2);
}

.boycott-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.boycott-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.targets {
    background: linear-gradient(135deg, #6b8e6b, #8db88d);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    display: inline-block;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(107, 142, 107, 0.3);
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: transparent;
    transition: background 0.3s ease;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
    border-color: var(--primary-gold);
    background: var(--card-hover-bg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.features-cta {
    text-align: center;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: transparent;
    transition: background 0.3s ease;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: 60px;
    background: var(--primary-green);
    opacity: 0.3;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6b8e6b, #8db88d);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(230, 213, 112, 0.3);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.how-it-works-cta {
    text-align: center;
}

/* Community Section */
.community {
    padding: 80px 0;
    background: transparent;
    transition: background 0.3s ease;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.community-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.community-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.community-features {
    list-style: none;
    margin-bottom: 2rem;
}

.community-features li {
    padding: 0.5rem 0;
    color: #5a6c7d;
    font-size: 1rem;
}

.community-visual {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 4px 12px var(--shadow-light);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.discussion-preview {
    space-y: 1rem;
}

.comment {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: var(--comment-bg);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow-light);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b8e6b, #8db88d);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(107, 142, 107, 0.3);
}

.comment-content {
    flex: 1;
}

.comment-content strong {
    color: var(--text-primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.comment-content p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.comment-actions {
    font-size: 0.8rem;
    color: #7f8c8d;
}

/* Final CTA Section */
.final-cta {
    padding: 30px 0;
    background: linear-gradient(135deg, rgba(185, 28, 28, 1), rgba(220, 38, 38, 1));
    border-top: 2px solid #fbbf24;
    border-bottom: 2px solid #fbbf24;
    color: white;
    text-align: center;
    transition: background 0.3s ease;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-subtext {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: white;
    padding: 40px 0 20px;
    transition: background 0.3s ease;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.5rem;
}

.footer-logo .logo-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-logo .logo-text {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--card-bg);
    margin: calc(5% - 30px) auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px var(--shadow-heavy);
    animation: modalSlideIn 0.3s ease;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

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

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #7f8c8d;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary-gold);
}

.modal-content h2 {
    text-align: center;
    margin-top: -10px;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.modal-content > p {
    text-align: center;
    color: var(--text-muted);
    margin-top: -10px;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group:first-child {
    margin-top: -10px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(230, 213, 112, 0.2);
}

.modal-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 17px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.modal-footer a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
}

.modal-footer a:hover {
    text-decoration: underline;
    color: #ffd700;
}

/* Responsive Design */

/* 1200px Breakpoint - Prevent carousel from moving down */
@media (max-width: 1200px) {
    .screenshot-carousel {
        margin-top: -60px;
    }
}

/* 1000px Breakpoint - Switch to stacked layout and hamburger menu */
@media (max-width: 1000px) {
    .container {
        width: 85%;
        padding: 0 20px;
    }

    .nav-container {
        width: 85%;
        margin: 0 auto;
    }

    .hero {
        flex-direction: column;
        width: 85%;
        margin: 0 auto;
        padding: 120px 20px 80px;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .hero-visual {
        margin-top: 2rem;
        width: 100%;
    }

    .hero-content {
        padding-left: 0;
        max-width: 100%;
        text-align: center;
    }

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

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

    .screenshot-carousel {
        width: 75vw;
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 93px;
    right: -300px;
    width: 300px;
    height: auto;
    max-height: calc(100vh - 93px);
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.98), rgba(220, 38, 38, 0.98));
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    transition: right 0.3s ease-in-out;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.5) rgba(255, 255, 255, 0.1);
}

/* Custom scrollbar for webkit browsers */
.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 3px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.7);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.75rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
}

.mobile-menu .nav-link:hover {
    color: #ffffff;
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.8);
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.8rem;
        gap: 12px;
    }

    .logo-text {
        font-size: 2.75rem;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 115px 20px 60px;
        min-height: auto;
        align-items: flex-start;
        padding-top: 135px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 90%;
        max-width: 400px;
        margin-top: 2rem;
    }

    .phone-screen {
        height: 280px;
    }

    .screenshot-carousel {
        width: 88vw;
        max-width: 550px;
        min-width: 320px;
        margin-top: 1vw;
        margin-left: 0;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .carousel-btn.prev {
        left: -12px;
    }

    .carousel-btn.next {
        right: -12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .community-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-header {
        padding-left: 10px;
        padding-right: 10px;
    }

    .container {
        width: 100%;
        padding: 0 10px;
    }

    .nav-container {
        width: 100%;
        padding: 0 10px;
    }

    .hero {
        width: 100%;
        padding: 115px 10px 60px;
    }

    .logo {
        font-size: 1.5rem;
        gap: 10px;
    }

    .logo-text {
        font-size: 2rem;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .modal-content {
        margin: calc(10% - 30px) auto;
        padding: 1.5rem;
    }

    .launch-btn.large {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

    .screenshot-carousel {
        width: 92vw;
        min-width: unset;
        margin-top: 1vw;
        margin-left: 0;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
}