/* ============================================================
   StaffNet NG, narrative landing
   Editorial + product. Light, considered, paced.
   ============================================================ */
:root {
    /* warm neutral palette, restraint over loud */
    --bg: #fbfaf7;
    --bg-cream: #f5f1e8;
    --bg-deep: #11100e;
    --bg-deep-2: #1c1a17;

    --ink: #16140f;
    --ink-soft: #2a2620;
    --muted: #6b665d;
    --faint: #9b958a;
    --line: #e7e3da;
    --line-strong: #d5cfc1;

    --brand: #e6213a;
    --brand-deep: #b51827;
    --brand-soft: rgba(230, 33, 58, 0.08);
    --brand-ring: rgba(230, 33, 58, 0.16);

    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;

    --naija-green: #008751;
    --naija-green-soft: rgba(0, 135, 81, 0.10);

    --gold: #c08a3e;

    --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px -10px rgba(0, 0, 0, 0.08);
    --shadow-lift: 0 30px 60px -24px rgba(0, 0, 0, 0.22), 0 12px 24px -10px rgba(0, 0, 0, 0.10);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --container: 1180px;
    --container-tight: 880px;

    --font-display: 'Syne', 'Inter', system-ui, sans-serif;
    --font-serif:   'Instrument Serif', 'Times New Roman', serif;
    --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
em { font-style: italic; }

/* ============================================================
   Layout
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   Reading progress
   ============================================================ */
.progress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 2px;
    z-index: 60;
    pointer-events: none;
}
.progress__bar {
    display: block;
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-deep) 100%);
    transition: width 0.12s linear;
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
    position: sticky; top: 0;
    z-index: 50;
    background: rgba(251, 250, 247, 0.84);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(251, 250, 247, 0.94); }

.nav__row {
    display: flex; align-items: center; gap: 24px;
    height: 68px;
}
.nav__brand {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-display);
    font-weight: 700; font-size: 17px;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.nav__logo { width: 28px; height: 28px; }
.nav__links {
    display: none;
    margin-left: auto;
    gap: 32px;
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}
.nav__links a { transition: color 0.15s ease; }
.nav__links a:hover { color: var(--ink); }
.nav .btn { margin-left: auto; }

@media (min-width: 920px) {
    .nav__links { display: inline-flex; align-items: center; }
    .nav .btn { margin-left: 0; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    padding: 13px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.12s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-strong);
}
.btn--ghost:hover { background: rgba(0,0,0,0.04); border-color: var(--ink-soft); }

.btn--soft {
    background: var(--bg-cream);
    color: var(--ink);
}
.btn--soft:hover { background: #ece7d8; }

.btn--primary {
    background: var(--whatsapp);
    color: #ffffff;
    box-shadow: 0 12px 24px -10px rgba(37, 211, 102, 0.45);
}
.btn--primary:hover { background: var(--whatsapp-dark); }

.btn--sm  { padding: 9px 14px; font-size: 13.5px; }
.btn--lg  { padding: 15px 24px; font-size: 16px; }
.btn--giant {
    padding: 22px 30px;
    font-size: 18px;
    gap: 16px;
    border-radius: 24px;
    box-shadow: 0 20px 44px -14px rgba(37, 211, 102, 0.55), 0 6px 16px rgba(0,0,0,0.10);
}
.btn--giant:hover { transform: translateY(-2px); }

.btn__icon { display: inline-flex; align-items: center; }
.btn__arrow { font-size: 16px; transform: translateY(1px); }
.btn__wa-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.22);
    display: inline-flex; align-items: center; justify-content: center;
}
.btn__giant-label { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1.15; }
.btn__giant-label small {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.78);
    letter-spacing: 0.02em;
}

/* ============================================================
   Editorial shared bits
   ============================================================ */
.act__num {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 16px;
}
.act__num--light { color: rgba(255,255,255,0.55); }

.lede {
    font-family: var(--font-body);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.45;
    color: var(--ink-soft);
    margin: 0 0 28px;
    letter-spacing: -0.005em;
}

.pullquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(24px, 3.4vw, 36px);
    line-height: 1.3;
    color: var(--ink);
    padding-left: 28px;
    border-left: 2px solid var(--brand);
    margin: 32px 0;
    letter-spacing: -0.01em;
}
.pullquote--quiet { border-color: var(--line-strong); color: var(--muted); }
.pullquote--quiet em { color: var(--ink); font-style: italic; font-family: var(--font-serif); font-size: 70%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(60% 50% at 20% 0%, var(--brand-soft) 0%, transparent 60%),
        radial-gradient(50% 50% at 90% 30%, var(--naija-green-soft) 0%, transparent 60%);
}
.hero__inner {
    max-width: var(--container-tight);
    margin: 0 auto;
    text-align: center;
}
.hero__kicker {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body);
    font-size: 12.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-soft);
    padding: 8px 14px;
    border-radius: 999px;
    margin: 0 0 32px;
}
.hero__pulse {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 0 var(--brand-ring);
    animation: pulse 1.6s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 var(--brand-ring); }
    70% { box-shadow: 0 0 0 10px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(40px, 7vw, 84px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 0 0 28px;
    color: var(--ink);
}
.hero__title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--brand);
    letter-spacing: -0.02em;
}

.hero__lede {
    font-family: var(--font-body);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 660px;
    margin: 0 auto 40px;
    letter-spacing: -0.005em;
}

.hero__cta {
    display: inline-flex; flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 56px;
}

.hero__signature {
    display: flex; align-items: center; justify-content: center;
    gap: 16px;
    color: var(--faint);
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.hero__signature .rule {
    flex: 0 0 60px;
    height: 1px;
    background: var(--line-strong);
}

/* ============================================================
   ACT, story scene
   ============================================================ */
.act {
    padding: 140px 0;
    border-top: 1px solid var(--line);
}
.act__inner {
    max-width: var(--container-tight);
    margin: 0 auto;
}
.act__head { margin-bottom: 56px; }
.act__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0;
    color: var(--ink);
}
.act__title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--brand);
}
.act__body p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0 0 20px;
    max-width: 640px;
}
.act__body p:first-of-type {
    font-family: var(--font-body);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
    color: var(--ink);
}

/* ============================================================
   WAHALA, moments grid
   ============================================================ */
.wahala {
    background: var(--bg-cream);
    padding: 140px 0;
}
.wahala__head {
    max-width: var(--container-tight);
    margin: 0 auto 80px;
}

.moments {
    list-style: none;
    margin: 0; padding: 0;
    display: flex; flex-direction: column;
    gap: 96px;
}
.moment {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 880px) {
    .moment { grid-template-columns: 130px 1fr 1fr; gap: 56px; }
    .moment:nth-child(even) { grid-template-columns: 1fr 1fr 130px; }
    .moment:nth-child(even) .moment__time   { grid-column: 3 / 4; grid-row: 1; }
    .moment:nth-child(even) .moment__body   { grid-column: 2 / 3; grid-row: 1; text-align: right; }
    .moment:nth-child(even) .moment__visual { grid-column: 1 / 2; grid-row: 1; }
    .moment:nth-child(even) .moment__body p { margin-left: auto; }
}
.moment__time {
    display: flex; flex-direction: column;
    gap: 4px;
}
.moment__hour {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 500;
    color: var(--brand);
    letter-spacing: -0.02em;
    line-height: 1;
}
.moment__label {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}
.moment__body h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(22px, 2.6vw, 28px);
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 0 0 12px;
}
.moment__body p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    max-width: 460px;
}
.moments--after .moment__hour { color: var(--naija-green); }

/* ============================================================
   PRODUCT / SCENE MOCKS
   ============================================================ */
.mock {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lift);
    overflow: hidden;
    border: 1px solid var(--line);
}

/* Excel mock */
.mock--excel { padding: 0; }
.mock__bar {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 14px;
    background: #f6f3ea;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--muted);
}
.mock__bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.mock__bar .dot--r { background: #ff5f57; }
.mock__bar .dot--y { background: #f4be4f; }
.mock__bar .dot--g { background: #27c93f; }
.mock__title { margin-left: auto; }

.excel { font-family: var(--font-mono); font-size: 12.5px; }
.excel__row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    border-bottom: 1px solid var(--line);
    position: relative;
}
.excel__row > span {
    padding: 8px 12px;
    border-right: 1px solid var(--line);
    color: var(--ink-soft);
}
.excel__row--head > span {
    background: #f6f3ea;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    font-size: 10.5px;
    letter-spacing: 0.06em;
}
.excel__row--ghost { background: rgba(230, 33, 58, 0.04); }
.excel__row--ghost > span { color: var(--brand); }
.excel__row--err { background: rgba(230, 33, 58, 0.08); }
.excel__row--err > span { color: var(--brand-deep); font-weight: 600; }
.excel__row > em {
    position: absolute;
    right: 6px; top: 50%;
    transform: translateY(-50%);
    background: var(--brand);
    color: white;
    font-style: normal;
    font-size: 9.5px;
    padding: 3px 7px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
}

/* Note-paper mock */
.note { position: relative; height: 280px; }
.note__paper {
    position: absolute;
    background: #fdfaf0;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.note__paper:nth-child(1) {
    top: 30px; left: 24px; width: 80%; height: 78%;
    transform: rotate(-2deg);
}
.note__paper:nth-child(2) {
    top: 20px; left: 16px; width: 84%; height: 82%;
    transform: rotate(1.5deg);
    background: #fcf6e7;
}
.note__paper--top {
    top: 12px; left: 8px; right: 8px;
    width: auto; min-height: 90%;
    transform: rotate(-0.5deg);
    padding: 18px 22px;
    font-family: 'Courier New', var(--font-mono);
    color: var(--ink);
    background: #fffdf3;
}
.note__paper--top strong {
    display: block;
    font-family: var(--font-display);
    font-size: 15px;
    margin-bottom: 14px;
    color: var(--brand-deep);
}
.note__line {
    display: flex; justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #d8d0b8;
    font-size: 13.5px;
}
.note__line--strike span:last-child {
    color: var(--brand);
    font-weight: 700;
}
.note__line--scrawl {
    margin-top: 8px;
    border-bottom: none;
    color: var(--brand-deep);
    font-style: italic;
    font-size: 12px;
    transform: rotate(-2deg);
}

/* Reception ledger */
.ledger { padding: 22px; font-family: 'Courier New', var(--font-mono); background: #fdfaf0; }
.ledger__head {
    font-family: var(--font-display);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
    margin-bottom: 12px;
}
.ledger__row {
    display: flex; justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #d8d0b8;
    font-size: 14px;
    color: var(--ink-soft);
}
.ledger__row--orphan { color: var(--brand); }
.ledger__name { font-style: italic; }
.ledger__time { font-family: var(--font-mono); font-size: 12.5px; }

/* WhatsApp-ish chat mock */
.mock--chat { padding: 0; background: #ebe7df; }
.chat {
    padding: 14px;
    display: flex; flex-direction: column;
    gap: 10px;
    min-height: 280px;
}
.chat__head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 12px 12px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink);
    font-size: 13px;
}
.chat__count {
    background: #25d366;
    color: white;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 700;
    font-family: var(--font-body);
}
.chat__msg {
    background: white;
    border-radius: 10px;
    padding: 10px 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 6px 10px;
    align-items: baseline;
    max-width: 92%;
}
.chat__msg:nth-child(odd) { margin-right: auto; }
.chat__msg:nth-child(even) { margin-left: auto; background: #e0f8d1; }
.chat__name {
    font-weight: 600;
    color: var(--brand-deep);
    font-size: 11.5px;
    grid-column: 1 / 2;
}
.chat__text {
    color: var(--ink-soft);
    font-size: 13px;
    grid-column: 1 / 3;
}
.chat__msg .chat__name + .chat__text { grid-column: 1 / 3; }
.chat__time {
    font-size: 10px;
    color: var(--faint);
    grid-column: 3 / 4;
    grid-row: 1 / span 2;
    align-self: end;
    font-family: var(--font-mono);
}
.chat__msg--missing { background: rgba(230,33,58,0.06); border: 1px dashed var(--brand-ring); }
.chat__msg--missing .chat__text { color: var(--brand); font-style: italic; }

/* Sticky notes, asset chaos */
.mock--stickies {
    background: #ede6d0;
    padding: 24px 22px;
    min-height: 280px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    border: 1px solid var(--line-strong);
}
.sticky {
    padding: 14px;
    font-family: 'Caveat', 'Comic Sans MS', cursive;
    font-size: 15px;
    color: var(--ink);
    box-shadow: 0 2px 4px rgba(0,0,0,0.08), 0 6px 12px rgba(0,0,0,0.05);
    border-radius: 2px;
    line-height: 1.35;
    position: relative;
}
.sticky em {
    color: var(--brand);
    font-style: italic;
    font-family: var(--font-serif);
    font-size: 15px;
}
.sticky small {
    display: block;
    font-size: 11px;
    color: var(--muted);
    font-family: var(--font-mono);
    margin-top: 2px;
}
.sticky--yellow { background: #fff7a8; transform: rotate(-3deg); }
.sticky--pink   { background: #ffd1e2; transform: rotate(2deg); }
.sticky--blue   { background: #cfe6ff; transform: rotate(-1.5deg); }
.sticky--green  { background: #d3f4cb; transform: rotate(2.5deg); }

/* App chrome (dashboard) */
.mock--app { padding: 0; background: var(--bg-deep); }
.appchrome {
    display: grid;
    grid-template-columns: 130px 1fr;
    min-height: 360px;
    background: #fafafa;
}
.appchrome--compact { grid-template-columns: 1fr; min-height: 280px; }
.appchrome__side {
    background: var(--bg-deep);
    color: rgba(255,255,255,0.7);
    padding: 16px 12px;
    display: flex; flex-direction: column;
    gap: 4px;
}
.appchrome__logo {
    background: var(--brand);
    color: white;
    width: 28px; height: 28px;
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 14px;
}
.appchrome__item {
    font-size: 11.5px;
    padding: 6px 10px;
    border-radius: 6px;
    color: rgba(255,255,255,0.55);
}
.appchrome__item--active { background: rgba(255,255,255,0.08); color: white; }
.appchrome__main { padding: 18px 22px; }
.appchrome__bar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 18px;
    font-size: 12.5px;
}
.appchrome__hello { font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.appchrome__time { color: var(--muted); font-family: var(--font-mono); font-size: 11px; }

.kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}
.kpi {
    background: white;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex; flex-direction: column; gap: 2px;
}
.kpi__lab { font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); font-weight: 600; }
.kpi__val { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.kpi__val small { font-size: 11px; color: var(--muted); font-weight: 500; }
.kpi__hint { font-size: 10px; color: var(--naija-green); font-weight: 500; }

.chart {
    background: white;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
}
.chart__bars {
    display: flex; align-items: flex-end;
    gap: 6px;
    height: 70px;
    margin-bottom: 8px;
}
.chart__bars span {
    flex: 1;
    background: linear-gradient(180deg, var(--brand), var(--brand-deep));
    border-radius: 4px;
    height: var(--h);
    min-height: 18%;
}
.chart__label { font-size: 10.5px; color: var(--faint); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

.payroll { padding: 4px 0; }
.payroll__row {
    display: flex; justify-content: space-between;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
}
.payroll__row strong { color: var(--ink); font-family: var(--font-mono); font-weight: 500; }
.payroll__row--total { border-bottom: none; padding-top: 12px; font-weight: 700; font-size: 14.5px; color: var(--ink); }
.payroll__row--total strong { font-family: var(--font-display); color: var(--naija-green); font-size: 16px; }
.approve-row { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; }
.payroll__pill {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--naija-green);
    background: var(--naija-green-soft);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600;
}
.approve-btn {
    background: var(--ink);
    color: white;
    border: none;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}
.status {
    display: inline-flex;
    padding: 4px 10px;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    border-radius: 999px;
}
.status--ok { background: var(--naija-green-soft); color: var(--naija-green); }

/* Daily reports rollup */
.reports { display: flex; flex-direction: column; }
.report-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}
.report-row:last-child { border-bottom: none; }
.report-row__avatar {
    width: 32px; height: 32px;
    border-radius: 9px;
    display: inline-flex; align-items: center; justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
}
.report-row__avatar--a { background: var(--brand); }
.report-row__avatar--b { background: var(--naija-green); }
.report-row__avatar--c { background: var(--gold); }
.report-row__body { min-width: 0; }
.score {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    padding: 4px 10px;
    border-radius: 8px;
    letter-spacing: -0.02em;
}
.score--high { background: var(--naija-green-soft); color: var(--naija-green); }
.score--mid  { background: rgba(192, 138, 62, 0.14); color: var(--gold); }
.score--low  { background: var(--brand-soft); color: var(--brand); }

/* Asset lifecycle */
.mock--asset { padding: 0; }
.asset {
    background: white;
    padding: 18px 22px;
}
.asset__head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 14px;
}
.asset__icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--bg-cream);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.timeline { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; position: relative; }
.timeline::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 6px;
    bottom: 6px;
    width: 1.5px;
    background: var(--line);
}
.timeline li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    position: relative;
}
.timeline__dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--line-strong);
    margin-top: 2px;
    z-index: 1;
}
.timeline__dot--live {
    background: var(--naija-green);
    border-color: var(--naija-green);
    box-shadow: 0 0 0 4px var(--naija-green-soft);
}

/* Phone mock */
.mock--phone { background: transparent; box-shadow: none; border: none; padding: 0; display: flex; justify-content: center; }
.phone {
    width: 260px;
    background: var(--bg-deep);
    border-radius: 32px;
    padding: 12px;
    box-shadow: var(--shadow-lift);
    position: relative;
}
.phone--narrow { width: 240px; }
.phone__notch {
    position: absolute;
    top: 16px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 18px;
    background: #000;
    border-radius: 10px;
    z-index: 2;
}
.phone__screen {
    background: linear-gradient(180deg, #fafafa, white);
    border-radius: 22px;
    padding: 42px 12px 14px;
    min-height: 380px;
    display: flex; flex-direction: column;
    gap: 10px;
}
.phone__row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}
.phone__bell {
    background: var(--brand); color: white;
    width: 18px; height: 18px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 9.5px; font-weight: 700;
}
.phone__card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex; gap: 10px; align-items: center;
}
.phone__card--clockin { background: var(--naija-green-soft); border-color: rgba(0,135,81,0.25); }
.phone__icon {
    width: 32px; height: 32px;
    border-radius: 9px;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 12px; color: white;
    flex-shrink: 0;
}
.phone__icon--success { background: var(--naija-green); }
.phone__line { display: block; font-size: 11.5px; color: var(--muted); }
.phone__line--strong { color: var(--ink); font-weight: 600; }
.phone__line--meta { font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); font-weight: 600; }
.phone__line--big { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.phone__line--big small { font-size: 12px; color: var(--muted); font-weight: 500; }
.phone__line--muted { color: var(--faint); }
.phone__line--xs { font-size: 10.5px; }

.alert {
    border-radius: 14px;
    padding: 14px;
    background: linear-gradient(180deg, #fff, var(--brand-soft));
    border: 1px solid var(--brand-ring);
    box-shadow: 0 0 0 4px rgba(230, 33, 58, 0.05);
}
.alert__head {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-body);
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand);
    font-weight: 700;
    margin-bottom: 12px;
}
.alert__dot {
    width: 7px; height: 7px;
    background: var(--brand);
    border-radius: 50%;
    box-shadow: 0 0 0 0 var(--brand-ring);
    animation: pulse 1.6s infinite;
}
.alert__body { display: flex; align-items: center; gap: 10px; }
.alert__avatar {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--brand);
    color: white;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
}
.alert__cta {
    text-align: right;
    color: var(--brand);
    font-size: 11.5px;
    font-weight: 600;
    margin-top: 10px;
}

/* ============================================================
   COST
   ============================================================ */
.cost {
    background: var(--bg-deep);
    color: white;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}
.cost::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(60% 60% at 20% 30%, rgba(230, 33, 58, 0.12) 0%, transparent 60%),
        radial-gradient(50% 50% at 90% 80%, rgba(0, 135, 81, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.cost__inner {
    position: relative;
    max-width: var(--container-tight);
    margin: 0 auto;
}
.cost__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 32px;
    color: white;
}
.cost__title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}
.cost .lede { color: rgba(255,255,255,0.78); }
.cost__numbers {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin: 56px 0;
}
.costcard {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex; flex-direction: column; gap: 10px;
}
.costcard__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 56px;
    line-height: 1;
    color: var(--gold);
    letter-spacing: -0.03em;
}
.costcard__num sup {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    font-style: italic;
    vertical-align: super;
    margin-left: 4px;
}
.costcard__label {
    color: rgba(255,255,255,0.72);
    font-size: 14.5px;
    line-height: 1.5;
}
.costcard__label em { color: white; font-style: italic; }
.cost__bridge {
    font-family: var(--font-body);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.5;
    color: rgba(255,255,255,0.88);
    max-width: 640px;
    margin: 0;
    letter-spacing: -0.005em;
}

/* ============================================================
   TURN
   ============================================================ */
.turn {
    padding: 140px 0;
    background: var(--bg);
}
.turn__head {
    max-width: var(--container-tight);
    margin: 0 auto 72px;
}
.turn__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 5.2vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 28px;
    color: var(--ink);
}
.brand-mark {
    color: var(--brand);
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.02em;
}
.turn__split {
    display: grid;
    gap: 56px;
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 880px) {
    .turn__split { grid-template-columns: 0.9fr 1.1fr; }
}
.turn__copy h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0 0 14px;
    font-weight: 700;
}
.turn__copy p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   NOW
   ============================================================ */
.now {
    padding: 140px 0;
    background: var(--bg-cream);
    border-top: 1px solid var(--line);
}
.now__head { max-width: var(--container-tight); margin: 0 auto 80px; }
.now__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 18px;
}
.now__close {
    max-width: var(--container-tight);
    margin: 96px auto 0;
    text-align: center;
}

/* ============================================================
   KIT
   ============================================================ */
.kit { padding: 140px 0; }
.kit__head { max-width: var(--container-tight); margin: 0 auto 64px; text-align: center; }
.kit__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 18px;
}
.kit__grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
@media (min-width: 720px) { .kit__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .kit__grid { grid-template-columns: repeat(3, 1fr); } }
.kit__item {
    padding: 36px 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 0.15s ease;
}
.kit__item:hover { background: var(--bg-cream); }
.kit__num {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--brand);
    margin-bottom: 18px;
}
.kit__item h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 10px;
    color: var(--ink);
}
.kit__item p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
.kit__more {
    text-align: center;
    margin: 56px auto 0;
    max-width: 720px;
    color: var(--faint);
    font-family: var(--font-body);
    font-style: italic;
    font-size: 16.5px;
    line-height: 1.6;
}
.kit__count {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--brand);
    font-style: italic;
}

/* Editorial module index, categorised */
.index {
    max-width: var(--container);
    margin: 0 auto;
}
.index__row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    padding: 56px 0;
    border-top: 1px solid var(--line);
    align-items: start;
}
.index__row:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 880px) {
    .index__row { grid-template-columns: 140px 1fr; gap: 64px; }
}
.index__num {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 0.12em;
    color: var(--brand);
    padding-top: 6px;
}
.index__body h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 3.4vw, 38px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: var(--ink);
}
.index__lede {
    font-family: var(--font-body);
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.45;
    color: var(--ink-soft);
    margin: 0 0 24px;
    letter-spacing: -0.005em;
    max-width: 560px;
}
.index__mods {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}
@media (min-width: 720px) {
    .index__mods { grid-template-columns: 1fr 1fr; gap: 14px 32px; }
}
.index__mods li {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    position: relative;
    padding-left: 18px;
}
.index__mods li::before {
    content: "·";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.45;
}
.index__mods li strong {
    color: var(--ink);
    font-weight: 600;
    font-family: var(--font-body);
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
    padding: 140px 0;
    background: var(--bg-deep);
    color: white;
}
.manifesto__inner {
    max-width: var(--container-tight);
    margin: 0 auto;
    text-align: center;
}
.manifesto__intro {
    font-family: var(--font-body);
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin: 0 0 20px;
}
.manifesto__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 5.6vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 32px;
    color: white;
}
.manifesto__title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}
.manifesto__body {
    font-family: var(--font-body);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.5;
    color: rgba(255,255,255,0.82);
    max-width: 720px;
    margin: 0 auto 20px;
    letter-spacing: -0.005em;
}
.manifesto__pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: left;
}
.pillar {
    display: flex; align-items: center; gap: 14px;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    font-weight: 500;
}
.pillar__num {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold);
    font-size: 14px;
}

/* ============================================================
   INVITE
   ============================================================ */
.invite {
    padding: 140px 0 160px;
    background:
        radial-gradient(60% 60% at 50% 0%, var(--brand-soft) 0%, transparent 60%),
        var(--bg);
    text-align: center;
}
.invite__inner {
    max-width: var(--container-tight);
    margin: 0 auto;
}
.invite__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(38px, 6.2vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 16px 0 28px;
    color: var(--ink);
}
.invite__title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--brand);
}
.invite__lede {
    font-family: var(--font-body);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 580px;
    margin: 0 auto 48px;
}
.invite__ps {
    margin-top: 32px;
    color: var(--muted);
    font-style: italic;
    font-family: var(--font-body);
    font-size: 16px;
    max-width: 540px;
    margin-left: auto; margin-right: auto;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    padding: 140px 0;
    background: var(--bg-cream);
    border-top: 1px solid var(--line);
}
.faq__layout {
    display: grid;
    gap: 56px;
    grid-template-columns: 1fr;
}
@media (min-width: 960px) {
    .faq__layout { grid-template-columns: 0.85fr 1.15fr; gap: 96px; }
}
.faq__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(30px, 4.5vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin: 16px 0 18px;
}
.faq__list { display: flex; flex-direction: column; }
.faq__item {
    border-bottom: 1px solid var(--line-strong);
    padding: 22px 0;
}
.faq__item:first-child { border-top: 1px solid var(--line-strong); }
.faq__item summary {
    list-style: none;
    font-weight: 600;
    font-size: 17px;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    padding: 4px 0;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: "+";
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--faint);
    line-height: 1;
}
.faq__item[open] summary::after { content: "−"; color: var(--brand); }
.faq__item p {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.65;
    margin: 14px 0 0;
    max-width: 640px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-deep);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 32px;
}
.footer__row {
    display: grid;
    gap: 56px;
    grid-template-columns: 1fr;
    margin-bottom: 56px;
}
@media (min-width: 760px) {
    .footer__row { grid-template-columns: 1.4fr 1fr; }
}
.footer__brand .nav__brand { color: white; }
.footer__brand p {
    margin: 16px 0 0;
    max-width: 340px;
    font-size: 14.5px;
    color: rgba(255,255,255,0.6);
}
.footer__cols {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.footer__cols h4 {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    margin: 0 0 16px;
}
.footer__cols a {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 14.5px;
    padding: 6px 0;
    transition: color 0.15s ease;
}
.footer__cols a:hover { color: white; }
.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.42);
}
.footer__pidgin {
    font-family: var(--font-body);
    font-style: italic;
    margin: 0;
}
.footer__attrib {
    color: rgba(255,255,255,0.72);
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding-bottom: 1px;
    transition: color 0.15s ease, border-color 0.15s ease;
}
.footer__attrib:hover { color: white; border-bottom-color: rgba(255,255,255,0.45); }

/* ============================================================
   Floating WhatsApp
   ============================================================ */
.float-cta {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 58px; height: 58px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 16px 32px -8px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0,0,0,0.12);
    z-index: 40;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.float-cta:hover { transform: translateY(-2px) scale(1.05); background: var(--whatsapp-dark); }

/* ============================================================
   Reveals
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   Mobile refinements (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
    /* Prevent any accidental horizontal scroll from rotations/shadows */
    html, body { overflow-x: hidden; }

    /* Tighter container padding on small screens */
    .container { padding: 0 18px; }

    /* All sections: drop 140px → 80px to reclaim vertical real estate */
    .hero { padding: 64px 0 80px; }
    .act,
    .wahala,
    .cost,
    .turn,
    .now,
    .kit,
    .manifesto,
    .invite,
    .faq { padding: 80px 0; }

    /* Hero */
    .hero__lede { margin-bottom: 28px; }
    .hero__cta { margin-bottom: 40px; gap: 10px; }
    .hero__signature .rule { flex-basis: 28px; }
    .hero__signature { font-size: 10px; gap: 10px; }

    /* Section heads: less bottom margin */
    .act__head,
    .wahala__head,
    .turn__head,
    .now__head,
    .kit__head,
    .faq__head { margin-bottom: 40px; }

    /* Moments: tighter rhythm, smaller hour, body cleared after visual */
    .moments { gap: 56px; }
    .moment__hour { font-size: 22px; }
    .moment__label { font-size: 10.5px; }
    .moment__body h3 { font-size: 21px; line-height: 1.2; }
    .moment__visual { width: 100%; overflow: hidden; }

    /* Visual mocks: keep them inside the container at all times */
    .mock { max-width: 100%; }

    /* Excel mock: smaller text, allow flexible cells */
    .excel { font-size: 11px; }
    .excel__row > span { padding: 7px 8px; }
    .excel__row > em { font-size: 9px; padding: 2px 5px; }

    /* Note paper: shrink height + tighter padding */
    .note { height: 240px; }
    .note__paper--top { padding: 14px 16px; }
    .note__line { font-size: 12.5px; padding: 5px 0; }

    /* Phone mock: fit any screen */
    .phone,
    .phone--narrow { width: 100%; max-width: 260px; }
    .phone__screen { min-height: 320px; }

    /* Dashboard mock: shrink sidebar and KPIs */
    .appchrome { grid-template-columns: 56px 1fr; min-height: 300px; }
    /* The compact variant doesn't have a sidebar in markup — make sure the
       generic .appchrome mobile rule above doesn't bring it back. */
    .appchrome--compact { grid-template-columns: 1fr; min-height: 240px; }
    .appchrome__side { padding: 12px 6px; }
    .appchrome__logo { width: 24px; height: 24px; font-size: 10px; margin-bottom: 10px; }
    .appchrome__item { font-size: 10px; padding: 4px 6px; }
    .appchrome__main { padding: 14px 14px; }
    .kpis { grid-template-columns: 1fr 1fr; }
    .kpis > .kpi:nth-child(3) { grid-column: 1 / -1; }
    .kpi__val { font-size: 17px; }
    .chart__bars { height: 56px; }

    /* WhatsApp-style chat mock */
    .chat { padding: 10px; gap: 8px; min-height: 260px; }
    .chat__head { font-size: 12px; padding: 6px 8px 10px; }
    .chat__msg { padding: 8px 10px; max-width: 95%; }
    .chat__text { font-size: 12.5px; }

    /* Sticky notes: tighter padding */
    .mock--stickies { padding: 18px 16px; gap: 12px; }
    .sticky { padding: 10px; font-size: 13.5px; }
    .sticky small { font-size: 10px; }

    /* Daily reports row: avatar smaller, score smaller, name+score share top row */
    .report-row {
        grid-template-columns: auto 1fr auto;
        gap: 8px 10px;
        padding: 12px 0;
    }
    .report-row__avatar { width: 28px; height: 28px; font-size: 10px; grid-row: 1 / span 2; align-self: start; }
    .report-row__body { grid-column: 2 / 3; }
    .report-row__body .phone__line--strong { font-size: 12.5px; }
    .report-row__body .phone__line--muted   { font-size: 11.5px; line-height: 1.4; }
    .score { font-size: 15px; padding: 2px 7px; grid-column: 3 / 4; grid-row: 1 / 2; align-self: start; }

    /* Asset card */
    .asset { padding: 14px 16px; }
    .asset__head {
        grid-template-columns: auto 1fr;
        gap: 10px;
        row-gap: 8px;
    }
    .asset__head .status { grid-column: 1 / -1; justify-self: start; }
    .asset__icon { width: 36px; height: 36px; font-size: 18px; }
    .timeline { gap: 12px; }

    /* Payroll mock */
    .payroll__row { font-size: 12px; }
    .payroll__row--total { font-size: 13px; }
    .approve-row { flex-wrap: wrap; gap: 8px; }
    .approve-btn { padding: 7px 12px; font-size: 11.5px; }
    .payroll__pill { font-size: 9.5px; padding: 5px 8px; }

    /* Visitor alert mock */
    .alert { padding: 12px; }
    .alert__head { font-size: 9px; margin-bottom: 10px; }
    .alert__avatar { width: 32px; height: 32px; font-size: 11px; }

    /* Cost: more compact numbers */
    .cost__numbers { gap: 12px; margin: 40px 0; }
    .costcard { padding: 22px; }
    .costcard__num { font-size: 44px; }
    .cost__bridge { font-size: 18px; }

    /* Turn: more breathing room between copy and visual */
    .turn__split { gap: 36px; }

    /* Editorial index, compact columns, single column for module list */
    .index__row { padding: 36px 0; gap: 16px; grid-template-columns: 56px 1fr; }
    .index__num { padding-top: 4px; font-size: 12px; }
    .index__body h3 { font-size: 24px; }
    .index__lede { font-size: 17px; margin-bottom: 20px; }
    .index__mods { gap: 12px; grid-template-columns: 1fr; }
    .index__mods li { font-size: 14px; }

    /* Manifesto: stack pillars one per row */
    .manifesto__pillars {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 40px;
        padding-top: 28px;
    }
    .pillar__num { width: 36px; height: 36px; font-size: 12px; }

    /* Big CTA button: keep it bold but tighter; hide the small subline label */
    .btn--giant { padding: 18px 22px; gap: 12px; font-size: 16px; border-radius: 20px; }
    .btn__wa-icon { width: 38px; height: 38px; }
    .btn__giant-label small { display: none; }

    /* Invite ps line */
    .invite__ps { font-size: 15.5px; }

    /* FAQ: tighter */
    .faq__layout { gap: 32px; }
    .faq__item summary { font-size: 16px; gap: 14px; }
    .faq__item summary::after { font-size: 22px; }

    /* Footer: stack and tighten */
    .footer { padding: 56px 0 24px; }
    .footer__row { gap: 36px; margin-bottom: 36px; }
    .footer__cols { grid-template-columns: 1fr; gap: 24px; }
    .footer__bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

    /* Floating WhatsApp: slightly smaller, more breathing room from edge */
    .float-cta { width: 52px; height: 52px; bottom: 16px; right: 16px; }

    /* Nav: tap-target-friendly button, shorter row. Keep brand text visible. */
    .nav__row { height: 60px; gap: 10px; }
    .nav__brand { gap: 8px; font-size: 16px; }
    .nav__brand img { width: 24px; height: 24px; }
}

/* Mid-range tablets, keep moment grid usable */
@media (min-width: 641px) and (max-width: 879px) {
    .container { padding: 0 24px; }
    .moments { gap: 72px; }
    .appchrome { grid-template-columns: 110px 1fr; }
    .kpis { grid-template-columns: 1fr 1fr; }
}
