/* ===========================================
   qrchat - Nightlife/Restaurant Theme
   Color Palette from logo:
   - Dark Navy: #1a1f36
   - Orange/Amber: #f5a623
   - Cream/Off-white: #faf8f5
   =========================================== */

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-orange);
    color: var(--color-text-dark);
    padding: 8px 16px;
    z-index: 1000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 0;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Performance: Use CSS containment */
.section {
    contain: layout style;
}

/* Performance: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .glow, .noise-overlay, .disco-lights {
        display: none;
    }
}

:root {
    --color-dark: #0a0c14;
    --color-dark-lighter: #12141f;
    --color-dark-card: #181b28;
    --color-navy: #1a1f36;
    --color-orange: #f5a623;
    --color-orange-light: #ffc04d;
    --color-orange-dark: #d4890e;
    --color-cream: #faf8f5;
    --color-cream-dark: #e8e4dd;
    --color-text: #e8e6e3;
    --color-text-muted: #8b8d94;
    --color-text-dark: #1a1f36;

    --gradient-orange: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
    --gradient-dark: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-lighter) 100%);
    --gradient-glow: radial-gradient(circle, var(--color-orange) 0%, transparent 70%);

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(245, 166, 35, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--color-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Ambient Glows */
.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: -1;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--color-orange);
    opacity: 0.08;
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--color-orange-dark);
    opacity: 0.05;
    bottom: 20%;
    left: -150px;
    animation: float 25s ease-in-out infinite reverse;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: var(--color-orange-light);
    opacity: 0.04;
    bottom: -100px;
    right: 20%;
    animation: float 18s ease-in-out infinite 5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Disco Ball Light Reflections */
.disco-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.disco-light {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow:
        0 0 6px 1px rgba(255, 255, 255, 0.6),
        0 0 12px 3px rgba(255, 255, 255, 0.3);
    animation: twinkle var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

/* Individual light positions and sizes */
.disco-light:nth-child(1) { width: 5px; height: 5px; top: 8%; left: 15%; --duration: 3s; --delay: 0s; }
.disco-light:nth-child(2) { width: 8px; height: 8px; top: 12%; left: 78%; --duration: 4s; --delay: 0.5s; }
.disco-light:nth-child(3) { width: 4px; height: 4px; top: 25%; left: 92%; --duration: 3.5s; --delay: 1s; }
.disco-light:nth-child(4) { width: 6px; height: 6px; top: 35%; left: 8%; --duration: 4.5s; --delay: 0.3s; }
.disco-light:nth-child(5) { width: 5px; height: 5px; top: 42%; left: 65%; --duration: 3s; --delay: 1.5s; }
.disco-light:nth-child(6) { width: 10px; height: 10px; top: 55%; left: 25%; --duration: 5s; --delay: 0.8s; }
.disco-light:nth-child(7) { width: 4px; height: 4px; top: 62%; left: 88%; --duration: 3.5s; --delay: 2s; }
.disco-light:nth-child(8) { width: 6px; height: 6px; top: 72%; left: 45%; --duration: 4s; --delay: 0.2s; }
.disco-light:nth-child(9) { width: 5px; height: 5px; top: 78%; left: 12%; --duration: 3s; --delay: 1.2s; }
.disco-light:nth-child(10) { width: 8px; height: 8px; top: 85%; left: 72%; --duration: 4.5s; --delay: 0.7s; }
.disco-light:nth-child(11) { width: 4px; height: 4px; top: 18%; left: 42%; --duration: 3.5s; --delay: 1.8s; }
.disco-light:nth-child(12) { width: 6px; height: 6px; top: 48%; left: 95%; --duration: 4s; --delay: 0.4s; }
.disco-light:nth-child(13) { width: 5px; height: 5px; top: 92%; left: 38%; --duration: 3s; --delay: 1.1s; }
.disco-light:nth-child(14) { width: 8px; height: 8px; top: 5%; left: 55%; --duration: 5s; --delay: 0.6s; }
.disco-light:nth-child(15) { width: 4px; height: 4px; top: 68%; left: 5%; --duration: 3.5s; --delay: 1.4s; }

/* Orange-tinted lights for variety */
.disco-light:nth-child(2),
.disco-light:nth-child(6),
.disco-light:nth-child(10),
.disco-light:nth-child(14) {
    background: rgba(245, 166, 35, 0.9);
    box-shadow:
        0 0 6px 1px rgba(245, 166, 35, 0.7),
        0 0 15px 4px rgba(245, 166, 35, 0.3);
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(10, 12, 20, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 12, 20, 0.95);
}

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

.nav-logo .logo {
    height: 36px;
    width: auto;
    color: var(--color-text);
    transition: var(--transition-fast);
}

.nav-logo:hover .logo {
    filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.5));
}

.nav-logo:hover .logo .logo-qr {
    color: var(--color-orange);
}

.logo .logo-bubble {
    transition: var(--transition-fast);
}

.nav-logo:hover .logo .logo-bubble {
    filter: drop-shadow(0 0 6px rgba(245, 166, 35, 0.6));
}

.logo-large {
    height: 80px;
    width: auto;
    color: var(--color-text);
    filter: drop-shadow(0 0 20px rgba(245, 166, 35, 0.4));
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    transition: var(--transition-fast);
}

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

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

.nav-cta {
    background: var(--gradient-orange);
    color: var(--color-text-dark);
    padding: 10px 24px;
    border-radius: var(--border-radius-xl);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(245, 166, 35, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-fast);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 12, 20, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .nav-cta {
    text-align: center;
    margin-top: 8px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 140px 24px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.3);
    color: var(--color-orange);
    padding: 8px 16px;
    border-radius: var(--border-radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-line {
    display: block;
}

.hero-line.highlight {
    color: var(--color-orange);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--border-radius-xl);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--color-text-dark);
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

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

/* Hero Visual */
.hero-visual {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.phone-mockup {
    background: var(--color-dark-card);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-card), 0 0 80px rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.phone-screen {
    background: var(--color-dark-lighter);
    border-radius: 32px;
    overflow: hidden;
    min-height: 500px;
}

.chat-header {
    background: var(--color-dark-card);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-venue {
    display: flex;
    align-items: center;
    gap: 12px;
}

.venue-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-orange);
    border-radius: 12px;
}

.venue-info {
    display: flex;
    flex-direction: column;
}

.venue-name {
    font-weight: 600;
    color: var(--color-text);
}

.venue-status {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.chat-messages {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    animation: slideIn 0.5s ease-out;
}

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

.message.incoming {
    background: var(--color-dark-card);
    align-self: flex-start;
    border-bottom-left-radius: 6px;
}

.message.incoming.alt {
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
}

.message.outgoing {
    background: var(--gradient-orange);
    color: var(--color-text-dark);
    align-self: flex-end;
    border-bottom-right-radius: 6px;
}

.msg-text {
    display: block;
    font-size: 0.95rem;
    line-height: 1.4;
}

.msg-time {
    display: block;
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 4px;
    text-align: right;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 16px;
    background: var(--color-dark-card);
    border-radius: 18px;
    border-bottom-left-radius: 6px;
    width: fit-content;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--color-text-muted);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
}

.qr-floating {
    position: absolute;
    top: -20px;
    right: -40px;
    background: var(--color-cream);
    padding: 16px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    animation: floatQR 4s ease-in-out infinite;
    z-index: 3;
}

@keyframes floatQR {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
}

.qr-code {
    width: 80px;
    height: 80px;
    color: var(--color-navy);
}

.qr-label {
    display: block;
    text-align: center;
    margin-top: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-navy);
}

/* Sections */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
    color: var(--color-orange);
    padding: 6px 16px;
    border-radius: var(--border-radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}

.section h2 .highlight {
    color: var(--color-orange);
}

/* Problem Section */
.section-problem {
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-lighter) 100%);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-visual {
    display: flex;
    justify-content: center;
}

.scene-illustration {
    position: relative;
    width: 300px;
    height: 300px;
}

.table {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--color-dark-card);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.person {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lookDown 3s ease-in-out infinite;
}

.person-head {
    width: 30px;
    height: 30px;
    background: var(--color-text-muted);
    border-radius: 50%;
}

.person-body {
    width: 40px;
    height: 50px;
    background: var(--color-dark-card);
    border-radius: 20px 20px 10px 10px;
    margin-top: -5px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.phone-glow {
    position: absolute;
    width: 20px;
    height: 30px;
    background: rgba(100, 150, 255, 0.5);
    border-radius: 4px;
    bottom: 15px;
    box-shadow: 0 0 20px rgba(100, 150, 255, 0.5);
    animation: phoneGlow 2s ease-in-out infinite;
}

@keyframes phoneGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes lookDown {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

.person-1 { top: -20px; left: 50%; transform: translateX(-50%); }
.person-2 { bottom: -20px; left: 50%; transform: translateX(-50%) rotate(180deg); }
.person-3 { left: -20px; top: 50%; transform: translateY(-50%) rotate(-90deg); }
.person-4 { right: -20px; top: 50%; transform: translateY(-50%) rotate(90deg); }

.problem-content {
    max-width: 500px;
}

.problem-text .lead {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text);
}

.problem-text .accent {
    color: var(--color-orange);
    font-size: 1.8rem;
    margin-top: 16px;
}

.problem-detail {
    margin-top: 32px;
}

.problem-detail p {
    margin-bottom: 16px;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.problem-detail em {
    color: var(--color-orange);
    font-style: italic;
}

.highlight-text {
    background: rgba(245, 166, 35, 0.1);
    padding: 16px 20px;
    border-left: 3px solid var(--color-orange);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    color: var(--color-text) !important;
}

.solution-hint {
    font-size: 1.3rem !important;
    color: var(--color-text) !important;
}

.solution-hint strong {
    color: var(--color-orange);
}

/* Insight Section */
.section-insight {
    background: var(--color-dark-lighter);
    position: relative;
    overflow: hidden;
}

.section-insight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.insight-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.insight-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 48px;
}

.insight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.insight-block {
    background: var(--color-dark-card);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

.insight-statement {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.insight-detail {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.insight-cta {
    margin-top: 48px;
}

.insight-cta p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.6;
}

.big-text {
    font-size: 2rem;
    color: var(--color-text);
}

.big-text strong {
    color: var(--color-orange);
}

/* Solution Section */
.section-solution {
    background: var(--color-dark);
}

.placement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.placement-card {
    background: var(--color-dark-card);
    padding: 32px 24px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition-smooth);
    cursor: default;
}

.placement-card:hover {
    border-color: var(--color-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(245, 166, 35, 0.15);
}

.placement-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--color-orange);
}

.placement-icon svg {
    width: 100%;
    height: 100%;
}

.placement-card span {
    color: var(--color-text);
    font-weight: 500;
}

.solution-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: var(--border-radius-xl);
    color: var(--color-text);
    font-weight: 500;
}

.feature-pill svg {
    width: 18px;
    height: 18px;
    color: var(--color-orange);
}

.solution-summary {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.solution-summary p {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.solution-summary strong {
    color: var(--color-text);
}

.solution-summary .accent {
    color: var(--color-orange);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Magic Section */
.section-magic {
    background: linear-gradient(180deg, var(--color-dark-lighter) 0%, var(--color-dark) 100%);
}

.magic-content {
    text-align: center;
    margin-bottom: 60px;
}

.magic-intro p {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 40px;
}

.magic-intro em {
    color: var(--color-orange);
    font-style: italic;
}

.magic-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.action-tag {
    background: var(--color-dark-card);
    padding: 12px 20px;
    border-radius: var(--border-radius-xl);
    color: var(--color-text);
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.action-tag:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.magic-callout {
    background: var(--color-dark-card);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(245, 166, 35, 0.2);
}

.magic-callout p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.magic-callout .highlight {
    color: var(--color-text);
    font-size: 1.4rem;
}

.magic-callout strong {
    color: var(--color-orange);
}

/* Timeline */
.timeline {
    max-width: 600px;
    margin: 0 auto 60px;
}

.timeline-point {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.timeline-marker span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1;
}

.timeline-marker small {
    font-size: 0.8rem;
    color: var(--color-text-dark);
    opacity: 0.8;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-text);
}

.discovery-list {
    list-style: none;
}

.discovery-list li {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.discovery-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-orange);
}

.discovery-list .subtle {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Return Section */
.return-section {
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.return-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 16px;
}

.big-reveal {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 16px;
}

.because {
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

.because em {
    color: var(--color-orange);
}

/* IRL Section */
.section-irl {
    background: var(--color-dark);
}

.irl-demo {
    max-width: 700px;
    margin: 0 auto;
}

.chat-exchange {
    background: var(--color-dark-card);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.exchange-message {
    margin-bottom: 20px;
}

.exchange-message:last-child {
    margin-bottom: 0;
}

.exchange-message .sender {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.exchange-message .text {
    font-size: 1.3rem;
    color: var(--color-text);
    font-style: italic;
}

.exchange-message.reply .text {
    color: var(--color-orange);
}

.irl-result {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.result-icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-orange);
}

.result-item span {
    color: var(--color-text);
    font-weight: 500;
}

.irl-summary {
    text-align: center;
}

.irl-summary p {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.irl-summary .highlight {
    color: var(--color-text);
    font-size: 1.5rem;
}

.irl-summary strong {
    color: var(--color-orange);
}

/* Venues Section */
.section-venues {
    background: linear-gradient(180deg, var(--color-dark-lighter) 0%, var(--color-dark) 100%);
}

.venues-content {
    max-width: 800px;
    margin: 0 auto;
}

.venue-benefit {
    text-align: center;
    margin-bottom: 48px;
}

.venue-benefit h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-orange);
    margin-bottom: 12px;
}

.venue-benefit p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

.venue-benefit strong {
    color: var(--color-text);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.benefit-card {
    background: var(--color-dark-card);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    border-color: rgba(245, 166, 35, 0.3);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    color: var(--color-orange);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card p {
    color: var(--color-text);
    font-size: 1.05rem;
}

.venue-becomes {
    text-align: center;
    padding: 48px;
    background: var(--color-dark-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(245, 166, 35, 0.2);
}

.venue-becomes h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 24px;
}

.becomes-tags {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.becomes-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 24px;
    border-radius: var(--border-radius-xl);
    color: var(--color-text);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.becomes-tag.highlight {
    background: var(--gradient-orange);
    color: var(--color-text-dark);
    border-color: transparent;
}

.becomes-note {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.becomes-note strong {
    color: var(--color-orange);
}

/* Philosophy Section */
.section-philosophy {
    background: var(--color-dark);
    padding: 100px 0;
}

.philosophy-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.philosophy-content h2 {
    margin-bottom: 40px;
}

.not-list, .anti-list {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.not-item, .anti-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.x-mark, .check-mark {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.x-mark {
    background: rgba(239, 68, 68, 0.1);
}

.x-mark svg {
    width: 16px;
    height: 16px;
    color: #ef4444;
}

.check-mark {
    background: rgba(74, 222, 128, 0.1);
}

.check-mark svg {
    width: 16px;
    height: 16px;
    color: #4ade80;
}

.not-item span, .anti-item span {
    font-size: 1.1rem;
    color: var(--color-text);
}

.philosophy-statement {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    margin: 32px 0;
}

.philosophy-simple {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-top: 32px;
}

.philosophy-simple strong {
    color: var(--color-orange);
}

/* Message Section */
.section-message {
    background: var(--color-dark-lighter);
    padding: 80px 0;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.message-bridge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.bridge-from, .bridge-to {
    background: var(--color-dark-card);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    min-width: 250px;
}

.bridge-from .label, .bridge-to .label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.bridge-from p, .bridge-to p {
    font-size: 1.3rem;
    font-style: italic;
}

.bridge-from p {
    color: var(--color-text-muted);
}

.bridge-to p {
    color: var(--color-orange);
}

.bridge-arrow {
    width: 48px;
    color: var(--color-orange);
}

.bridge-arrow svg {
    width: 100%;
    height: auto;
}

/* CTA Section */
.section-cta {
    background: var(--color-dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
}

.manifesto {
    margin-bottom: 40px;
}

.manifesto-line {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.manifesto-line.highlight {
    color: var(--color-orange);
}

.cta-logo {
    margin-bottom: 16px;
}

.cta-logo .logo {
    height: 80px;
    width: auto;
    color: var(--color-text);
}

.cta-logo .logo .logo-qr {
    animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        filter: drop-shadow(0 0 4px rgba(245, 166, 35, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(245, 166, 35, 0.8));
    }
}

.tagline {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 60px;
}

.cta-form {
    max-width: 560px;
    margin: 0 auto;
    background: var(--color-dark-card);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-form h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 32px;
    color: var(--color-text);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    min-width: 0;
}

.contact-form input,
.contact-form select {
    background: var(--color-dark-lighter);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    font-size: 1rem;
    color: var(--color-text);
    font-family: var(--font-body);
    transition: var(--transition-fast);
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.contact-form input::placeholder {
    color: var(--color-text-muted);
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238b8d94' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

.contact-form select option {
    background: var(--color-dark-card);
    color: var(--color-text);
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 32px 16px;
    animation: fadeIn 0.5s ease;
}

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

.form-success .success-icon {
    width: 72px;
    height: 72px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #4ade80;
}

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 360px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--color-dark-lighter);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.footer-logo .logo {
    height: 36px;
    width: auto;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.footer-logo:hover .logo {
    color: var(--color-text);
    filter: drop-shadow(0 0 6px rgba(245, 166, 35, 0.4));
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-text);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-orange);
    color: var(--color-text-dark);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

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

    .hero-visual {
        margin-top: 40px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .problem-visual {
        order: -1;
    }

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

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

@media (max-width: 768px) {
    /* Hide desktop nav, show mobile */
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }

    /* Mobile touch targets - minimum 44x44px */
    .mobile-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 12px 16px;
    }

    .btn {
        min-height: 48px;
        padding: 14px 24px;
    }

    /* Hero adjustments */
    .hero {
        padding: 100px 20px 60px;
        flex-direction: column;
        gap: 40px;
    }

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

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

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

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

    /* Phone mockup smaller on mobile */
    .hero-visual {
        max-width: 300px;
    }

    .phone-screen {
        min-height: 380px;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section h2 {
        font-size: 1.75rem;
    }

    /* Placement grid */
    .placement-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .placement-card {
        padding: 24px 16px;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-form {
        padding: 32px 24px;
    }

    .cta-form h3 {
        font-size: 1.5rem;
    }

    .contact-form input,
    .contact-form select {
        min-height: 48px;
        font-size: 16px; /* Prevents iOS zoom */
    }

    /* Message bridge */
    .message-bridge {
        flex-direction: column;
        gap: 16px;
    }

    .bridge-arrow {
        transform: rotate(90deg);
        width: 32px;
    }

    .bridge-from, .bridge-to {
        padding: 24px;
        min-width: auto;
        width: 100%;
    }

    /* Lists */
    .not-list, .anti-list {
        flex-direction: column;
        gap: 16px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

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

    .footer-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .footer-social a {
        min-width: 44px;
        min-height: 44px;
    }

    /* IRL Section */
    .irl-result {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    /* Timeline */
    .timeline-point {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .timeline-marker {
        width: 64px;
        height: 64px;
    }

    .discovery-list li {
        padding-left: 0;
    }

    .discovery-list li::before {
        display: none;
    }

    /* Reduce visual effects on mobile for performance */
    .glow {
        opacity: 0.04;
        filter: blur(80px);
    }

    .noise-overlay {
        opacity: 0.02;
    }

    .disco-lights {
        opacity: 0.6;
    }

    .disco-light:nth-child(n+10) {
        display: none;
    }

    /* Magic section */
    .magic-actions {
        gap: 8px;
    }

    .action-tag {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .placement-grid {
        grid-template-columns: 1fr;
    }

    .becomes-tags {
        flex-direction: column;
    }

    .qr-floating {
        right: -10px;
        top: -30px;
    }

    .qr-code {
        width: 60px;
        height: 60px;
    }

    .phone-mockup {
        border-radius: 30px;
    }

    .phone-screen {
        border-radius: 24px;
        min-height: 400px;
    }
}
