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

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

:root {
    --bg: #fafaf9;
    --white: #fff;
    --dark: #1c1917;
    --rose: #e11d48;
    --rl: #fb7185;
    --rp: #fff1f2;
    --border: #fecdd3;
    --text: #1c1917;
    --muted: #6b7280;
    --amber: #d97706;
    --teal: #0d9488;
    --blue: #1d4ed8;
}

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

/* ── EDITORIAL HEADER ── */
.ed-hdr {
    background: var(--dark);
    padding: 0;
}

.edh-top {
    padding: 12px 44px;
    border-bottom: 1px solid #2a1800;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.edh-logo {
    font-size: 1.4em;
    font-weight: 900;
    color: var(--rl);
    letter-spacing: -1px;
}

.edh-meta {
    font-size: .7em;
    color: #555;
    font-weight: 500;
}

.edh-nav {
    padding: 8px 44px;
    display: flex;
    gap: 24px;
}

.edh-nav a {
    color: #555;
    font-size: .75em;
    font-weight: 600;
    text-decoration: none;
    border: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.edh-nav a.active {
    color: var(--rl);
}

/* ── FEATURE HERO ── */
.feature-hero {
    background: linear-gradient(150deg, var(--dark) 0%, #450a0a 55%, var(--rose) 100%);
    padding: 72px 44px;
    border-bottom: 3px solid var(--rl);
    position: relative;
    overflow: hidden;
}

.feature-hero::before {
    content: '⚡';
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18em;
    opacity: .04;
}

.fh-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.fhil-cat {
    display: inline-block;
    background: var(--rl);
    color: var(--dark);
    font-size: .68em;
    font-weight: 800;
    padding: 4px 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.fhi-left h1 {
    font-size: 2.2em;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
}

.fhi-left h1 em {
    color: #fda4af;
    font-style: normal;
}

.fhi-left p {
    color: rgba(255, 255, 255, .42);
    font-size: .97em;
    max-width: 400px;
}

.fhi-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fhr-item {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.fhri-icon {
    font-size: 1.5em;
    flex-shrink: 0;
}

.fhri-title {
    font-weight: 800;
    color: #fff;
    font-size: .92em;
    margin-bottom: 2px;
}

.fhri-desc {
    font-size: .82em;
    color: rgba(255, 255, 255, .45);
}

@media (max-width: 768px) {
    .fh-inner { grid-template-columns: 1fr; }
    .feature-hero { padding: 52px 24px; }
    .fhi-left h1 { font-size: 1.8em; }
}

/* ── ANCHOR ROW ── */
.anchor-row {
    background: var(--rp);
    border-left: 5px solid var(--rose);
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    padding: 22px 44px;
}

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

.ar-tag {
    font-size: .65em;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 8px;
}

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

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

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

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

.eg:nth-child(1) { border-top: 3px solid var(--rose); }
.eg:nth-child(2) { border-top: 3px solid var(--teal); }
.eg:nth-child(3) { border-top: 3px solid var(--amber); }
.eg:nth-child(4) { border-top: 3px solid var(--blue); }

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

.eg-title {
    font-weight: 800;
    color: var(--dark);
    font-size: .95em;
    margin-bottom: 6px;
}

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

/* ── PROSE PANEL ── */
.prose {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 44px;
}

.prose h2 {
    font-size: 1.45em;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 16px;
}

.prose h3 {
    font-size: 1.02em;
    font-weight: 700;
    color: var(--rose);
    margin: 22px 0 8px;
}

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

.prose p.lp {
    font-style: italic;
    background: var(--rp);
    border-left: 4px solid var(--rose);
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
    color: var(--text);
}

@media (max-width: 768px) {
    .prose { padding: 24px; }
}

/* ── LINKS ── */
a {
    color: var(--rose);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(225, 29, 72, .25);
}

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

/* ── FOOTER ── */
footer {
    background: var(--dark);
    border-top: 3px solid var(--rl);
    padding: 22px 44px;
    text-align: center;
}

footer p {
    color: #3a0015;
    font-size: .85em;
}
