/* ═══════════════════════════════════════════════════════════════
   AI BUSINESS FACTS — Homepage "below the fold"  ·  v2
   Reference aesthetic: tryprofound.com — editorial, restrained,
   monochrome with hairline structure. Colour lives in the DATA only
   (score bars, status), never in decoration. No radial glows, no
   gradient headlines, no tinted icon chips.
   Loaded AFTER the inline <style> so it wins the cascade.
   ═══════════════════════════════════════════════════════════════ */

:root {
    --el-line:  rgba(255,255,255,.08);
    --el-line-2: rgba(255,255,255,.14);
    --el-panel: rgba(255,255,255,.018);
    --el-panel-2: rgba(255,255,255,.04);
    --el-ink:   #f3f4f7;
    --el-dim:   rgba(238,240,246,.45);
    --el-mid:   rgba(238,240,246,.66);
    --el-r:     14px;
    --el-violet: #c084fc;
    --el-teal:   #2dd4bf;
    --el-blue:   #60a5fa;
    --el-amber:  #fbbf24;
}
[data-theme="light"] {
    --el-line:  rgba(15,23,42,.10);
    --el-line-2: rgba(15,23,42,.18);
    --el-panel: rgba(15,23,42,.012);
    --el-panel-2: rgba(15,23,42,.035);
    --el-ink:   #0b0d12;
    --el-dim:   rgba(15,23,42,.5);
    --el-mid:   rgba(15,23,42,.68);
}

/* neutralise the global mouse-follow glow on our editorial cards */
.el-step.glow-card::after,
.el-tile.glow-card::after,
.el-pcard.glow-card::after { display: none !important; }

/* ─────────────────────────────────────────────
   Section scaffold
   ───────────────────────────────────────────── */
.el-section { position: relative; padding: 120px 28px; }
.el-section.pt0 { padding-top: 0; }
.el-wrap { max-width: 1180px; margin: 0 auto; position: relative; }
.el-wrap.narrow { max-width: 1000px; }

/* kill the old decorative washes if the classes linger */
.el-glow-top::before, .el-glow-indigo::before { content: none !important; }

.el-head { max-width: 760px; margin: 0 0 60px; }
.el-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.el-head.tight { margin-bottom: 44px; }

/* mono eyebrow — the "// LIVE DEMO" treatment, used everywhere */
.el-eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--font-mono);
    font-size: 11.5px; font-weight: 500; letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--el-mid);
    margin-bottom: 26px;
}
.el-eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green); box-shadow: 0 0 9px 1px rgba(34,197,94,.6);
}
.el-eyebrow.bar::before {
    content: ''; width: 22px; height: 1px; background: var(--el-line-2);
}

.el-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(32px, 4.6vw, 52px);
    line-height: 1.02; letter-spacing: -2px;
    color: var(--el-ink);
    margin-bottom: 20px;
    text-wrap: balance;
}
.el-title em { font-style: normal; color: var(--el-mid); }  /* editorial emphasis, not a gradient */
.el-sub {
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--el-dim); line-height: 1.6;
    max-width: 620px;
    text-wrap: pretty;
}
.el-head.center .el-sub { margin-left: auto; margin-right: auto; }

/* full-bleed hairline that opens a section */
.el-rule { height: 1px; background: var(--el-line); max-width: 1180px; margin: 0 auto; }

/* ─────────────────────────────────────────────
   1 · HOW IT WORKS  →  numbered editorial row
   ───────────────────────────────────────────── */
.el-pipe {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--el-line);
    border-radius: var(--el-r);
    overflow: hidden;
    background: var(--el-panel);
}
.el-step {
    position: relative;
    padding: 36px 34px 38px;
    border-right: 1px solid var(--el-line);
    transition: background .3s;
}
.el-step:last-child { border-right: none; }
.el-step:hover { background: var(--el-panel-2); }
.el-node {
    width: 40px; height: 40px; margin-bottom: 26px;
    border-radius: 9px;
    display: grid; place-items: center;
    border: 1px solid var(--el-line-2);
    color: var(--el-ink);
    background: transparent;
}
.el-node svg { width: 19px; height: 19px; }
.el-step-k {
    position: absolute; top: 34px; right: 30px;
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px;
    color: var(--el-dim);
}
.el-step h4 { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -.4px; margin-bottom: 10px; color: var(--el-ink); }
.el-step p { font-size: 14px; color: var(--el-dim); line-height: 1.6; max-width: 30ch; }

/* ─────────────────────────────────────────────
   2 · PLATFORM  →  bento (flat, hairline, monochrome icons)
   ───────────────────────────────────────────── */
.el-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.el-tile {
    position: relative; overflow: hidden;
    background: var(--el-panel);
    border: 1px solid var(--el-line);
    border-radius: var(--el-r);
    padding: 28px 26px;
    transition: border-color .3s, background .3s;
}
.el-tile:hover { border-color: var(--el-line-2); background: var(--el-panel-2); }
.el-tile.span2 { grid-column: span 2; }
.el-tile.span3 { grid-column: span 3; }
.el-tile.span6 { grid-column: span 6; }

.el-tile-ic {
    width: 38px; height: 38px; border-radius: 9px;
    display: grid; place-items: center; margin-bottom: 18px;
    border: 1px solid var(--el-line-2);
    color: var(--el-ink);
    background: transparent;
}
.el-tile-ic svg { width: 18px; height: 18px; }

.el-tag {
    font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--el-dim); margin-bottom: 11px;
}
.el-tile h4 { font-family: var(--font-display); font-size: 16.5px; font-weight: 600; letter-spacing: -.3px; margin-bottom: 9px; color: var(--el-ink); }
.el-tile p  { font-size: 13.5px; color: var(--el-dim); line-height: 1.6; }

.el-tile.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; padding: 30px; }

/* mock: executive-summary document */
.el-mock {
    border: 1px solid var(--el-line); border-radius: 11px;
    background: var(--bg); padding: 15px;
}
.el-doc-row { display: flex; align-items: center; gap: 9px; margin-bottom: 11px; }
.el-doc-row:last-child { margin-bottom: 0; }
.el-doc-pill {
    font-family: var(--font-mono); font-size: 9px; font-weight: 600;
    letter-spacing: .6px; text-transform: uppercase;
    padding: 3px 7px; border-radius: 4px; flex-shrink: 0;
    border: 1px solid transparent;
}
.el-doc-pill.have    { color: #4ade80; border-color: rgba(34,197,94,.3); }
.el-doc-pill.missing { color: #f87171; border-color: rgba(239,68,68,.3); }
.el-doc-pill.path    { color: var(--el-mid); border-color: var(--el-line-2); }
.el-doc-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.el-doc-line { height: 6px; border-radius: 2px; background: var(--el-panel-2); }
.el-doc-line.s { width: 58%; }

/* mock: structured-data feed */
.el-feed {
    font-family: var(--font-mono); font-size: 11px; line-height: 1.75;
    border: 1px solid var(--el-line); border-radius: 11px;
    background: var(--bg); padding: 15px 16px; color: var(--el-mid);
}
.el-feed .k { color: var(--el-blue); opacity: .85; }
.el-feed .v { color: #6ee7b7; opacity: .9; }
.el-feed .brace { color: var(--el-dim); }
.el-feed-targets { display: flex; gap: 9px; margin-top: 13px; padding-top: 12px; border-top: 1px solid var(--el-line); }
.el-ai-dot { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-mono); font-size: 9.5px; color: var(--el-dim); }
.el-ai-dot i { width: 6px; height: 6px; border-radius: 50%; }

/* monitoring strip */
.el-tile.strip { display: grid; grid-template-columns: 1fr 1.3fr; gap: 30px; align-items: center; padding: 30px; }
.el-timeline { display: flex; align-items: center; gap: 0; }
.el-tl-node { display: flex; flex-direction: column; align-items: center; gap: 9px; flex-shrink: 0; }
.el-tl-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--bg); border: 1.5px solid var(--el-line-2); }
.el-tl-node.on .el-tl-dot { border-color: var(--green); background: var(--green); }
.el-tl-node.delta .el-tl-dot { border-color: var(--el-amber); background: var(--el-amber); }
.el-tl-cap { font-family: var(--font-mono); font-size: 9.5px; color: var(--el-dim); white-space: nowrap; }
.el-tl-seg { flex: 1; height: 1px; background: var(--el-line-2); min-width: 26px; }

/* ─────────────────────────────────────────────
   3 · LIVE DEMO  →  app-window mockup  (kept; the liked section)
   ───────────────────────────────────────────── */
.el-window {
    border: 1px solid var(--el-line);
    border-radius: 16px;
    background: var(--el-panel);
    box-shadow: 0 30px 80px -40px rgba(0,0,0,.8);
    overflow: hidden;
}
[data-theme="light"] .el-window { box-shadow: 0 30px 70px -40px rgba(15,23,42,.25); background: #fff; }
.el-winbar {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--el-line);
}
.el-traffic { display: flex; gap: 7px; }
.el-traffic i { width: 11px; height: 11px; border-radius: 50%; }
.el-traffic i:nth-child(1){ background:#ff5f57; } .el-traffic i:nth-child(2){ background:#febc2e; } .el-traffic i:nth-child(3){ background:#28c840; }
.el-wintitle { font-family: var(--font-mono); font-size: 11.5px; color: var(--el-dim); }
.el-wintitle b { color: var(--el-mid); font-weight: 500; }
.el-live {
    margin-left: auto;
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--font-mono); font-size: 10px; font-weight: 600;
    letter-spacing: .8px; text-transform: uppercase; color: var(--green);
    padding: 4px 11px; border-radius: 100px;
    border: 1px solid rgba(34,197,94,.22);
}
.el-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: elPulse 1.6s ease-in-out infinite; }
@keyframes elPulse { 0%,100%{opacity:1; transform:scale(1);} 50%{opacity:.4; transform:scale(1.4);} }

.el-demo-grid { display: grid; grid-template-columns: 1.15fr .85fr; }
.el-demo-left  { padding: 28px 30px; border-right: 1px solid var(--el-line); }
.el-demo-right { padding: 28px 28px; }

.el-srctabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.el-srctab {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12px; font-weight: 500; color: var(--el-dim);
    padding: 7px 13px; border-radius: 8px;
    border: 1px solid var(--el-line); background: transparent;
    transition: all .25s;
}
.el-srctab i { width: 7px; height: 7px; border-radius: 50%; }
.el-srctab[data-src-tab="chatgpt"]    i { background:#10a37f; }
.el-srctab[data-src-tab="gemini"]     i { background:#4285f4; }
.el-srctab[data-src-tab="claude"]     i { background:#d97757; }
.el-srctab[data-src-tab="perplexity"] i { background:#20b8cd; }
.el-srctab.active { color: var(--el-ink); border-color: var(--el-line-2); background: var(--el-panel-2); }

.el-qrow { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 18px; }
.el-q-ava {
    width: 26px; height: 26px; flex-shrink: 0; border-radius: 7px;
    display: grid; place-items: center; font-size: 12px; font-family: var(--font-mono);
    border: 1px solid var(--el-line-2); color: var(--el-mid);
}
.el-q-bubble { font-size: 14.5px; font-weight: 600; color: var(--el-ink); line-height: 1.5; letter-spacing: -.2px; }
.el-q-meta { font-family: var(--font-mono); font-size: 10px; color: var(--el-dim); margin-bottom: 6px; letter-spacing: .8px; }

.el-answer-wrap { display: flex; align-items: flex-start; gap: 11px; }
.el-a-ava {
    width: 26px; height: 26px; flex-shrink: 0; border-radius: 7px;
    display: grid; place-items: center;
    border: 1px solid rgba(34,197,94,.28); color: var(--green);
}
.el-a-ava svg { width: 13px; height: 13px; }

.el-demo-left .ai-answer {
    font-family: var(--font-mono); font-size: 13.5px; line-height: 1.75;
    color: var(--el-mid); min-height: 116px; flex: 1;
}
.el-demo-left .ai-answer .wrong { color: var(--red); text-decoration: line-through; opacity: .65; }
.el-demo-left .ai-answer .right { color: var(--green); font-weight: 600; }
.el-demo-left .ai-answer .typing-caret {
    display: inline-block; width: 7px; height: 15px; vertical-align: text-bottom;
    background: var(--green); margin-left: 2px; animation: elBlink 1s steps(2,start) infinite;
}
@keyframes elBlink { 50% { opacity: 0; } }
/* the rotating source name pill inside the answer meta */
.el-demo-left .ai-source-pill { animation: none !important; border-radius: 5px; }

.el-right-label {
    font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1px;
    text-transform: uppercase; color: var(--el-dim); margin-bottom: 22px;
}
.el-bars { display: flex; flex-direction: column; gap: 18px; margin-bottom: 22px; }
.el-bar-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 9px; }
.el-bar-name { font-size: 12.5px; font-weight: 500; color: var(--el-mid); }
.el-bar-val { font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: -.5px; }
.el-bar-track { height: 5px; border-radius: 3px; background: var(--el-panel-2); overflow: hidden; }
.el-bar-fill { height: 100%; border-radius: 3px; width: 0; transition: width 1.1s cubic-bezier(.22,1,.36,1); }
.el-bar-row[data-metric="acc"] .el-bar-fill { background: var(--green); }
.el-bar-row[data-metric="acc"] .el-bar-val { color: var(--green); }
.el-bar-row[data-metric="vis"] .el-bar-fill { background: var(--accent); }
.el-bar-row[data-metric="vis"] .el-bar-val { color: var(--accent); }
.el-bar-row[data-metric="web"] .el-bar-fill { background: var(--el-amber); }
.el-bar-row[data-metric="web"] .el-bar-val { color: var(--el-amber); }
.el-demo-right.in .el-bar-row[data-metric="acc"] .el-bar-fill { width: 62%; }
.el-demo-right.in .el-bar-row[data-metric="vis"] .el-bar-fill { width: 48%; }
.el-demo-right.in .el-bar-row[data-metric="web"] .el-bar-fill { width: 74%; }

.el-verdict {
    padding: 14px 16px; border-radius: 11px;
    border: 1px solid rgba(239,68,68,.18);
    font-size: 12.5px; line-height: 1.6; color: var(--el-mid);
}
.el-verdict b { color: #f87171; font-weight: 700; }
.el-verdict .em { color: var(--el-ink); font-weight: 600; }

/* ─────────────────────────────────────────────
   4 · PRICING  →  flat, editorial
   ───────────────────────────────────────────── */
.el-price-toggle {
    display: inline-flex; padding: 4px; gap: 3px;
    border: 1px solid var(--el-line); border-radius: 100px; margin: 0 0 48px;
}
.el-price-toggle button {
    font-family: var(--font-body); font-size: 13px; font-weight: 500;
    padding: 9px 22px; border: none; cursor: pointer; color: var(--el-dim);
    background: transparent; border-radius: 100px; transition: all .25s;
}
.el-price-toggle button.active { color: var(--el-ink); background: var(--el-panel-2); box-shadow: none; }
.el-price-toggle button:not(.active):hover { color: var(--el-mid); }

.el-prices {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--el-line); border-radius: var(--el-r);
    overflow: hidden; text-align: left;
}
.el-prices[hidden] { display: none; }
.el-pcard {
    position: relative;
    display: flex; flex-direction: column;
    padding: 34px 30px;
    border-right: 1px solid var(--el-line);
    transition: background .3s;
}
.el-pcard:last-child { border-right: none; }
.el-pcard:hover { background: var(--el-panel); }
.el-pcard.featured { background: var(--el-panel-2); }
.el-pcard.featured::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--green);
}
.el-pbadge {
    align-self: flex-start;
    font-family: var(--font-mono); font-size: 9px; font-weight: 600;
    letter-spacing: 1.2px; text-transform: uppercase; color: var(--green);
    border: 1px solid rgba(34,197,94,.25);
    padding: 4px 9px; border-radius: 5px; margin-bottom: 16px;
}
.el-pname {
    font-family: var(--font-mono); font-size: 11px; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase; color: var(--el-dim); margin-bottom: 14px;
}
.el-pamount { display: flex; align-items: baseline; gap: 5px; margin-bottom: 10px; }
.el-pamount .num { font-family: var(--font-display); font-size: 44px; font-weight: 700; letter-spacing: -2.5px; line-height: 1; color: var(--el-ink); }
.el-pamount .per { font-size: 14px; color: var(--el-dim); }
.el-pdesc { font-size: 13px; color: var(--el-dim); line-height: 1.55; margin-bottom: 26px; min-height: 38px; }
.el-pfeat { list-style: none; margin: 0 0 28px; padding: 0; flex: 1; display: flex; flex-direction: column; gap: 13px; }
.el-pfeat li { display: flex; align-items: flex-start; gap: 11px; font-size: 13px; color: var(--el-mid); line-height: 1.5; }
.el-check { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--green); }
.el-check svg { width: 16px; height: 16px; }
.el-pbtn {
    display: block; text-align: center; width: 100%;
    padding: 12px 20px; border-radius: 9px;
    font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
    text-decoration: none; transition: all .25s; border: 1px solid transparent; cursor: pointer;
}
.el-pbtn.primary { background: var(--green); color: #fff; }
.el-pbtn.primary:hover { background: #16a34a; }
.el-pbtn.secondary { background: transparent; color: var(--el-ink); border-color: var(--el-line-2); }
.el-pbtn.secondary:hover { background: var(--el-panel-2); }

.el-price-foot { margin-top: 30px; font-size: 13px; color: var(--el-dim); text-align: center; }
.el-price-foot a { color: var(--el-ink); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--el-line-2); padding-bottom: 1px; }
.el-price-foot a:hover { border-color: var(--el-ink); }

/* ─────────────────────────────────────────────
   5 · CTA  →  clean editorial band
   ───────────────────────────────────────────── */
.el-cta { text-align: center; max-width: 720px; margin: 0 auto; }
.el-cta .el-eyebrow { margin-bottom: 24px; }
.el-cta h3 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 58px); font-weight: 700;
    line-height: 1.0; letter-spacing: -2.4px; margin-bottom: 22px;
    color: var(--el-ink); text-wrap: balance;
}
.el-cta p { font-size: 17px; color: var(--el-dim); line-height: 1.6; max-width: 540px; margin: 0 auto 34px; }
.el-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.el-btn-lg {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 15px 30px; border-radius: 10px;
    font-family: var(--font-body); font-size: 15px; font-weight: 600;
    text-decoration: none; transition: all .25s; cursor: pointer; border: 1px solid transparent;
    white-space: nowrap;
}
.el-btn-lg.primary { background: var(--green); color: #fff; }
.el-btn-lg.primary:hover { background: #16a34a; }
.el-btn-lg.ghost { background: transparent; color: var(--el-ink); border-color: var(--el-line-2); }
.el-btn-lg.ghost:hover { background: var(--el-panel-2); }
.el-btn-lg svg { width: 17px; height: 17px; }
.el-cta-sources {
    margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--el-line);
    font-family: var(--font-mono); font-size: 12px; letter-spacing: .4px; color: var(--el-dim);
    display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.el-cta-sources b { color: var(--el-mid); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.el-cta-sources b i { width: 6px; height: 6px; border-radius: 50%; }
.el-cta-sources .sep { color: var(--el-line-2); }

/* ─────────────────────────────────────────────
   6 · FOOTER  →  columned, editorial
   ───────────────────────────────────────────── */
.el-footer { border-top: 1px solid var(--el-line); padding: 64px 28px 40px; }
.el-footer-grid {
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
}
.el-foot-brand .row { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.el-foot-brand img { width: 30px; height: 30px; border-radius: 7px; }
.el-foot-brand .nm { font-weight: 700; font-size: 15px; letter-spacing: -.3px; color: var(--el-ink); }
.el-foot-brand .tg { font-size: 13px; color: var(--el-dim); line-height: 1.6; max-width: 30ch; }
.el-foot-col h5 {
    font-family: var(--font-mono); font-size: 11px; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase; color: var(--el-dim); margin-bottom: 16px;
}
.el-foot-col a { display: block; font-size: 13.5px; color: var(--el-mid); text-decoration: none; padding: 5px 0; transition: color .2s; }
.el-foot-col a:hover { color: var(--el-ink); }
.el-foot-bottom {
    max-width: 1180px; margin: 48px auto 0; padding-top: 24px;
    border-top: 1px solid var(--el-line);
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    font-size: 12.5px; color: var(--el-dim);
}
.el-foot-bottom a { color: var(--el-mid); text-decoration: none; }
.el-foot-bottom a:hover { color: var(--el-ink); }

/* ─────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .el-demo-grid { grid-template-columns: 1fr; }
    .el-demo-left { border-right: none; border-bottom: 1px solid var(--el-line); }
    .el-tile.span3 { grid-column: span 6; }
    .el-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .el-section { padding: 80px 22px; }
    .el-pipe { grid-template-columns: 1fr; }
    .el-step { border-right: none; border-bottom: 1px solid var(--el-line); }
    .el-step:last-child { border-bottom: none; }
    .el-step-k { top: 36px; }
    .el-bento { grid-template-columns: 1fr; }
    .el-tile.span2, .el-tile.span3, .el-tile.span6 { grid-column: span 1; }
    .el-tile.feature, .el-tile.strip { grid-template-columns: 1fr; gap: 20px; }
    .el-prices { grid-template-columns: 1fr; }
    .el-pcard { border-right: none; border-bottom: 1px solid var(--el-line); }
    .el-pcard:last-child { border-bottom: none; }
    .el-cta-actions { flex-direction: column; }
    .el-btn-lg { width: 100%; justify-content: center; }
    .el-footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .el-foot-bottom { flex-direction: column; }
    .el-timeline { overflow-x: auto; }
}
@media (max-width: 520px) {
    .el-srctab { padding: 6px 10px; font-size: 11px; }
}

/* ═══════════════════════════════════════════════════════════════
   PLATFORM v3 — sequential feature walk (replaces the dense bento)
   One idea at a time, alternating sides, each visual animates in.
   ═══════════════════════════════════════════════════════════════ */
.el-features {
    display: flex; flex-direction: column; gap: 128px;
    max-width: 1080px; margin: 0 auto;
}
.el-frow {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: center;
}
.el-frow.flip .el-fcopy { order: 2; }

.el-fnum {
    font-family: var(--font-mono); font-size: 11px; font-weight: 500;
    letter-spacing: 1.4px; text-transform: uppercase; color: var(--el-dim);
    margin-bottom: 18px; display: inline-flex; align-items: center; gap: 9px;
}
.el-fnum::before { content: ''; width: 18px; height: 1px; background: var(--el-line-2); }
.el-fcopy h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(25px, 3vw, 34px); line-height: 1.08; letter-spacing: -1.2px;
    color: var(--el-ink); margin-bottom: 16px; text-wrap: balance;
}
.el-fcopy > p { font-size: 16px; color: var(--el-dim); line-height: 1.6; max-width: 42ch; }
.el-flist { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; }
.el-flist li {
    font-size: 14.5px; color: var(--el-mid); line-height: 1.5;
    padding: 14px 0; border-top: 1px solid var(--el-line);
}
.el-flist li:last-child { border-bottom: 1px solid var(--el-line); }
.el-flist b { color: var(--el-ink); font-weight: 600; }

/* visual panel */
.el-fvis { position: relative; }
.el-vispanel {
    border: 1px solid var(--el-line); border-radius: var(--el-r);
    background: var(--el-panel); padding: 28px;
    box-shadow: 0 30px 70px -50px rgba(0,0,0,.9);
}
[data-theme="light"] .el-vispanel { box-shadow: 0 30px 60px -50px rgba(15,23,42,.25); }
.el-vp-head {
    font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1px;
    text-transform: uppercase; color: var(--el-dim);
    display: flex; align-items: center; gap: 9px; margin-bottom: 22px;
}
.el-vp-head .el-vp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }

/* scorecard (feature 01) */
.el-scorecard .sc-row { padding: 4px 0 16px; }
.el-scorecard .sc-row:last-child { padding-bottom: 0; }
.el-sc-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 9px; }
.el-sc-name { font-size: 13px; font-weight: 500; color: var(--el-mid); }
.el-sc-val { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -.5px; }
.el-sc-track { height: 5px; border-radius: 3px; background: var(--el-panel-2); overflow: hidden; }
.el-sc-fill { height: 100%; border-radius: 3px; width: 0; transition: width 1.1s cubic-bezier(.22,1,.36,1); }
.sc-row[data-m="acc"] .el-sc-fill { background: var(--green); } .sc-row[data-m="acc"] .el-sc-val { color: var(--green); }
.sc-row[data-m="vis"] .el-sc-fill { background: var(--accent); } .sc-row[data-m="vis"] .el-sc-val { color: var(--accent); }
.sc-row[data-m="web"] .el-sc-fill { background: var(--el-amber); } .sc-row[data-m="web"] .el-sc-val { color: var(--el-amber); }
.el-fvis.in .sc-row[data-m="acc"] .el-sc-fill { width: 62%; }
.el-fvis.in .sc-row[data-m="vis"] .el-sc-fill { width: 48%; }
.el-fvis.in .sc-row[data-m="web"] .el-sc-fill { width: 74%; }

/* ── scroll-triggered internal animations (driven by .el-fvis.in) ── */
/* scorecard rows fade/slide in */
.el-scorecard .sc-row { opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; }
.el-fvis.in .el-scorecard .sc-row { opacity: 1; transform: none; }
.el-fvis.in .el-scorecard .sc-row:nth-child(3) { transition-delay: .1s; }
.el-fvis.in .el-scorecard .sc-row:nth-child(4) { transition-delay: .2s; }

/* exec-summary doc rows + lines */
.el-mock .el-doc-row { opacity: 0; transform: translateX(-8px); transition: opacity .5s ease, transform .5s ease; }
.el-fvis.in .el-mock .el-doc-row { opacity: 1; transform: none; }
.el-fvis.in .el-mock .el-doc-row:nth-child(2) { transition-delay: .12s; }
.el-fvis.in .el-mock .el-doc-row:nth-child(3) { transition-delay: .24s; }
.el-mock .el-doc-line { transform: scaleX(0); transform-origin: left; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.el-fvis.in .el-mock .el-doc-line { transform: scaleX(1); }
.el-fvis.in .el-mock .el-doc-row:nth-child(2) .el-doc-line { transition-delay: .12s; }
.el-fvis.in .el-mock .el-doc-row:nth-child(3) .el-doc-line { transition-delay: .24s; }

/* feed lines type/fade in */
.el-feed > div { opacity: 0; transition: opacity .35s ease; }
.el-fvis.in .el-feed > div { opacity: 1; }
.el-fvis.in .el-feed > div:nth-child(2) { transition-delay: .1s; }
.el-fvis.in .el-feed > div:nth-child(3) { transition-delay: .2s; }
.el-fvis.in .el-feed > div:nth-child(4) { transition-delay: .3s; }
.el-fvis.in .el-feed > div:nth-child(5) { transition-delay: .4s; }
.el-fvis.in .el-feed .el-feed-targets { transition-delay: .55s; }

/* monitoring timeline */
.el-tl-node { opacity: 0; transform: translateY(6px); transition: opacity .45s ease, transform .45s ease; }
.el-fvis.in .el-tl-node { opacity: 1; transform: none; }
.el-fvis.in .el-tl-node:nth-child(3) { transition-delay: .14s; }
.el-fvis.in .el-tl-node:nth-child(5) { transition-delay: .28s; }
.el-fvis.in .el-tl-node:nth-child(7) { transition-delay: .42s; }
.el-fvis.in .el-tl-node:nth-child(9) { transition-delay: .56s; }
.el-tl-seg { transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.el-fvis.in .el-tl-seg { transform: scaleX(1); }
.el-fvis.in .el-tl-seg:nth-child(4) { transition-delay: .2s; }
.el-fvis.in .el-tl-seg:nth-child(6) { transition-delay: .34s; }
.el-fvis.in .el-tl-seg:nth-child(8) { transition-delay: .48s; }
.el-fvis.in .el-tl-node.delta .el-tl-dot { animation: elDrift 1.8s ease-in-out .8s infinite; }
@keyframes elDrift { 0%,100% { box-shadow: 0 0 0 0 rgba(251,191,36,.5); } 50% { box-shadow: 0 0 0 6px rgba(251,191,36,0); } }
.el-timeline { width: 100%; }

@media (prefers-reduced-motion: reduce) {
    .el-scorecard .sc-row, .el-mock .el-doc-row, .el-feed > div, .el-tl-node { opacity: 1 !important; transform: none !important; }
    .el-mock .el-doc-line, .el-tl-seg { transform: scaleX(1) !important; }
    .el-fvis.in .sc-row[data-m="acc"] .el-sc-fill { width: 62%; }
    .el-fvis.in .sc-row[data-m="vis"] .el-sc-fill { width: 48%; }
    .el-fvis.in .sc-row[data-m="web"] .el-sc-fill { width: 74%; }
}

@media (max-width: 768px) {
    .el-features { gap: 80px; }
    .el-frow { grid-template-columns: 1fr; gap: 28px; }
    .el-frow.flip .el-fcopy { order: 0; }
    .el-vispanel { padding: 22px; }
}

/* ─────────────────────────────────────────────
   Platform feature rows — connected timeline spine
   Threads the 4 steps onto a center rail with numbered
   nodes so they read as a sequence, not one long run-on.
   ───────────────────────────────────────────── */
.el-features { position: relative; }
.el-features::before {
    content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
    width: 1px; background: var(--el-line);
    transform: translateX(-.5px); pointer-events: none;
}
.el-frow { position: relative; }
.el-fnode {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px; border-radius: 50%;
    display: grid; place-items: center; z-index: 3;
    font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: -.5px;
    color: var(--el-mid); background: #0e1116;
    border: 1px solid var(--el-line-2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 8px 22px -12px rgba(0,0,0,.9);
    transition: transform .45s cubic-bezier(.22,1,.36,1), border-color .4s ease, color .4s ease, background .4s ease, box-shadow .4s ease;
}
[data-theme="light"] .el-fnode { background: #fff; }
.el-frow.active .el-fnode {
    background: var(--green); border-color: var(--green); color: #06140c;
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 12px 30px -8px rgba(34,197,94,.45);
}
/* subtle lift on the visual panel — a small clean affordance */
.el-fvis .el-vispanel { transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .4s ease, box-shadow .4s ease; }
.el-fvis:hover .el-vispanel { transform: translateY(-5px); border-color: var(--el-line-2); }

@media (max-width: 900px) {
    .el-fnode { width: 44px; height: 44px; font-size: 14px; }
}
@media (max-width: 768px) {
    /* single column — drop the rail, turn nodes into inline step chips + dividers */
    .el-features::before { display: none; }
    .el-fnode {
        position: static; transform: none; margin-bottom: 18px;
        width: 40px; height: 40px; font-size: 13px;
    }
    .el-frow.active .el-fnode { transform: scale(1.05); }
    .el-frow { padding-top: 48px; border-top: 1px solid var(--el-line); }
    .el-frow:first-child { padding-top: 0; border-top: none; }
    .el-frow:first-child .el-fnode { margin-top: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   PLUGIN SYNC — two-way connection between dashboard ⟷ WordPress site
   The Pro plugin is an optional add-on. Push facts out, get AI
   analytics back. Colour only in the moving data: green = push,
   accent (violet) = analytics return.
   ═══════════════════════════════════════════════════════════════ */
.el-sync {
    display: grid;
    grid-template-columns: 1fr minmax(248px, 312px) 1fr;
    align-items: stretch;
    border: 1px solid var(--el-line);
    border-radius: 16px;
    background: var(--el-panel);
    box-shadow: 0 30px 70px -50px rgba(0,0,0,.9);
    overflow: hidden;
}
[data-theme="light"] .el-sync { box-shadow: 0 30px 60px -50px rgba(15,23,42,.25); background: #fff; }

.sync-node { padding: 28px 26px; min-width: 0; }
.sync-node.dash { border-right: 1px solid var(--el-line); }
.sync-node.site { border-left: 1px solid var(--el-line); }
.sync-node-head {
    font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1px;
    text-transform: uppercase; color: var(--el-dim);
    display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
}
.sync-node-head .dot { width: 6px; height: 6px; border-radius: 50%; }
.sync-node.dash .sync-node-head .dot { background: var(--green); box-shadow: 0 0 8px var(--green); }
.sync-node.site .sync-node-head .dot { background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.sync-node-head .nh-tag {
    margin-left: auto; font-size: 9px; letter-spacing: .5px;
    padding: 3px 7px; border-radius: 4px; border: 1px solid var(--el-line-2); color: var(--el-mid);
}

/* dashboard — editable facts */
.sync-fields { display: flex; flex-direction: column; gap: 10px; }
.sync-field {
    display: flex; align-items: center; gap: 11px;
    padding: 11px 13px; border: 1px solid var(--el-line); border-radius: 9px; background: var(--bg);
    animation: syncFieldIn .55s ease both;
}
.sync-field:nth-child(1) { animation-delay: .05s; }
.sync-field:nth-child(2) { animation-delay: .15s; }
.sync-field:nth-child(3) { animation-delay: .25s; }
@keyframes syncFieldIn { from { transform: translateY(8px); } to { transform: none; } }
.sync-field .sf-k {
    font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .5px;
    text-transform: uppercase; color: var(--el-dim); width: 58px; flex-shrink: 0;
}
.sync-field .sf-v { font-size: 12.5px; color: var(--el-ink); font-weight: 500; flex: 1; min-width: 0; }
.sync-field .sf-tag {
    font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .5px; text-transform: uppercase;
    color: var(--green); border: 1px solid rgba(34,197,94,.3); padding: 2px 6px; border-radius: 4px; flex-shrink: 0;
}

/* site — plugin active + AI analytics returning */
.sync-site { display: flex; flex-direction: column; gap: 13px; }
.sync-plugin {
    display: flex; align-items: center; gap: 9px;
    padding: 11px 13px; border: 1px solid rgba(34,197,94,.25); border-radius: 9px;
    background: rgba(34,197,94,.05); font-size: 12.5px; color: var(--el-ink); font-weight: 600;
}
.sync-plugin svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }
.sync-plugin .pg-status {
    margin-left: auto; font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .5px;
    text-transform: uppercase; color: var(--green); display: inline-flex; align-items: center; gap: 5px;
}
.sync-plugin .pg-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); }
.sync-analytics { border: 1px solid var(--el-line); border-radius: 9px; background: var(--bg); padding: 14px 15px; }
.sync-an-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: .6px; text-transform: uppercase; color: var(--el-dim); margin-bottom: 6px; }
.sync-an-big { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -1px; color: var(--el-ink); line-height: 1; margin-bottom: 14px; }
.sync-an-big span { font-size: 11px; color: var(--el-dim); font-weight: 500; letter-spacing: 0; margin-left: 4px; }
.sync-an-rows { display: flex; flex-direction: column; gap: 9px; }
.sync-an-row { display: flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 9.5px; color: var(--el-mid); }
.sync-an-row > i { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.sync-an-row .nm { width: 54px; flex-shrink: 0; letter-spacing: .3px; }
.sync-an-row .bar { flex: 1; height: 4px; border-radius: 2px; background: var(--el-panel-2); overflow: hidden; }
.sync-an-row .bar b { display: block; height: 100%; border-radius: 2px; width: var(--w, 50%); transform-origin: left; animation: syncBarGrow 1.1s cubic-bezier(.22,1,.36,1) both; animation-delay: .35s; }
@keyframes syncBarGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.sync-an-row .n { width: 30px; text-align: right; color: var(--el-dim); flex-shrink: 0; }

/* ── the connecting link ── */
.sync-link {
    position: relative;
    display: flex; flex-direction: column; justify-content: center; gap: 38px;
    padding: 28px 20px;
}
.sync-rail { position: relative; }
.sync-rail-label {
    font-family: var(--font-mono); font-size: 9px; letter-spacing: .5px; text-transform: uppercase;
    text-align: center; margin-bottom: 11px;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.sync-rail.push .sync-rail-label { color: var(--green); }
.sync-rail.pull .sync-rail-label { color: var(--accent); }
.sync-track { position: relative; height: 2px; border-radius: 2px; }
.sync-rail.push .sync-track { background: linear-gradient(90deg, transparent, rgba(34,197,94,.4) 20%, rgba(34,197,94,.4) 80%, transparent); }
.sync-rail.pull .sync-track { background: linear-gradient(90deg, transparent, rgba(129,140,248,.4) 20%, rgba(129,140,248,.4) 80%, transparent); }

/* destination arrowheads */
.sync-arrow { position: absolute; top: 50%; width: 0; height: 0; margin-top: -5px; }
.sync-rail.push .sync-arrow { right: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 7px solid var(--green); }
.sync-rail.pull .sync-arrow { left: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-right: 7px solid var(--accent); }

/* travelling data pulses */
.sync-dot {
    position: absolute; top: 50%; left: 0; width: 7px; height: 7px; border-radius: 50%;
    margin-top: -3.5px; animation-duration: 2.6s; animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.sync-rail.push .sync-dot { background: var(--green); box-shadow: 0 0 9px var(--green); animation-name: syncFlowRight; }
.sync-rail.pull .sync-dot { background: var(--accent); box-shadow: 0 0 9px var(--accent); animation-name: syncFlowLeft; }
.sync-dot:nth-child(2) { animation-delay: 0s; }
.sync-dot:nth-child(3) { animation-delay: .87s; }
.sync-dot:nth-child(4) { animation-delay: 1.73s; }
@keyframes syncFlowRight {
    0% { left: -1%; } 100% { left: 101%; }
}
@keyframes syncFlowLeft {
    0% { left: 101%; } 100% { left: -1%; }
}

/* add-on footer note */
.sync-foot {
    display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
    margin-top: 22px; padding: 20px 24px;
    border: 1px solid var(--el-line); border-radius: var(--el-r); background: var(--el-panel);
}
.sync-foot .sf-note { display: flex; align-items: flex-start; gap: 13px; flex: 1; min-width: 260px; }
.sync-foot .sf-ic {
    width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px;
    display: grid; place-items: center; border: 1px solid var(--el-line-2); color: var(--el-ink);
}
.sync-foot .sf-ic svg { width: 16px; height: 16px; }
.sync-foot p { font-size: 13.5px; color: var(--el-dim); line-height: 1.6; }
.sync-foot p strong { color: var(--el-ink); font-weight: 600; }
.sync-foot .el-pbtn { width: auto; white-space: nowrap; padding: 11px 22px; }

@media (prefers-reduced-motion: reduce) {
    .sync-dot { display: none; }
    .sync-field { animation: none !important; transform: none !important; }
}

@media (max-width: 768px) {
    .el-sync { grid-template-columns: 1fr; }
    .sync-node.dash { border-right: none; border-bottom: 1px solid var(--el-line); }
    .sync-node.site { border-left: none; border-top: 1px solid var(--el-line); }
    .sync-link { flex-direction: row; justify-content: center; gap: 56px; padding: 26px 20px; }
    .sync-rail-label { display: none; }
    .sync-track { width: 2px; height: 76px; margin: 0 auto; }
    .sync-rail.push .sync-track { background: linear-gradient(180deg, transparent, rgba(34,197,94,.45) 20%, rgba(34,197,94,.45) 80%, transparent); }
    .sync-rail.pull .sync-track { background: linear-gradient(180deg, transparent, rgba(129,140,248,.45) 20%, rgba(129,140,248,.45) 80%, transparent); }
    .sync-dot { top: 0; left: 50%; margin-top: 0; margin-left: -3.5px; }
    .sync-rail.push .sync-dot { animation-name: syncFlowDown; }
    .sync-rail.pull .sync-dot { animation-name: syncFlowUp; }
    .sync-rail.push .sync-arrow { right: auto; left: 50%; top: auto; bottom: 0; margin: 0 0 0 -5px; border: none; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 7px solid var(--green); }
    .sync-rail.pull .sync-arrow { left: 50%; top: 0; bottom: auto; margin: 0 0 0 -5px; border: none; border-left: 5px solid transparent; border-right: 5px solid transparent; border-bottom: 7px solid var(--accent); }
    @keyframes syncFlowDown { 0% { top: -1%; } 100% { top: 101%; } }
    @keyframes syncFlowUp { 0% { top: 101%; } 100% { top: -1%; } }
}

/* ═══════════════════════════════════════════════════════════════
   TYPE CLEANUP — panel labels join the sans type system.
   Monospace was reading as "AI-generated" when used as decoration.
   Now it's reserved for genuine code (the .el-feed JSON block);
   every UI label/data row uses the brand sans, a touch heavier and
   with tighter tracking so it reads as crafted product UI.
   The section eyebrows (.el-eyebrow) intentionally keep their mono
   treatment — those are the liked "— SYNTHESIS" labels.
   ═══════════════════════════════════════════════════════════════ */
.el-vp-head, .el-right-label, .el-q-meta, .el-wintitle, .el-live,
.el-ai-dot, .el-tl-cap, .el-doc-pill, .el-tag, .el-cta-sources,
.sync-node-head, .sync-node-head .nh-tag, .sync-field .sf-k, .sync-field .sf-tag,
.sync-plugin .pg-status, .sync-an-label, .sync-an-row, .sync-an-row .nm,
.sync-rail-label {
    font-family: var(--font-body);
}
/* heading-style panel labels: slightly heavier, calmer tracking */
.el-vp-head, .el-right-label, .el-q-meta, .el-wintitle,
.sync-node-head, .sync-an-label, .sync-rail-label, .el-cta-sources {
    font-weight: 600;
    letter-spacing: .06em;
}
/* small status / tag chips */
.el-live, .el-tl-cap, .el-ai-dot, .sync-node-head .nh-tag,
.sync-field .sf-k, .sync-field .sf-tag, .sync-plugin .pg-status {
    font-weight: 600;
    letter-spacing: .04em;
}
/* give the analytics source names a hair more room in sans */
.sync-an-row .nm { width: 60px; font-weight: 600; }
.sync-an-row .n { font-weight: 600; }
