* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --red: #E74C3C;
    --red-dark: #C0392B;
    --yellow: #F1C40F;
    --bg: #0a0604;
    --bg-card: #130c08;
    --text: #fdf6f0;
    --text-muted: #9a8a7e;
}
body {
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(ellipse at top, #1a0c08 0%, var(--bg) 60%);
    background-attachment: fixed;
    color: var(--text);
    min-height: 100vh;
}
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 40px; z-index: 100;
    background: rgba(10, 6, 4, 0.9); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(231, 76, 60, 0.15);
}
.nav-logo { display: flex; gap: 8px; align-items: center; text-decoration: none; color: var(--text-muted); font-size: 13px; font-weight: 500; transition: color 0.2s; }
.nav-logo:hover { color: var(--red); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 13px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--red); }
.nav-cta { padding: 8px 20px; background: var(--red); color: #fff !important; border-radius: 20px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--red-dark) !important; }

.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 120px 40px 80px;
    gap: 60px;
    flex-wrap: wrap;
}
.hero-content { max-width: 560px; }
.hero-badge {
    display: inline-block; padding: 6px 16px;
    background: rgba(231, 76, 60, 0.1); border: 1px solid rgba(231, 76, 60, 0.35);
    border-radius: 20px; font-size: 11px; font-weight: 600; letter-spacing: 2px; color: var(--red); margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(48px, 8vw, 80px); font-weight: 800; color: var(--text);
    margin-bottom: 12px; letter-spacing: -2px;
    text-shadow: 3px 3px 0 rgba(231, 76, 60, 0.3);
}
.hero-tagline { font-size: 20px; color: var(--yellow); font-style: italic; font-weight: 600; margin-bottom: 20px; }
.hero-description { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { display: flex; align-items: center; justify-content: center; }
.deli-sign {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 180px; height: 180px;
    background: var(--red); border-radius: 12px;
    border: 4px solid var(--yellow);
    box-shadow: 0 0 40px rgba(231, 76, 60, 0.4), inset 0 0 30px rgba(0,0,0,0.3);
    transform: rotate(-5deg);
}
.sign-text { font-size: 20px; font-weight: 800; color: var(--yellow); letter-spacing: 1px; text-align: center; }
.sign-sub { font-size: 12px; color: rgba(241, 196, 15, 0.7); letter-spacing: 2px; margin-top: 8px; }

/* Ticker */
.ticker-strip {
    overflow: hidden; padding: 16px 0; border-top: 1px solid rgba(231, 76, 60, 0.15); border-bottom: 1px solid rgba(231, 76, 60, 0.15);
    background: rgba(231, 76, 60, 0.04);
}
.ticker-content { display: flex; gap: 48px; animation: ticker 30s linear infinite; white-space: nowrap; width: max-content; }
.ticker-content span { font-size: 13px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.5px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.btn { padding: 14px 32px; border-radius: 30px; font-size: 15px; font-weight: 700; text-decoration: none; transition: all 0.3s; display: inline-block; cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 24px rgba(231, 76, 60, 0.3); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--text); border: 2px solid rgba(231, 76, 60, 0.4); }
.btn-secondary:hover { border-color: var(--red); color: var(--red); }

.container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.features { padding: 100px 0; }
.section-title { font-size: 36px; font-weight: 800; text-align: center; color: var(--text); margin-bottom: 12px; }
.section-subtitle { text-align: center; color: var(--text-muted); font-size: 16px; margin-bottom: 60px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card { background: var(--bg-card); border: 1px solid rgba(231, 76, 60, 0.12); border-radius: 20px; padding: 32px 24px; transition: all 0.3s; }
.feature-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(231, 76, 60, 0.15); }
.feature-icon { font-size: 36px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.cta-section { padding: 100px 0; }
.cta-card { background: linear-gradient(135deg, #1a0c08 0%, #130c08 100%); border: 1px solid rgba(231, 76, 60, 0.25); border-radius: 28px; padding: 60px 40px; text-align: center; }
.cta-card h2 { font-size: 32px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.cta-card > p { color: var(--text-muted); font-size: 16px; margin-bottom: 32px; line-height: 1.6; }
.waitlist-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.waitlist-input { padding: 14px 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(231, 76, 60, 0.3); border-radius: 30px; color: var(--text); font-family: inherit; font-size: 15px; width: 280px; outline: none; transition: border-color 0.2s; }
.waitlist-input:focus { border-color: var(--red); }
.waitlist-input::placeholder { color: var(--text-muted); }
.cta-disclaimer { font-size: 12px; color: var(--text-muted); opacity: 0.6; }
.footer { padding: 40px 0; border-top: 1px solid rgba(231, 76, 60, 0.08); text-align: center; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { text-decoration: none; color: var(--text-muted); font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }
.footer-copy { font-size: 12px; color: var(--text-muted); opacity: 0.5; }
@media (max-width: 600px) { .navbar { padding: 14px 20px; } .hero { padding: 100px 20px 60px; } .hero-visual { display: none; } }
