/* --- Global Styles --- */
:root {
    --bg-dark: #0a0a0c;
    --bg-card: #121318;
    --bg-card-hover: #1a1c23;
    --primary: #f97316; /* Warm Chipotle-inspired orange accent */
    --primary-hover: #ea580c;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border: #27272a;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #5865F2; /* Discord Color */
    color: #fff;
}

.btn-secondary:hover {
    background-color: #4752C4;
    transform: translateY(-1px);
}

.btn-outline {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-main);
}

.btn-outline:hover {
    background: #1f2028;
    border-color: #3f3f46;
}

.full-width {
    width: 100%;
}

/* --- Navigation --- */
.navbar {
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(12px);
    z-index: 100;
}

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

.brand-logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

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

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

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
}

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

/* --- Hero Section --- */
.hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.hero-container {
    max-width: 750px;
}

.badge {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}

.gradient-text {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero p strong {
    color: var(--text-main);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Features Grid --- */
.features {
    padding: 3rem 0;
}

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

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 12px;
    transition: border-color 0.2s;
}

.card:hover {
    border-color: #3f3f46;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

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

/* --- Pricing Section --- */
.pricing {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
}

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

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.05) 0%, var(--bg-card) 100%);
}

.featured-tag {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

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

.price {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-list li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Rewards Banner --- */
.rewards {
    padding: 2rem 0 5rem;
}

.rewards-box {
    background: linear-gradient(135deg, #1e1b2e 0%, #121318 100%);
    border: 1px solid #312e81;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

.rewards-content {
    max-width: 600px;
    margin: 0 auto;
}

.rewards-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.rewards-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* --- Footer --- */
footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
    background: #070708;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

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

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

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

.footer-bottom {
    text-align: center;
    color: #52525b;
    font-size: 0.8rem;
    border-top: 1px solid #18181b;
    padding-top: 1.5rem;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    .nav-links {
        display: none;
    }
}
