/* ── Brand tokens ── */
@font-face {
    font-family: 'Manifold Extended';
    src: url('/fonts/ManifoldExtendedCF-Bold.woff2') format('woff2'),
         url('/fonts/ManifoldExtendedCF-Bold.woff') format('woff');
    font-weight: 700; font-display: swap;
}
@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('/fonts/NeueHaasGroteskDisplayPro-55Roman.woff2') format('woff2');
    font-weight: 400; font-display: swap;
}
@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('/fonts/NeueHaasGroteskDisplayPro-65Medium.woff2') format('woff2');
    font-weight: 500; font-display: swap;
}
@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('/fonts/NeueHaasGroteskDisplayPro-75Bold.woff2') format('woff2');
    font-weight: 700; font-display: swap;
}

:root {
    --bg: #fafaf8;
    --ink: #0a0a0a;
    --ink-dim: #4a4a4a;
    --muted: #6b6f72;
    --line: #e8e6e0;
    --card: #ffffff;
    --volt: #B9D53F;
    --volt-dark: #95ab2f;
    --display: 'Manifold Extended', 'Chakra Petch', 'Inter', sans-serif;
    --body: 'Neue Haas Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    background: var(--bg); color: var(--ink); font-family: var(--body);
    font-size: 16px; line-height: 1.5;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Top nav ── */
.topnav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250,250,248,0.85); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.topnav-inner {
    max-width: 1180px; margin: 0 auto; padding: 14px 24px;
    display: flex; align-items: center; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark {
    width: 36px; height: 36px; border-radius: 9px;
    background: #0a0a0a; display: flex; align-items: center; justify-content: center;
}
.brand-word {
    font-family: var(--display); font-weight: 700;
    letter-spacing: 0.04em; font-size: 17px;
}
.nav-links { display: flex; gap: 28px; flex: 1; justify-content: center; }
.nav-link {
    text-decoration: none; color: var(--ink-dim); font-size: 14px; font-weight: 500;
    transition: color 0.15s;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); }
.nav-cta {
    background: var(--volt); color: #0a0a0a; padding: 9px 18px; border-radius: 999px;
    font-size: 13px; font-weight: 600; text-decoration: none; letter-spacing: 0.01em;
    transition: transform 0.15s, background 0.15s;
}
.nav-cta:hover { background: #c8e34d; transform: translateY(-1px); }
@media (max-width: 800px) {
    .nav-links { display: none; }
    .topnav-inner { gap: 16px; }
}

/* ── Hero ── */
.hero {
    background:
        radial-gradient(ellipse at 70% 20%, rgba(255,180,160,0.40) 0%, rgba(255,180,160,0) 50%),
        radial-gradient(ellipse at 20% 80%, rgba(232,140,90,0.35) 0%, rgba(232,140,90,0) 55%),
        linear-gradient(135deg, #1a0a1d 0%, #4a1530 45%, #8a2f3a 100%);
    color: #fff; padding: 96px 0 84px; position: relative; overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero-eyebrow {
    font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
    font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 32px;
    display: inline-flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--volt); box-shadow: 0 0 0 4px rgba(185,213,63,0.25); }
.hero h1 {
    font-family: var(--display); font-size: clamp(40px, 6vw, 76px);
    font-weight: 700; line-height: 1.04; letter-spacing: -0.025em;
    margin: 0 0 24px; color: #fff;
}
.hero h1 .em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.78); }
.hero-sub {
    font-size: 19px; color: rgba(255,255,255,0.78); line-height: 1.55;
    max-width: 580px; margin: 0 0 40px;
}
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 32px; }
.btn-primary {
    background: var(--volt); color: #0a0a0a; padding: 15px 28px; border-radius: 999px;
    font-weight: 600; font-size: 15px; text-decoration: none; letter-spacing: 0.01em;
    transition: transform 0.15s, background 0.15s;
    display: inline-block;
}
.btn-primary:hover { background: #c8e34d; transform: translateY(-1px); }
.btn-ghost {
    background: rgba(255,255,255,0.08); color: #fff; padding: 15px 24px;
    border: 1px solid rgba(255,255,255,0.18); border-radius: 999px;
    font-weight: 500; font-size: 15px; text-decoration: none;
    transition: background 0.15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }
.hero-trust {
    font-size: 14px; color: rgba(255,255,255,0.55);
    border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px;
    max-width: 480px;
}
.hero-trust strong { color: #fff; font-weight: 600; }
.hero-wedge {
    margin-top: 16px; font-size: 15px; font-style: italic;
    color: var(--volt); font-weight: 500;
}
.hero-wedge strong { color: #fff; font-style: normal; font-weight: 700; }

/* ── Stats strip ── */
.why-now { background: #0a0a0a; color: #fff; padding: 64px 0 72px; }
.why-now-eyebrow {
    font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
    color: rgba(255,255,255,0.55); font-weight: 600; margin-bottom: 32px;
}
.why-now-row {
    display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 32px;
    align-items: flex-start;
}
.why-stat .n { font-family: var(--display); font-size: 56px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; color: #fff; }
.why-stat .n .n-suf { font-size: 0.55em; vertical-align: 0.18em; margin-left: 2px; color: rgba(255,255,255,0.7); }
.why-stat .l { font-size: 13px; letter-spacing: 0.02em; color: rgba(255,255,255,0.62); margin-top: 14px; line-height: 1.5; }
.why-stat .l strong { color: var(--volt); font-weight: 600; }
.why-stat .src {
    margin-top: 10px; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.32); font-weight: 500;
}
@media (max-width: 720px) {
    .why-now-row { grid-template-columns: 1fr 1fr; gap: 28px; }
    .why-stat .n { font-size: 42px; }
}

/* ── Section headers ── */
.section { padding: 96px 0; }
.sec-eyebrow { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 16px; }
.sec-title { font-family: var(--display); font-size: clamp(32px, 4vw, 52px); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 18px; }
.sec-title .em { font-style: italic; font-weight: 400; color: var(--muted); }
.sec-sub { font-size: 18px; color: var(--ink-dim); max-width: 720px; line-height: 1.55; margin: 0; }

/* ── Long-form prose ── */
.prose { max-width: 760px; }
.prose h2 { font-family: var(--display); font-size: clamp(26px, 3vw, 38px); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; margin: 56px 0 18px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--display); font-size: 22px; font-weight: 700; margin: 38px 0 12px; letter-spacing: -0.01em; }
.prose p { font-size: 17px; line-height: 1.62; color: var(--ink-dim); margin: 0 0 18px; }
.prose p strong, .prose li strong { color: var(--ink); }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 22px; }
.prose li { font-size: 17px; line-height: 1.6; color: var(--ink-dim); margin-bottom: 8px; }
.prose blockquote {
    border-left: 3px solid var(--volt); padding: 6px 0 6px 22px; margin: 28px 0;
    font-family: var(--display); font-style: italic; font-size: 22px; line-height: 1.4;
    color: var(--ink);
}
.prose .src-note {
    display: inline-block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted); margin-top: -10px; margin-bottom: 24px;
}

/* ── Four advantages / card grid ── */
.adv-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px;
}
.adv-card {
    background: var(--card); border: 1px solid var(--line); border-radius: 16px;
    padding: 28px;
}
.adv-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(185,213,63,0.14); color: var(--volt-dark);
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.adv-icon svg { width: 22px; height: 22px; }
.adv-title { font-family: var(--display); font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 10px; }
.adv-body { font-size: 14.5px; color: var(--ink-dim); line-height: 1.55; margin: 0; }
@media (max-width: 980px) { .adv-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .adv-grid { grid-template-columns: 1fr; } }

/* ── Lead form ── */
.lead-form {
    display: grid; gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px; padding: 28px;
    backdrop-filter: blur(6px);
}
.lead-form.light {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(20,12,8,0.06);
}
.lead-form-title { font-family: var(--display); font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 4px; color: #fff; }
.lead-form.light .lead-form-title { color: var(--ink); }
.lead-form-sub { font-size: 14px; color: rgba(255,255,255,0.65); margin: 0 0 12px; }
.lead-form.light .lead-form-sub { color: var(--muted); }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px) { .lf-row { grid-template-columns: 1fr; } }
.lead-form input, .lead-form select, .lead-form textarea {
    width: 100%; box-sizing: border-box;
    background: rgba(255,255,255,0.06); color: #fff;
    border: 1px solid rgba(255,255,255,0.16); border-radius: 10px;
    padding: 13px 14px; font-size: 15px; font-family: var(--body);
    transition: border-color 0.15s, background 0.15s;
}
.lead-form.light input, .lead-form.light select, .lead-form.light textarea {
    background: #fafaf8; color: var(--ink); border-color: var(--line);
}
.lead-form input::placeholder { color: rgba(255,255,255,0.4); }
.lead-form.light input::placeholder { color: #a8a8a3; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
    outline: none; border-color: var(--volt); background: rgba(255,255,255,0.1);
}
.lead-form.light input:focus, .lead-form.light select:focus { background: #fff; }
.lead-form button[type="submit"] {
    background: var(--volt); color: #0a0a0a; border: 0;
    padding: 14px 22px; border-radius: 999px;
    font-family: var(--body); font-weight: 600; font-size: 15px;
    letter-spacing: 0.01em; cursor: pointer;
    transition: transform 0.15s, background 0.15s;
}
.lead-form button[type="submit"]:hover { background: #c8e34d; transform: translateY(-1px); }
.lead-form button[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.lead-form .lf-small { font-size: 11px; letter-spacing: 0.04em; color: rgba(255,255,255,0.4); margin-top: 4px; }
.lead-form.light .lf-small { color: var(--muted); }
.lead-form .lf-msg { margin-top: 8px; padding: 12px 14px; border-radius: 10px; font-size: 14px; display: none; }
.lead-form .lf-msg.ok { display: block; background: rgba(185,213,63,0.12); border: 1px solid rgba(185,213,63,0.5); color: #d6ec7a; }
.lead-form.light .lf-msg.ok { background: #f6fce0; border-color: var(--volt-dark); color: #4a5a14; }
.lead-form .lf-msg.err { display: block; background: rgba(232,90,80,0.15); border: 1px solid rgba(232,90,80,0.5); color: #ffb8b0; }
.lead-form.light .lf-msg.err { background: #fdecea; border-color: #e85a50; color: #8a1c14; }

/* ── Slot picker ── */
.slot-picker { margin: 14px 0 6px; min-height: 48px; }
.slot-picker-loading {
    font-size: 13px; color: rgba(255,255,255,0.5); padding: 12px 0;
    letter-spacing: 0.02em;
}
.lead-form.light .slot-picker-loading { color: var(--muted); }
.slot-picker-title {
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    font-weight: 600; color: rgba(255,255,255,0.7); margin: 4px 0 14px;
}
.lead-form.light .slot-picker-title { color: var(--ink); }
.slot-day { margin-bottom: 14px; }
.slot-day-label {
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.55); margin-bottom: 8px; font-weight: 600;
}
.lead-form.light .slot-day-label { color: var(--muted); }
.slot-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px;
}
@media (max-width: 480px) { .slot-grid { grid-template-columns: 1fr 1fr; } }
.slot-btn {
    background: rgba(255,255,255,0.06); color: #fff;
    border: 1px solid rgba(255,255,255,0.18); border-radius: 8px;
    padding: 9px 6px; font-size: 13px; font-family: var(--body);
    cursor: pointer; transition: all 0.15s; text-align: center;
}
.lead-form.light .slot-btn {
    background: #fafaf6; color: var(--ink); border-color: var(--line);
}
.slot-btn:hover {
    border-color: var(--volt);
    background: rgba(185,213,63,0.1);
}
.lead-form.light .slot-btn:hover { background: #f6fce0; }
.slot-btn.selected {
    background: var(--volt); color: #0a0a0a; border-color: var(--volt);
    font-weight: 600;
}
.slot-picker-skip {
    margin-top: 8px; font-size: 12px; color: rgba(255,255,255,0.45);
    letter-spacing: 0.02em;
}
.lead-form.light .slot-picker-skip { color: var(--muted); }
.slot-picker-skip a { color: var(--volt); text-decoration: none; cursor: pointer; }
.lead-form.light .slot-picker-skip a { color: var(--volt-dark); }
.slot-picker-skip a:hover { text-decoration: underline; }

/* ── Demo modal (popup) ── */
.demo-modal {
    position: fixed; inset: 0; z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 24px; box-sizing: border-box;
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease;
}
.demo-modal[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.demo-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(8, 4, 14, 0.72);
    backdrop-filter: blur(8px);
}
.demo-modal-card {
    position: relative; z-index: 2;
    width: 100%; max-width: 560px; max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
    padding: 36px 32px 32px;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.demo-modal[aria-hidden="false"] .demo-modal-card { transform: translateY(0) scale(1); }
.demo-modal-close {
    position: absolute; top: 14px; right: 14px;
    background: rgba(0,0,0,0.04); border: 0;
    width: 36px; height: 36px; border-radius: 50%;
    cursor: pointer; font-size: 18px; color: var(--ink-dim);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s, color 0.15s;
}
.demo-modal-close:hover { background: rgba(0,0,0,0.08); color: var(--ink); }
.demo-modal-header { margin-bottom: 20px; padding-right: 30px; }
.demo-modal-header .sec-eyebrow { margin-bottom: 8px; color: var(--volt-dark); font-weight: 700; }
.demo-modal-header h2 {
    font-family: var(--display); font-size: 32px; font-weight: 700;
    line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 12px;
}
.demo-modal-header h2 .em { font-style: italic; font-weight: 400; color: var(--muted); }
.demo-modal-header p { font-size: 14.5px; color: var(--ink-dim); line-height: 1.5; margin: 0; }
.demo-modal .lead-form {
    background: transparent; border: 0; padding: 0; box-shadow: none;
    backdrop-filter: none;
}
.demo-modal .lead-form-title, .demo-modal .lead-form-sub { display: none; }
@media (max-width: 560px) {
    .demo-modal { padding: 0; align-items: stretch; }
    .demo-modal-card {
        max-width: 100%; max-height: 100vh; height: 100vh;
        border-radius: 0; padding: 56px 22px 28px;
    }
    .demo-modal-close { top: 12px; right: 12px; }
}
body.modal-open { overflow: hidden; }

/* ── Mid-page CTA section ── */
.mid-form-section {
    background: linear-gradient(135deg, #fff 0%, #fdfcf6 100%);
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 72px 0;
}
.mid-form-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 900px) { .mid-form-grid { grid-template-columns: 1fr; gap: 36px; } }
.mid-form-grid h2 {
    font-family: var(--display); font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 16px;
}
.mid-form-grid h2 .em { font-style: italic; font-weight: 400; color: var(--muted); }
.mid-form-grid p { font-size: 16px; color: var(--ink-dim); line-height: 1.55; margin: 0; }

/* ── Sticky CTA ── */
.sticky-cta {
    position: fixed; bottom: 24px; right: 24px;
    background: #0a0a0a; color: #fff; padding: 14px 22px;
    border-radius: 999px; font-family: var(--body); font-weight: 600; font-size: 14px;
    text-decoration: none;
    box-shadow: 0 12px 36px rgba(0,0,0,0.25), 0 0 0 4px rgba(185,213,63,0.18);
    opacity: 0; transform: translateY(20px); pointer-events: none;
    transition: opacity 0.25s, transform 0.25s, background 0.15s;
    z-index: 60;
    display: flex; align-items: center; gap: 8px;
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta:hover { background: #1c1c1c; }
.sticky-cta .dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--volt);
    box-shadow: 0 0 0 4px rgba(185,213,63,0.25);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(185,213,63,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(185,213,63,0); }
}
@media (max-width: 640px) {
    .sticky-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 13px; }
}

/* ── FAQ ── */
.faq-section { background: #fafaf8; padding: 96px 0; border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }
.faq-list { display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px 26px; }
.faq-item summary { cursor: pointer; list-style: none; font-weight: 600; font-size: 17px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--display); font-size: 22px; color: var(--muted); transition: transform 0.2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-a { font-size: 15px; color: var(--ink-dim); line-height: 1.6; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }

/* ── Final CTA ── */
.cta {
    background:
        radial-gradient(ellipse at 80% 30%, rgba(232,140,90,0.45) 0%, rgba(232,140,90,0) 55%),
        linear-gradient(135deg, #1a0a1d 0%, #4a1530 50%, #8a2f3a 100%);
    color: #fff; padding: 96px 0; position: relative; overflow: hidden;
}
.cta-inner { max-width: 760px; }
.cta h2 { font-family: var(--display); font-size: clamp(36px, 5vw, 60px); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 18px; color: #fff; }
.cta h2 .em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.75); }
.cta p { font-size: 17px; color: rgba(255,255,255,0.78); margin: 0 0 32px; max-width: 560px; line-height: 1.55; }
.cta-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ── Footer ── */
.footer { padding: 60px 0 40px; border-top: 1px solid var(--line); background: #fff; }
.footer-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 320px; }
.footer-brand .brand { font-weight: 700; }
.footer-tag { font-size: 14px; color: var(--muted); line-height: 1.5; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
@media (max-width: 700px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); font-weight: 600; margin: 0 0 14px; }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 14px; margin-bottom: 8px; }
.footer-col a:hover { color: var(--ink); }
.footer-small { font-size: 12px; color: var(--muted); margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }

/* ── Trade pills ── */
.trades-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 38px; }
.trade-pill { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; font-size: 14px; font-weight: 500; color: var(--ink-dim); }
.trade-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.trade-pill a { color: inherit; text-decoration: none; }

/* ── Two audiences ── */
.audience-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
.aud-card { padding: 40px; border-radius: 18px; }
.aud-card.dark { background: #0a0a0a; color: #fff; }
.aud-card.light { background: #f3f1e8; }
.aud-eye { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; opacity: 0.6; }
.aud-title { font-family: var(--display); font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 24px; }
.aud-title .em { font-style: italic; font-weight: 400; opacity: 0.75; }
.aud-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.aud-line { font-size: 15px; line-height: 1.55; padding-left: 24px; position: relative; opacity: 0.86; }
.aud-line::before { content: ''; width: 6px; height: 6px; background: var(--volt); border-radius: 50%; position: absolute; left: 0; top: 9px; }
.aud-card.dark .aud-line strong { color: #fff; }
@media (max-width: 900px) { .audience-row { grid-template-columns: 1fr; } }
