/* TCG Price Radar - Minimal Styles */

:root {
    --bg: #0a0a0f;
    --surface: #12121a;
    --surface-hover: #1a1a25;
    --text: #e8e8ec;
    --text-muted: #888899;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --success: #22c55e;
    --warning: #f59e0b;
    --border: #272735;
}

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

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

/* Header */
header {
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

.tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Hero */
.hero {
    text-align: center;
    padding: 4rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Waitlist Form */
.waitlist-cta form,
.waitlist-section form {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    background: var(--surface);
    color: var(--text);
    font-size: 1rem;
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
}

button {
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background: var(--accent-hover);
}

.privacy {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* Featured Cards */
.featured {
    padding: 3rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.verified .badge {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
}

.high-upside .badge {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.platform {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.pricing {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
}

.baseline {
    text-decoration: line-through;
    color: var(--text-muted);
}

.savings {
    background: var(--success);
    color: var(--bg);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* How it Works */
.how-it-works {
    padding: 3rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
}

.number {
    width: 3rem;
    height: 3rem;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

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

/* Waitlist Section */
.waitlist-section {
    text-align: center;
    padding: 4rem 1.5rem;
    background: var(--surface);
    margin-top: 3rem;
}

.waitlist-section h2 {
    margin-bottom: 1rem;
}

.waitlist-section p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 640px) {
    .hero {
        padding: 3rem 1rem;
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
    
    .pricing {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Missing classes */
.legitimacy { color: var(--text-muted); }
.seller { color: var(--text-muted); }
.neutral-note {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.transparency-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 1rem 0 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
