/* Landing Page */
.landing {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--pico-background-color);
}

/* Navigation */
.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.landing-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

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

.landing-nav-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s;
}

.landing-nav-link:hover {
    color: #fff;
}

.landing-login {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    transition: all 0.15s;
}

.landing-login:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Hero */
.landing-hero-wrapper {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.landing-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 8rem 2rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.landing-hero-content {
    max-width: 560px;
}

.landing-badge {
    display: inline-block;
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.landing-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.landing-hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0 0 2rem;
}

.landing-hero-sub strong {
    color: #4ade80;
    font-weight: 600;
}

.landing-hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.landing-cta {
    display: inline-block;
    background: #fff;
    color: #1a1a2e;
    padding: 0.9rem 1.75rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.landing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.landing-cta-secondary {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,0.85);
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s;
}

.landing-cta-secondary:hover {
    color: #fff;
}

.landing-hero-proof {
    display: flex;
    gap: 2.5rem;
}

.landing-stat {
    display: flex;
    flex-direction: column;
}

.landing-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.landing-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Phone Visual */
.landing-hero-visual {
    display: flex;
    justify-content: center;
}

.landing-phone {
    width: 280px;
    background: #0a0a14;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.4);
}

.landing-phone-notch {
    width: 100px;
    height: 24px;
    background: #0a0a14;
    border-radius: 0 0 20px 20px;
    margin: 0 auto -12px;
    position: relative;
    z-index: 2;
}

.landing-phone-screen {
    background: #fff;
    border-radius: 28px;
    padding: 2rem 1.25rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-ticket {
    width: 100%;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.landing-ticket-header {
    padding: 1rem;
    background: #f8f8f8;
    border-bottom: 1px dashed #ddd;
}

.landing-ticket-event {
    display: block;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.95rem;
}

.landing-ticket-date {
    font-size: 0.8rem;
    color: #666;
}

.landing-ticket-qr {
    padding: 1.5rem;
    display: flex;
    justify-content: center;
}

.landing-qr-placeholder {
    width: 120px;
    height: 120px;
    color: #1a1a2e;
}

.landing-ticket-footer {
    padding: 1rem;
    background: #f8f8f8;
    border-top: 1px dashed #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-ticket-name {
    font-size: 0.85rem;
    color: #333;
}

.landing-ticket-status {
    font-size: 0.75rem;
    color: #fff;
    background: #4ade80;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    font-weight: 500;
}

/* Section Styling */
.landing-section-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.landing-section-inner h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pico-h2-color);
    text-align: center;
    margin: 0 0 0.5rem;
}

.landing-section-sub {
    text-align: center;
    color: var(--pico-muted-color);
    margin: 0 0 2.5rem;
}

/* Comparison Section */
.landing-comparison {
    padding: 5rem 2rem;
    background: var(--pico-muted-border-color);
}

.landing-comparison-table {
    max-width: 600px;
    margin: 0 auto;
}

.landing-comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: var(--pico-color);
}

.landing-comparison-header {
    font-size: 0.8rem;
    color: var(--pico-muted-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.5rem;
}

.landing-comparison-competitor {
    background: var(--pico-card-background-color);
    margin-bottom: 0.5rem;
    border: 1px solid var(--pico-card-border-color);
}

.landing-comparison-us {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    font-weight: 600;
}

.landing-fee-bad {
    color: #ef4444;
    font-weight: 600;
}

.landing-fee-good {
    color: #4ade80;
}

.landing-comparison-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--pico-muted-color);
    margin-top: 1.5rem;
}

/* Features Section */
.landing-features {
    padding: 5rem 2rem;
    background: var(--pico-background-color);
}

.landing-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.landing-feature {
    text-align: left;
}

.landing-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--pico-primary-focus);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pico-primary);
    margin-bottom: 1rem;
}

.landing-feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--pico-h3-color);
}

.landing-feature p {
    margin: 0;
    color: var(--pico-muted-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* How It Works */
.landing-how {
    padding: 5rem 2rem;
    background: var(--pico-muted-border-color);
}

.landing-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.landing-step {
    text-align: center;
    max-width: 200px;
}

.landing-step-number {
    width: 48px;
    height: 48px;
    background: var(--pico-primary);
    color: var(--pico-primary-inverse);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.landing-step h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--pico-h3-color);
}

.landing-step p {
    margin: 0;
    color: var(--pico-muted-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

.landing-step-arrow {
    color: var(--pico-muted-color);
    padding-top: 0.75rem;
}

/* Use Cases */
.landing-use-cases {
    padding: 5rem 2rem;
    background: var(--pico-background-color);
}

.landing-cases-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.landing-case {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pico-muted-border-color);
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    font-size: 0.95rem;
    color: var(--pico-color);
}

.landing-case-icon {
    font-size: 1.25rem;
}

/* Final CTA */
.landing-final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    text-align: center;
}

.landing-final-cta h2 {
    color: #fff;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.landing-final-cta p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.landing-final-cta .landing-cta {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.landing-final-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 1rem;
}

/* Footer */
.landing-footer {
    padding: 3rem 2rem;
    background: #0a0a14;
}

.landing-footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-footer .landing-logo {
    color: #fff;
    margin-bottom: 0.25rem;
}

.landing-footer-brand p {
    margin: 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.landing-footer-links {
    display: flex;
    gap: 2rem;
}

.landing-footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s;
}

.landing-footer-links a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .landing-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 7rem;
        min-height: auto;
    }

    .landing-hero-content {
        max-width: 100%;
    }

    .landing-hero h1 {
        font-size: 2.5rem;
    }

    .landing-hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .landing-hero-proof {
        justify-content: center;
    }

    .landing-hero-visual {
        order: -1;
    }

    .landing-phone {
        width: 220px;
    }

    .landing-phone-screen {
        min-height: 320px;
    }

    .landing-features-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .landing-feature-icon {
        margin: 0 auto 1rem;
    }

    .landing-steps {
        flex-direction: column;
        align-items: center;
    }

    .landing-step-arrow {
        transform: rotate(90deg);
        padding: 0;
    }

    .landing-footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .landing-nav-links {
        display: none;
    }

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

    .landing-hero-sub {
        font-size: 1rem;
    }

    .landing-hero-proof {
        flex-direction: column;
        gap: 1rem;
    }

    .landing-comparison-row {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .landing-final-cta h2 {
        font-size: 1.75rem;
    }
}

/* Auth */
.auth-form {
    max-width: 400px;
    margin: 4rem auto;
    padding: 2rem;
}

.auth-form h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.oauth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.oauth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.oauth-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* Pass */
.pass-display {
    text-align: center;
}

.pass-qr {
    max-width: 256px;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
}

.pass-id {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--pico-muted-color);
}

.pass-status {
    font-weight: bold;
}

/* Passkey */
.passkey-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.passkey-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.passkey-error {
    color: #ef4444;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}
