/* STUFFED ANIMAL WAR - Landing Page Styles */
/* Separate from stylebase.css to avoid conflicts with app styles */

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

:root {
    --teal: #00d4aa;
    --purple: #a855f7;
    --blue: #58a6ff;
    --dark: #0d1117;
    --dark-secondary: #161b22;
    --dark-border: #30363d;
    --text: #e6edf3;
    --text-muted: #8b949e;
    --red: #ff6b6b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
}

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

/* Navigation */
nav {
    padding: 20px 0;
    border-bottom: 1px solid var(--dark-border);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text);
    text-decoration: none;
}

.logo span {
    color: var(--teal);
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--teal);
    color: var(--dark) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta:hover {
    background: #00b894;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: var(--dark-secondary);
    border: 1px solid var(--teal);
    color: var(--teal);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 .highlight {
    color: var(--teal);
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--teal);
    color: var(--dark);
}

.btn-primary:hover {
    background: #00b894;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--dark-secondary);
    color: var(--text);
    border: 1px solid var(--dark-border);
}

.btn-secondary:hover {
    border-color: var(--teal);
}

/* Section Description - replaces inline styles */
.section-description {
    color: var(--text-muted);
    max-width: 600px;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: var(--dark-secondary);
}

.section-label {
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.problem h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.problem-card {
    background: var(--dark);
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid var(--red);
}

.problem-card .stat {
    font-size: 2rem;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 8px;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Solution Section */
.solution {
    padding: 80px 0;
}

.solution .section-label {
    color: var(--teal);
}

.solution h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.solution-card {
    background: var(--dark-secondary);
    border-radius: 12px;
    padding: 28px;
    border-top: 4px solid var(--teal);
}

.solution-card.purple {
    border-top-color: var(--purple);
}

.solution-card.blue {
    border-top-color: var(--blue);
}

.solution-card .icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.solution-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--dark-secondary);
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 48px;
    text-align: center;
}

.flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.flow-step {
    background: var(--dark);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    width: 160px;
    border-top: 3px solid var(--teal);
}

.flow-step .icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.flow-step .label {
    font-weight: 700;
    color: var(--teal);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.flow-step .desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.flow-arrow {
    color: var(--dark-border);
    font-size: 1.5rem;
}

.guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.guarantee {
    background: var(--dark);
    border: 1px solid #238636;
    border-radius: 8px;
    padding: 16px 20px;
}

.guarantee h4 {
    color: #238636;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

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

/* Pricing */
.pricing {
    padding: 80px 0;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    text-align: center;
}

.pricing .subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 48px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--dark-secondary);
    border-radius: 16px;
    padding: 32px;
    border-top: 4px solid var(--blue);
    text-align: center;
}

.pricing-card.featured {
    border-top-color: var(--teal);
}

.pricing-card .tier {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue);
    margin-bottom: 8px;
}

.pricing-card.featured .tier {
    color: var(--teal);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.pricing-card .hardware {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.pricing-card li {
    padding: 8px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card li::before {
    content: "\2713";
    color: #238636;
    font-weight: bold;
}

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

/* Try It Section */
.try-it {
    padding: 80px 0;
    background: var(--dark-secondary);
    text-align: center;
}

.try-it h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.try-it .subtitle {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.try-it .password-hint {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.try-it .password-hint a {
    color: var(--teal);
    text-decoration: none;
}

.try-it .password-hint a:hover {
    text-decoration: underline;
}

.rooms-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.room-pill {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.room-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.try-it .all-rooms {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
}

.try-it .all-rooms:hover {
    color: var(--teal);
}

/* Footer */
footer {
    padding: 48px 0;
    border-top: 1px solid var(--dark-border);
}

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

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

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

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .nav-links {
        display: none;
    }

    .flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .flow-step {
        width: 100%;
        max-width: 280px;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }
}
