@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

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

:root {
    --bg: #0a0a0a;
    --surface: #111;
    --surface2: #1a1a1a;
    --white: #fff;
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --border: #222;
    --text: #e5e5e5;
    --muted: #888;
    --blue: #3b82f6;
    --green: #22c55e;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
}

/* ── HEADER ── */
.header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.h-logo {
    font-size: 1.2em;
    font-weight: 900;
    color: var(--gold);
}

.h-tag {
    font-size: .75em;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ── HERO ── */
.hero {
    background: linear-gradient(160deg, var(--surface) 0%, #1a1000 50%, #292000 100%);
    padding: 88px 40px;
    text-align: center;
    border-bottom: 2px solid rgba(245, 158, 11, .2);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 40%, rgba(245, 158, 11, .06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 840px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.h-badge {
    display: inline-block;
    background: rgba(245, 158, 11, .1);
    border: 1px solid rgba(245, 158, 11, .2);
    color: var(--gold);
    font-size: .7em;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 6px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 2.4em;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero h1 em {
    color: var(--gold-light);
    font-style: normal;
}

.hero p {
    color: var(--muted);
    font-size: 1em;
    max-width: 480px;
    margin: 0 auto 30px;
}

/* ── APPEAL STATS ROW ── */
.appeal-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.as-item {
    padding: 14px 28px;
    border-right: 1px solid var(--border);
    text-align: center;
}

.as-item:last-child {
    border-right: none;
}

.as-icon {
    font-size: 1.8em;
    line-height: 1;
    margin-bottom: 4px;
}

.as-label {
    font-size: .75em;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hero { padding: 60px 20px; }
    .hero h1 { font-size: 1.85em; }
    .appeal-stats { flex-direction: column; align-items: center; }
    .as-item { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ── ANCHOR ZONE ── */
.anchor-zone {
    background: rgba(245, 158, 11, .05);
    border-top: 3px solid var(--gold);
    border-bottom: 1px solid var(--border);
    padding: 22px 40px;
}

.az-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.az-label {
    font-size: .68em;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.anchor-zone p {
    font-size: 1.06em;
    color: var(--text);
    line-height: 1.85;
}

/* ── MAIN ── */
.main {
    max-width: 1060px;
    margin: 0 auto;
    padding: 52px 24px 84px;
}

/* ── APPEAL GRID ── */
.appeal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.agc {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.agc:nth-child(1) { border-top: 3px solid var(--gold); }
.agc:nth-child(2) { border-top: 3px solid var(--blue); }
.agc:nth-child(3) { border-top: 3px solid var(--green); }
.agc:nth-child(4) { border-top: 3px solid #a855f7; }

.agc-icon {
    font-size: 1.9em;
    margin-bottom: 10px;
}

.agc-title {
    font-weight: 800;
    color: #fff;
    font-size: .95em;
    margin-bottom: 6px;
}

.agc-desc {
    font-size: .9em;
    color: var(--muted);
    line-height: 1.65;
}

/* ── PANEL ── */
.panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 42px;
    margin-bottom: 22px;
}

.panel h2 {
    font-size: 1.45em;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
}

.panel h3 {
    font-size: 1.05em;
    font-weight: 700;
    color: var(--gold);
    margin: 22px 0 8px;
}

.panel p {
    font-size: 1.02em;
    color: var(--muted);
    margin-bottom: 14px;
    line-height: 1.8;
    text-align: justify;
}

.panel p.last-para {
    font-style: italic;
    border: 1px solid rgba(245, 158, 11, .2);
    background: rgba(245, 158, 11, .04);
    padding: 14px 18px;
    border-radius: 8px;
    color: var(--text);
}

@media (max-width: 768px) {
    .panel { padding: 22px; }
}

/* ── LINKS ── */
a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(245, 158, 11, .25);
}

a:hover {
    border-color: var(--gold);
}

/* ── FOOTER ── */
footer {
    background: var(--surface);
    border-top: 2px solid rgba(245, 158, 11, .2);
    padding: 26px 24px;
    text-align: center;
}

footer p {
    color: #333;
    font-size: .88em;
}
