:root {
    --bg: #f7f8fa;
    --bg-soft: #ffffff;
    --card: #ffffff;
    --card-2: #fafafa;
    --text: #101828;
    --muted: #667085;
    --line: #eaecf0;
    --primary: #111827;
    --primary-2: #0b1220;
    --success: #067647;
    --danger: #b42318;
    --warning: #b54708;
    --white: #ffffff;
    --shadow: 0 10px 25px rgba(16,24,40,.06);
    --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: baseline; gap: 2px; font-weight: 900; letter-spacing: -.04em; font-size: 22px; white-space: nowrap; }
.brand-mark { color: var(--primary); }
.brand small { margin-left: 8px; padding: 2px 7px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 18px; font-size: 14px; font-weight: 700; }
.nav a { color: #475467; }
.nav a:hover { color: var(--text); }
.nav .nav-cta { padding: 9px 14px; border-radius: 10px; background: var(--primary); color: #fff; }
.nav-toggle { display: none; background: transparent; color: var(--text); border: 1px solid var(--line); border-radius: 10px; padding: 7px 10px; font-size: 20px; }
.hero { padding: 84px 0 54px; background: radial-gradient(circle at 80% 10%, rgba(17,24,39,.07), transparent 34%), radial-gradient(circle at 20% 0, rgba(102,112,133,.06), transparent 28%); }
.hero-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 48px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 7px; color: #344054; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; }
h1, h2, h3 { line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(40px, 6vw, 72px); letter-spacing: -.055em; margin-bottom: 20px; }
h2 { font-size: clamp(28px, 4vw, 44px); letter-spacing: -.035em; margin-bottom: 14px; }
h3 { font-size: 20px; letter-spacing: -.02em; }
.lead { max-width: 720px; color: #475467; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 10px 16px; border: 1px solid transparent; border-radius: 11px; font-weight: 800; cursor: pointer; font: inherit; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-2); }
.btn-secondary { background: transparent; border-color: var(--line); color: var(--text); }
.btn-secondary:hover { background: var(--card); }
.btn-danger { background: var(--danger); color: #200208; }
.btn-small { min-height: 34px; padding: 6px 10px; font-size: 13px; }
.hero-card, .card, .form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-card { padding: 26px; }
.stat-big { font-size: 38px; font-weight: 900; letter-spacing: -.04em; }
.muted { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 11px; }
.check-list li { position: relative; padding-left: 27px; color: #344054; }
.check-list li:before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.section { padding: 70px 0; }
.section-soft { background: #ffffff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: 30px; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card { padding: 22px; }
.card p:last-child { margin-bottom: 0; }
.icon-badge { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: #f2f4f7; border: 1px solid var(--line); margin-bottom: 15px; }
.page-head { padding: 42px 0 20px; }
.page-head p { color: var(--muted); margin-top: -4px; }
.form-wrap { max-width: 620px; margin: 0 auto; padding: 22px 0 70px; }
.form-card { padding: 26px; }
.form-group { margin-bottom: 17px; }
label { display: block; font-size: 13px; font-weight: 800; color: #344054; margin-bottom: 7px; }
input, select, textarea { width: 100%; border: 1px solid #d0d5dd; background: #fff; color: var(--text); border-radius: 10px; min-height: 44px; padding: 10px 12px; outline: none; font: inherit; }
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(17,24,39,.08); }
.help { color: var(--muted); font-size: 12px; margin-top: 6px; }
.form-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.flash-stack { padding-top: 18px; }
.flash { border-radius: 11px; padding: 12px 14px; border: 1px solid var(--line); margin-bottom: 8px; }
.flash-success { background: #ecfdf3; border-color: #abefc6; color: #067647; }
.flash-error { background: #fef3f2; border-color: #fecdca; color: #b42318; }
.flash-info { background: #eff8ff; border-color: #b2ddff; color: #175cd3; }
.dashboard { padding: 30px 0 70px; }
.dashboard-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.kpi { padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--card); }
.kpi strong { display: block; font-size: 24px; margin-top: 4px; }
.platform-card { position: relative; overflow: hidden; }
.platform-name { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 16px; }
.platform-pill { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; border: 1px solid var(--line); border-radius: 999px; padding: 4px 8px; color: var(--muted); }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 16px 0; }
.metric { background: #fafafa; border: 1px solid rgba(157,176,200,.14); border-radius: 10px; padding: 10px; }
.metric span { display: block; color: var(--muted); font-size: 11px; }
.metric strong { font-size: 15px; }
.notice { padding: 16px; background: #fffaeb; border: 1px solid #fedf89; border-radius: 12px; color: #93370d; }
.notice strong { color: #7a2e0e; }
.badges { display: flex; flex-wrap: wrap; gap: 6px; }
.badge { display: inline-flex; padding: 4px 8px; border: 1px solid var(--line); border-radius: 999px; color: #475467; font-size: 11px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
.checkbox-item { display: flex; gap: 8px; align-items: center; padding: 9px 10px; border: 1px solid var(--line); border-radius: 10px; background: #fafafa; }
.checkbox-item input { width: auto; min-height: auto; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
table { width: 100%; border-collapse: collapse; min-width: 860px; background: var(--card); }
th, td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: #475467; background: #fafafa; }
td { font-size: 14px; }
tr:last-child td { border-bottom: 0; }
.filters { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 10px; align-items: end; margin-bottom: 18px; }
.pagination { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.pagination a, .pagination span { min-width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 9px; }
.pagination .active { background: var(--primary); color: #fff; border-color: var(--primary); font-weight: 900; }
.cta-strip { padding: 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; background: linear-gradient(90deg, #ffffff, #f9fafb); border: 1px solid var(--line); border-radius: var(--radius); }
.status-active { color: #067647; }
.status-suspended { color: #b42318; }
/* VIPBUZZER footer - same style used on the main site and /buzzer_app */
.footer { margin-top: 14px; padding-bottom: 20px; }
.footerInner {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
}
.footerCredit { color: var(--muted); white-space: nowrap; }
.footerCredit a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px dotted #98a2b3;
}
.footerCredit a:hover { color: var(--primary); border-bottom-color: var(--primary); }
.footerNav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0;
}
.footerNav a {
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    padding: 2px 10px;
    border-bottom: none !important;
    transition: color .15s ease;
}
.footerNav a:hover { color: var(--text); }
.footerNav a + a { border-left: 1px solid var(--line); }
.empty { text-align: center; padding: 30px; color: var(--muted); }
hr { border: 0; border-top: 1px solid var(--line); margin: 22px 0; }
@media (max-width: 900px) {
    .hero-grid, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
    .hero-grid { grid-template-columns: 1fr; }
    .filters { grid-template-columns: 1fr 1fr; }
    .nav-toggle { display: block; }
    .nav { display: none; position: absolute; left: 16px; right: 16px; top: 67px; padding: 14px; flex-direction: column; align-items: stretch; background: #ffffff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
    .nav.nav-open { display: flex; }
    .nav a { padding: 8px 6px; }
}
@media (max-width: 640px) {
    .container { width: min(100% - 22px, 1160px); }
    .hero { padding-top: 54px; }
    .grid-2, .grid-3, .grid-4, .filters, .checkbox-grid { grid-template-columns: 1fr; }
    .metrics { grid-template-columns: 1fr; }
    .dashboard-top, .cta-strip { align-items: stretch; flex-direction: column; }
    .form-card { padding: 20px; }
    h1 { font-size: 42px; }
}

@media (max-width: 700px) {
    .footerInner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 16px;
    }
    .footerCredit { white-space: normal; }
    .footerNav { justify-content: flex-start; margin-left: -10px; }
}
