:root {
    --bg: #ffffff;
    --surface: #fafafa;
    --border: #f0f0f0;
    --text-main: #111111;
    --text-sub: #666666;
    --accent: #111111;
    --radius: 16px;
}

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

body { 
    font-family: 'Inter', -apple-system, sans-serif; 
    background: var(--bg); 
    color: var(--text-main); 
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 720px; margin: 0 auto; padding: 0 20px; }

/* NAVIGATION */
nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

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

.logo { 
    font-weight: 700; font-size: 1.1rem; letter-spacing: -0.5px; 
    text-decoration: none; color: var(--text-main); 
}

.btn-primary {
    background: var(--accent); color: white;
    padding: 8px 16px; border-radius: 100px;
    text-decoration: none; font-size: 0.85rem; font-weight: 500;
    transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.8; }

/* HERO SECTION */
.hero {
    margin: 32px 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background: #e0f2fe; color: #0369a1;
    padding: 4px 12px; border-radius: 100px;
    font-size: 0.75rem; font-weight: 600;
    margin-bottom: 12px;
}

.hero h1 { 
    font-size: 1.8rem; font-weight: 700; letter-spacing: -1px; 
    margin-bottom: 8px; 
}

.hero p { color: var(--text-sub); margin-bottom: 20px; }

.hero-btn {
    display: inline-block;
    border: 1px solid var(--border);
    padding: 10px 20px; border-radius: 100px;
    text-decoration: none; color: var(--text-main);
    font-weight: 500; font-size: 0.9rem;
    background: white;
    transition: all 0.2s;
}

.hero-btn:hover { background: var(--accent); color: white; border-color: var(--accent); }

/* FILTERS */
.filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
}

.filter-pill {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: white;
    font-size: 0.85rem;
    color: var(--text-sub);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    min-height: 44px;
}

.filter-pill.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.filter-pill:hover:not(.active) { background: var(--surface); }

/* GRID LAYOUT */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 600px) {
    .grid { grid-template-columns: 1fr 1fr; }
}

.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    border-color: #d0d0d0;
}

.card-header { display: flex; justify-content: space-between; margin-bottom: 8px; }

.category { 
    font-size: 0.75rem; font-weight: 600; color: var(--text-sub); 
    text-transform: uppercase; letter-spacing: 0.5px; 
}

.card-title { 
    font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; 
    letter-spacing: -0.5px; 
}

.card-desc { 
    font-size: 0.9rem; color: var(--text-sub); 
    line-height: 1.4; margin-bottom: 12px; 
}

.card-meta { font-size: 0.85rem; font-weight: 500; }

/* FOOTER */
footer {
    margin-top: 64px; padding: 40px 0;
    border-top: 1px solid var(--border);
    text-align: center; color: var(--text-sub);
    font-size: 0.85rem;
}

footer a { color: var(--text-main); text-decoration: none; font-weight: 500; }

.lead-cta {
    display: block; margin: 16px auto; padding: 12px 24px;
    background: var(--accent); color: white;
    border-radius: 100px; text-decoration: none;
    font-weight: 500; width: fit-content;
    transition: opacity 0.2s;
}

.lead-cta:hover { opacity: 0.9; }

/* DEALS PAGE */
.header-section { padding: 40px 0 20px; }
.header-section h1 { 
    font-size: 2rem; font-weight: 700; letter-spacing: -1px; 
    margin-bottom: 8px; 
}
.header-section p { color: var(--text-sub); }

.deal-item {
    display: flex; gap: 20px; padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.deal-date {
    min-width: 60px; text-align: center;
    display: flex; flex-direction: column; justify-content: center;
}

.month { 
    font-size: 0.75rem; font-weight: 700; color: #e11d48; 
    text-transform: uppercase; 
}

.day { font-size: 1.5rem; font-weight: 700; line-height: 1; }

.deal-content { flex: 1; }
.deal-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.biz-name { font-size: 0.9rem; color: var(--text-sub); margin-bottom: 8px; }
.deal-desc { font-size: 0.9rem; color: var(--text-sub); margin-bottom: 12px; }

.claim-btn {
    display: inline-block; padding: 8px 16px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 100px; text-decoration: none; color: var(--text-main);
    font-size: 0.85rem; font-weight: 500; transition: all 0.2s;
}

.claim-btn:hover { background: var(--accent); color: white; border-color: var(--accent); }

/* FORM STYLES */
body:has(.form-card) {
    display: flex; align-items: center; justify-content: center; 
    min-height: 100vh; padding: 20px; background: var(--surface);
}

.form-card {
    background: white; width: 100%; max-width: 480px;
    padding: 40px; border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.form-header { text-align: center; margin-bottom: 32px; }
.form-header h1 { 
    font-size: 1.5rem; font-weight: 700; letter-spacing: -0.5px; 
    margin-bottom: 8px; 
}
.form-header p { font-size: 0.9rem; color: var(--text-sub); }

.input-group { margin-bottom: 16px; }

label { 
    display: block; font-size: 0.85rem; font-weight: 600; 
    margin-bottom: 6px; 
}

input, select, textarea {
    width: 100%; padding: 12px;
    border: 1px solid var(--border); border-radius: 8px;
    font-size: 0.95rem; font-family: inherit;
    transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus { 
    outline: none; border-color: var(--accent); 
}

.submit-btn {
    width: 100%; padding: 14px;
    background: var(--accent); color: white;
    border: none; border-radius: 8px;
    font-size: 1rem; font-weight: 600; cursor: pointer;
    margin-top: 24px;
    transition: opacity 0.2s;
}

.submit-btn:hover { opacity: 0.9; }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.back-link { 
    display: block; text-align: center; margin-top: 20px; 
    font-size: 0.85rem; color: var(--text-sub); 
    text-decoration: none; 
}

.back-link:hover { color: var(--text-main); }

/* PRIVACY PAGE */
.privacy-content h1 { 
    font-size: 1.5rem; margin-bottom: 20px; letter-spacing: -0.5px; 
}
.privacy-content h2 { 
    font-size: 1.1rem; margin-top: 24px; margin-bottom: 12px; 
}
.privacy-content p { margin-bottom: 16px; font-size: 0.95rem; }