:root {
    color-scheme: light;
    --ink: #111311;
    --ink-2: #1b1e1b;
    --paper: #f4f2eb;
    --paper-2: #ebe8de;
    --white: #fffef8;
    --acid: #d9ff43;
    --cyan: #52e6ff;
    --violet: #6847df;
    --coral: #ff7665;
    --muted: #595d57;
    --line: rgba(17, 19, 17, .16);
    --line-dark: rgba(255, 255, 255, .16);
    --shadow: 0 24px 70px rgba(25, 26, 20, .12);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 32px;
    --shell: min(1320px, calc(100vw - 48px));
    --display: "Arial Narrow", "Aptos Display", "Helvetica Neue", Arial, sans-serif;
    --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

[data-theme="dark"] {
    color-scheme: dark;
    --paper: #101310;
    --paper-2: #181b17;
    --white: #20231f;
    --ink: #f4f2e9;
    --ink-2: #e2e1d9;
    --muted: #b8bcb4;
    --violet: #a38cff;
    --line: rgba(255, 255, 255, .15);
    --shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

*, *::before, *::after { box-sizing: border-box; }

html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
    overflow-x: clip;
}

body:has(dialog[open]) { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

:focus-visible {
    outline: 3px solid var(--violet);
    outline-offset: 4px;
}

::selection { background: var(--acid); color: #111311; }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
[hidden] { display: none !important; }

.skip-link {
    position: fixed;
    left: 20px;
    top: 12px;
    z-index: 1000;
    transform: translateY(-150%);
    padding: 11px 16px;
    background: var(--acid);
    color: #111;
    border-radius: 8px;
    font-weight: 800;
}
.skip-link:focus { transform: none; }

.signal-bar { background: #0c0e0d; color: #f4f2eb; font-size: 12px; }
.signal-bar__inner { min-height: 38px; display: flex; align-items: center; gap: 10px; }
.signal-bar p { margin: 0; letter-spacing: .02em; }
.signal-bar a { margin-left: auto; color: var(--acid); font-weight: 700; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(217,255,67,.12); animation: pulse 2s infinite; }

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: color-mix(in srgb, var(--paper) 88%, transparent);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 40px rgba(0,0,0,.04); }
.header-inner { height: 76px; display: flex; align-items: center; gap: clamp(24px, 4vw, 64px); }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; font-family: var(--display); font-size: 20px; font-weight: 950; letter-spacing: -.06em; }
.brand img { width: 36px; height: 36px; }
.brand > span > span { color: var(--violet); }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); font-size: 13px; font-weight: 750; }
.primary-nav a { position: relative; padding-block: 25px; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; height: 2px; background: var(--ink); transition: right .2s; }
.primary-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 9px; margin-left: auto; }
.header-search { min-height: 40px; display: flex; align-items: center; gap: 8px; padding: 7px 9px 7px 12px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; }
.header-search svg, .catalogue-search svg, .command-search svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.header-search span { font-size: 12px; }
kbd { min-width: 24px; padding: 3px 7px; border: 1px solid var(--line); border-radius: 6px; background: var(--white); color: var(--muted); font: 10px var(--body); box-shadow: 0 1px 0 var(--line); }
.icon-button { width: 42px; height: 42px; display: inline-grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; transition: background .2s, color .2s, transform .2s; }
.icon-button:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }
.icon-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }
.menu-toggle { display: none; }

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    font-size: 13px;
    line-height: 1;
    transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 39px; padding: 9px 15px; font-size: 12px; }
.button--acid { background: var(--acid); color: #10130d; box-shadow: 0 9px 25px rgba(177, 210, 46, .2); }
.button--acid:hover { box-shadow: 0 13px 34px rgba(177, 210, 46, .35); }
.button--ink { background: var(--ink); color: var(--paper); }
.button--ghost { border-color: var(--line); background: transparent; }
.button--ghost-light { border-color: rgba(255,255,255,.35); background: transparent; color: #fff; }

.hero { min-height: 720px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(30px, 5vw, 90px); padding-block: 72px 76px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span:first-child { color: var(--ink); }
.eyebrow span + span { padding-left: 18px; border-left: 1px solid var(--line); }
.hero h1, .section-heading h2, .enterprise-copy h2, .methodology-copy h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(70px, 8.7vw, 132px);
    font-weight: 950;
    line-height: .78;
    letter-spacing: -.085em;
    text-transform: uppercase;
}
.hero h1 em, .section-heading h2 em, .enterprise-copy h2 em, .methodology-copy h2 em { font-family: var(--serif); font-weight: 400; text-transform: lowercase; letter-spacing: -.06em; }
.hero-lede { max-width: 590px; margin: 34px 0 28px; font-size: clamp(18px, 1.7vw, 23px); line-height: 1.42; letter-spacing: -.025em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-proof { display: flex; gap: 0; margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-proof > div { min-width: 120px; padding-right: 20px; margin-right: 20px; border-right: 1px solid var(--line); }
.hero-proof > div:last-child { border: 0; }
.hero-proof strong { display: block; font-family: var(--display); font-size: 25px; line-height: 1; letter-spacing: -.05em; }
.hero-proof span { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

.hero-stage { position: relative; min-height: 590px; display: grid; place-items: center; }
.hero-stage::before { content: ""; position: absolute; inset: 5% 7% 4%; border-radius: 48% 52% 45% 55%; background: #141714; transform: rotate(-4deg); box-shadow: var(--shadow); }
.hero-art { position: relative; z-index: 1; width: 95%; filter: drop-shadow(0 30px 45px rgba(0,0,0,.2)); transform: rotate(1.5deg); }
.orbit { position: absolute; z-index: 2; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; pointer-events: none; }
.orbit--one { inset: 14% 0 17%; transform: rotate(18deg); }
.orbit--two { inset: 8% 10% 11%; transform: rotate(-33deg); border-style: dashed; }
.float-label { position: absolute; z-index: 3; padding: 8px 12px; background: var(--acid); color: #111; border-radius: 999px; font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.float-label--top { top: 5%; right: 14%; transform: rotate(5deg); }
.hero-review-card { position: absolute; z-index: 4; left: -2%; bottom: 4%; width: 235px; padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .2s; }
.hero-review-card:hover { transform: translateY(-5px) rotate(-1deg); }
.hero-review-card__label { display: block; margin-bottom: 8px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-review-card strong { display: block; font-family: var(--display); font-size: 18px; line-height: 1.1; }
.hero-review-card > span:last-child { display: flex; justify-content: space-between; margin-top: 15px; font-size: 10px; text-transform: uppercase; }
.hero-score { position: absolute; z-index: 4; right: -1%; top: 28%; width: 104px; height: 104px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; background: var(--violet); border: 8px solid #171a17; border-radius: 50%; transform: rotate(8deg); box-shadow: 0 15px 35px rgba(0,0,0,.25); }
.hero-score span { font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.hero-score strong { font: 950 31px/1 var(--display); }
.hero-score small { font-size: 8px; opacity: .8; }

.topic-rail { overflow: hidden; background: var(--acid); color: #111; border-block: 1px solid #111; }
.topic-track { width: max-content; display: flex; align-items: center; gap: 30px; min-height: 54px; font: 900 14px var(--display); letter-spacing: .09em; animation: marquee 30s linear infinite; }
.topic-track i { font-style: normal; }

.section { padding-block: clamp(90px, 10vw, 150px); }
.section--tint { background: var(--paper-2); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 8vw; margin-bottom: 68px; }
.section-heading h2, .enterprise-copy h2, .methodology-copy h2 { margin-top: 18px; font-size: clamp(53px, 6.7vw, 98px); line-height: .86; }
.section-heading > p { max-width: 500px; margin: 0 0 8px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.section-heading--compact { margin-bottom: 48px; }
.kicker, .mini-label { display: inline-block; font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.kicker::before { content: ""; width: 25px; height: 2px; display: inline-block; margin-right: 10px; vertical-align: middle; background: var(--violet); }

.lead-story { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 560px; background: var(--ink); color: var(--paper); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.lead-story__image { position: relative; min-height: 500px; overflow: hidden; background: #151816; }
.lead-story__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.lead-story:hover .lead-story__image img { transform: scale(1.025); }
.image-index { position: absolute; left: 22px; top: 20px; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: #fff; font-size: 11px; }
.lead-story__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(35px, 5vw, 72px); }
.card-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.lead-story .card-meta { color: rgba(255,255,255,.6); }
.lead-story h3 { margin: 30px 0 22px; font: 900 clamp(37px, 4vw, 61px)/.95 var(--display); letter-spacing: -.055em; text-transform: uppercase; }
.lead-verdict { margin: 0; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.6; }
.score-line { display: flex; align-items: end; justify-content: space-between; margin-top: 50px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.18); }
.score-block { display: flex; align-items: end; gap: 12px; }
.score-block strong { font: 950 54px/.8 var(--display); color: var(--acid); }
.score-block span { color: rgba(255,255,255,.6); font-size: 9px; line-height: 1.2; text-transform: uppercase; }
.circle-link { width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 0; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: transparent; font-size: 10px; line-height: 1.1; text-transform: uppercase; cursor: pointer; transition: background .2s, color .2s, transform .2s; }
.circle-link:hover { background: var(--acid); color: #111; transform: rotate(5deg); }
.circle-link b { font-size: 16px; }

.catalogue-toolbar { display: grid; grid-template-columns: minmax(250px, 1fr) auto auto; align-items: center; gap: 14px; padding: 15px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; }
.catalogue-toolbar > * { min-width: 0; }
.catalogue-search { display: flex; align-items: center; gap: 10px; padding-inline: 8px; }
.catalogue-search input { width: 100%; padding: 10px 0; color: var(--ink); border: 0; outline: 0; background: transparent; }
.catalogue-search input::placeholder { color: var(--muted); }
.filter-pills { display: flex; gap: 4px; padding: 4px; background: var(--paper-2); border-radius: 999px; }
.filter-pill { min-height: 38px; padding: 7px 14px; border: 0; border-radius: 999px; background: transparent; font-size: 11px; font-weight: 750; cursor: pointer; }
.filter-pill.is-active { background: var(--ink); color: var(--paper); }
.sort-select select { min-height: 42px; padding: 8px 32px 8px 13px; color: var(--ink); border: 1px solid var(--line); border-radius: 10px; background: var(--paper); font-size: 11px; }
.catalogue-status { margin: 28px 0 14px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { display: flex; flex-direction: column; min-width: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review-card__media { position: relative; aspect-ratio: 1.52; overflow: hidden; background: #111411; }
.review-card__media > a, .review-card__media img { width: 100%; height: 100%; }
.review-card__media img { object-fit: cover; transition: transform .5s; }
.review-card:hover .review-card__media img { transform: scale(1.035); }
.card-badges { position: absolute; left: 13px; top: 13px; display: flex; gap: 6px; }
.chip { padding: 6px 9px; border-radius: 999px; font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.chip--light { background: rgba(255,255,255,.9); color: #111; }
.chip--demo { background: var(--acid); color: #111; }
.save-button { position: absolute; right: 12px; top: 12px; width: 38px; height: 38px; color: #fff; background: rgba(12,14,13,.45); border-color: rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.save-button svg { fill: none; }
.save-button[aria-pressed="true"] { color: #111; background: var(--acid); border-color: var(--acid); }
.save-button[aria-pressed="true"] svg { fill: currentColor; }
.review-card__body { display: flex; flex: 1; flex-direction: column; padding: 23px; }
.review-card h3 { margin: 12px 0 9px; font: 900 27px/1 var(--display); letter-spacing: -.045em; text-transform: uppercase; }
.review-card h3 a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.review-card__body > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.tag-row { display: flex; gap: 9px; margin-top: 15px; color: var(--violet); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.review-card__footer { display: flex; align-items: end; justify-content: space-between; margin-top: auto; padding-top: 23px; }
.mini-score strong { font: 950 31px/.85 var(--display); }
.mini-score span { color: var(--muted); font-size: 10px; }
.text-button { display: inline-flex; align-items: center; gap: 7px; padding: 8px 0; border: 0; background: transparent; font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .07em; cursor: pointer; }
.text-button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.compare-button[aria-pressed="true"] { color: var(--violet); }
.empty-state { padding: 80px 20px; text-align: center; border: 1px dashed var(--line); border-radius: var(--radius); }
.empty-state > span { font-size: 10px; letter-spacing: .2em; }
.empty-state h3 { margin: 12px 0 5px; font: 900 35px var(--display); text-transform: uppercase; }
.empty-state p { color: var(--muted); }

.video-grid { display: grid; grid-template-columns: 1.5fr .5fr; gap: 24px; }
.video-facade { position: relative; min-height: 490px; overflow: hidden; background: #101310; border-radius: var(--radius-lg); }
.video-facade > img { width: 100%; height: 100%; object-fit: cover; }
.video-facade iframe { width: 100%; height: 100%; min-height: 490px; border: 0; }
.video-facade::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.75)); }
.video-facade.is-playing::after, .video-facade.is-playing > img, .video-facade.is-playing > .video-play, .video-facade.is-playing > .video-badge, .video-facade.is-playing > .video-caption { display: none; }
.video-play { position: absolute; z-index: 2; left: 50%; top: 50%; width: 78px; height: 78px; padding: 0; border: 0; border-radius: 50%; background: transparent; color: var(--acid); transform: translate(-50%,-50%); cursor: pointer; transition: transform .2s; }
.video-play:hover { transform: translate(-50%,-50%) scale(1.08); }
.video-play svg circle { fill: #111; stroke: currentColor; stroke-width: 2; }
.video-play svg path { fill: currentColor; }
.video-badge { position: absolute; z-index: 2; left: 20px; top: 20px; padding: 7px 10px; background: var(--acid); color: #111; border-radius: 999px; font-size: 8px; font-weight: 900; letter-spacing: .1em; }
.video-caption { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 22px; display: flex; align-items: end; justify-content: space-between; gap: 20px; color: #fff; }
.video-caption strong { font: 900 26px var(--display); text-transform: uppercase; }
.video-caption span { font-size: 10px; text-transform: uppercase; }
.video-notes { padding: 34px; background: var(--ink); color: var(--paper); border-radius: var(--radius-lg); }
.video-notes .mini-label { color: var(--acid); }
.video-notes h3 { margin: 20px 0 15px; font: 900 31px/1 var(--display); letter-spacing: -.04em; text-transform: uppercase; }
.video-notes > p { color: rgba(255,255,255,.65); font-size: 13px; }
.chapter-list { margin: 32px 0 20px; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.chapter-list li { border-bottom: 1px solid var(--line-dark); }
.chapter-list button { width: 100%; display: flex; gap: 14px; padding: 15px 0; color: #fff; border: 0; background: transparent; text-align: left; font-size: 11px; cursor: pointer; }
.chapter-list span { color: var(--acid); font-variant-numeric: tabular-nums; }
.transcript { color: rgba(255,255,255,.7); font-size: 11px; }
.transcript summary { color: #fff; cursor: pointer; font-weight: 800; }

.community-section { background: #111411; color: #f4f2eb; }
.section-heading--light > p { color: rgba(255,255,255,.62); }
.section-heading--light .kicker::before { background: var(--acid); }
.community-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; }
.poll-card { padding: clamp(28px,4vw,48px); background: #f5f2e9; color: #111311; border-radius: var(--radius-lg); }
.poll-card__top { display: flex; justify-content: space-between; color: #595d57; font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.poll-card h3 { max-width: 520px; margin: 35px 0 28px; font: 900 clamp(31px,3vw,46px)/1 var(--display); letter-spacing: -.045em; text-transform: uppercase; }
.poll-card form { display: grid; gap: 7px; }
.poll-card label { position: relative; min-height: 50px; display: flex; align-items: center; overflow: hidden; padding: 11px 15px; border: 1px solid rgba(17,19,17,.18); border-radius: 10px; cursor: pointer; }
.poll-card label:has(input:checked) { border-color: #111; }
.poll-card label.is-selected b { width: 100%; }
.poll-card input { position: relative; z-index: 2; width: 17px; height: 17px; accent-color: #111; }
.poll-card label span { position: relative; z-index: 2; margin-left: 10px; font-size: 12px; font-weight: 750; }
.poll-card label b { position: absolute; inset: 0 auto 0 0; width: 0; background: rgba(217,255,67,.55); transition: width .5s; }
.poll-card .button { margin-top: 12px; }
.form-note { margin: 13px 0 0; color: #696c66; font-size: 9px; }
.community-stack { display: grid; gap: 24px; }
.social-card { min-height: 255px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 25px; padding: 35px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); }
.avatar { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: #111; font: 900 17px var(--display); }
.avatar--acid { background: var(--acid); }
.avatar--violet { background: var(--violet); color: #fff; }
.social-card .mini-label { color: rgba(255,255,255,.55); }
.social-card h3 { margin: 8px 0; font: 900 29px/1 var(--display); text-transform: uppercase; }
.social-card p { margin: 0; color: rgba(255,255,255,.58); font-size: 12px; }
.circle-link--small { width: 70px; height: 70px; }

.capability-grid { display: grid; grid-template-columns: repeat(7, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.capability-grid article { min-width: 0; padding: 22px 17px; border-right: 1px solid var(--line); background: var(--white); }
.capability-grid article:last-child { border: 0; }
.capability-grid article > span { display: block; color: var(--muted); font-size: 8px; font-weight: 800; }
.capability-grid svg { width: 35px; margin: 35px 0 45px; fill: none; stroke: var(--violet); stroke-width: 1.4; }
.capability-grid h3 { min-height: 48px; margin: 0; font: 900 17px/1.05 var(--display); text-transform: uppercase; }
.capability-grid p { margin: 7px 0 0; color: var(--muted); font-size: 9px; text-transform: uppercase; }
.feature-ledger { width: 100%; display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding: 25px 30px; color: #fff; border: 0; border-radius: var(--radius); background: var(--ink); text-align: left; cursor: pointer; }
.feature-ledger span { display: flex; flex-direction: column; }
.feature-ledger b { font: 900 20px var(--display); text-transform: uppercase; }
.feature-ledger small { color: rgba(255,255,255,.58); }
.feature-ledger strong { font: 950 40px var(--display); color: var(--acid); }
.feature-ledger i { font-style: normal; font-size: 20px; }

.enterprise-section { background: #242039; color: #fff; }
.enterprise-grid { display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: clamp(50px,9vw,130px); }
.enterprise-copy .kicker { color: var(--acid); }
.enterprise-copy h2 { margin-block: 26px 28px; }
.enterprise-copy > p { max-width: 650px; color: rgba(255,255,255,.67); font-size: 18px; }
.check-list { margin: 35px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 13px 0 13px 30px; border-bottom: 1px solid rgba(255,255,255,.14); font-size: 12px; }
.check-list li::before { content: "↗"; position: absolute; left: 0; color: var(--acid); }
.enterprise-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.enterprise-panel { padding: 25px; background: #f4f2eb; color: #111311; border-radius: var(--radius-lg); box-shadow: 25px 25px 0 rgba(217,255,67,.85); transform: rotate(1deg); }
.enterprise-panel__head { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(17,19,17,.18); font-size: 9px; font-weight: 850; text-transform: uppercase; }
.status-chip { padding: 4px 7px; background: var(--acid); border-radius: 999px; }
.radar-visual { position: relative; height: 300px; }
.radar-visual svg { width: 100%; height: 100%; }
.radar-grid { fill: none; stroke: rgba(17,19,17,.18); }
.radar-data { fill: rgba(142,114,255,.24); stroke: #6e51ed; stroke-width: 3; }
.radar-label { position: absolute; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.radar-label--a { left: 46%; top: 3%; }.radar-label--b { right: 3%; top: 32%; }.radar-label--c { right: 14%; bottom: 7%; }.radar-label--d { left: 10%; bottom: 7%; }.radar-label--e { left: 1%; top: 33%; }
.evidence-rows { border-top: 1px solid rgba(17,19,17,.18); }
.evidence-rows > div { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid rgba(17,19,17,.12); font-size: 10px; text-transform: uppercase; }
.prototype-note { margin: 14px 0 0; color: #595d57; font-size: 8px; line-height: 1.5; }

.methodology-section { display: grid; grid-template-columns: .35fr 1.05fr .8fr; gap: 7vw; align-items: start; }
.methodology-index { color: var(--paper); font: 950 clamp(90px,12vw,190px)/.75 var(--display); -webkit-text-stroke: 1px var(--line); writing-mode: vertical-rl; }
.methodology-copy > p { margin: 30px 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.methodology-links { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.methodology-links a { border-bottom: 1px solid var(--line); }
.dimension-list { border-top: 1px solid var(--line); }
.dimension-list > div { display: grid; grid-template-columns: 32px 1fr; padding: 19px 0; border-bottom: 1px solid var(--line); }
.dimension-list span { color: var(--violet); font-size: 9px; font-weight: 900; }
.dimension-list strong { font: 900 21px var(--display); text-transform: uppercase; }
.dimension-list small { grid-column: 2; color: var(--muted); font-size: 10px; }

.faq-section { background: var(--paper-2); }
.faq-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 9vw; }
.faq-intro h2 { margin: 20px 0 10px; font: 950 52px/.9 var(--display); letter-spacing: -.055em; text-transform: uppercase; }
.faq-intro p { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; cursor: pointer; list-style: none; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 25px; font-weight: 300; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 770px; margin: -7px 0 25px; color: var(--muted); font-size: 14px; }

.newsletter-section { padding-block: 80px; background: var(--acid); color: #111311; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 8vw; }
.newsletter-inner h2 { margin: 12px 0 0; font: 950 clamp(42px,5vw,70px)/.88 var(--display); letter-spacing: -.06em; text-transform: uppercase; }
.newsletter-inner form > label { display: block; margin-bottom: 9px; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.newsletter-inner form > div { display: flex; padding: 7px; background: #f8f7f1; border-radius: 999px; }
.newsletter-inner input { width: 100%; min-width: 0; padding: 10px 17px; color: #111; border: 0; outline: 0; background: transparent; }
.newsletter-inner form p { margin: 9px 12px 0; font-size: 8px; }

.site-footer { padding-block: 75px 25px; background: #0b0d0c; color: #f2f0e8; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(3, .7fr); gap: 6vw; padding-bottom: 70px; }
.brand--footer { font-size: 23px; }
.footer-brand p { margin-top: 24px; color: rgba(255,255,255,.5); font-size: 14px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-links h2 { margin: 0 0 13px; color: rgba(255,255,255,.65); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a, .footer-links button { padding: 0; color: rgba(255,255,255,.8); border: 0; background: transparent; font-size: 11px; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: var(--acid); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.68); font-size: 9px; }
.footer-bottom a { color: rgba(255,255,255,.75); }
.footer-bottom p a { text-decoration: underline; text-underline-offset: 2px; }

.compare-tray { position: fixed; z-index: 90; left: 50%; bottom: 18px; width: min(760px, calc(100vw - 30px)); display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 14px 13px 20px; color: #fff; background: rgba(17,19,17,.95); border: 1px solid rgba(255,255,255,.2); border-radius: 18px; box-shadow: 0 25px 80px rgba(0,0,0,.4); backdrop-filter: blur(14px); }
.compare-tray > div { display: flex; align-items: center; gap: 15px; }
.compare-tray__label { color: var(--acid); font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.compare-items { display: flex; gap: 6px; }
.compare-item { padding: 6px 9px; border: 1px solid rgba(255,255,255,.18); border-radius: 7px; font-size: 9px; }
.compare-tray .text-button { color: rgba(255,255,255,.65); }

dialog { color: var(--ink); }
dialog::backdrop { background: rgba(7,9,8,.75); backdrop-filter: blur(8px); }
.search-dialog { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; border: 0; background: color-mix(in srgb, var(--paper) 97%, transparent); }
.dialog-shell { width: min(900px, calc(100% - 40px)); margin: 12vh auto 0; }
.dialog-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.command-search { display: flex; align-items: center; gap: 18px; padding: 12px 4px; border-bottom: 2px solid var(--ink); }
.command-search svg { width: 29px; }
.command-search input { width: 100%; color: var(--ink); border: 0; outline: 0; background: transparent; font: 800 clamp(24px,5vw,54px)/1.2 var(--display); letter-spacing: -.04em; }
.command-search input::placeholder { color: color-mix(in srgb, var(--ink) 25%, transparent); }
.search-results { padding-top: 30px; }
.search-hint { color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.search-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.search-chips button { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; }
.command-result { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--line); }
.command-result strong { display: block; font: 850 20px var(--display); text-transform: uppercase; }
.command-result span { color: var(--muted); font-size: 10px; }
.command-result b { font-size: 18px; }

.standard-dialog { width: min(1040px, calc(100% - 30px)); max-height: calc(100vh - 40px); padding: 0; border: 0; border-radius: var(--radius-lg); background: var(--paper); box-shadow: 0 40px 120px rgba(0,0,0,.4); overflow: auto; }
.standard-dialog__head { position: sticky; z-index: 2; top: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px 34px; background: color-mix(in srgb, var(--paper) 92%, transparent); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.standard-dialog__head h2 { margin: 5px 0 0; font: 950 43px/.9 var(--display); letter-spacing: -.05em; text-transform: uppercase; }
.status-legend { display: flex; gap: 18px; padding: 20px 34px; border-bottom: 1px solid var(--line); font-size: 9px; text-transform: uppercase; }
.status-legend span { display: flex; align-items: center; gap: 6px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; }
.status-dot--live { background: #41c46c; }.status-dot--base { background: var(--violet); }.status-dot--scale { background: var(--muted); }
.feature-list { padding: 15px 34px 40px; }
.feature-group { padding: 24px 0; border-bottom: 1px solid var(--line); }
.feature-group__title { display: flex; justify-content: space-between; margin-bottom: 15px; }
.feature-group__title h3 { margin: 0; font: 900 24px var(--display); text-transform: uppercase; }
.feature-group__title span { color: var(--muted); font-size: 10px; }
.feature-group ol { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px 25px; margin: 0; padding: 0; list-style: none; counter-reset: features; }
.feature-group li { counter-increment: features; display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 11px; }
.feature-group li::before { content: counter(features, decimal-leading-zero); color: var(--ink); font: 800 8px var(--body); }
.feature-group li i { width: 6px; height: 6px; flex: 0 0 auto; border-radius: 50%; background: var(--muted); }
.feature-group li[data-status="live"] i { background: #41c46c; }.feature-group li[data-status="foundation"] i { background: var(--violet); }

.comparison-table-wrap { padding: 30px; overflow-x: auto; }
.comparison-table { width: 100%; min-width: 560px; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; }
.comparison-table th { font: 900 18px var(--display); text-transform: uppercase; }
.comparison-table td:first-child { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.compare-dialog > .button { margin: 0 30px 30px; }

.form-dialog { max-width: 780px; }
.form-dialog > p { margin: 25px 34px 0; color: var(--muted); font-size: 13px; }
.dialog-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 28px 34px 36px; }
.dialog-form label { display: flex; flex-direction: column; gap: 7px; font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.dialog-form input, .dialog-form select, .dialog-form textarea { width: 100%; padding: 12px 13px; color: var(--ink); border: 1px solid var(--line); border-radius: 9px; background: var(--white); outline: 0; text-transform: none; }
.dialog-form input:focus, .dialog-form select:focus, .dialog-form textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(142,114,255,.14); }
.span-2 { grid-column: 1 / -1; }
.checkbox-label { flex-direction: row !important; align-items: start; font-weight: 500 !important; letter-spacing: 0 !important; text-transform: none !important; }
.checkbox-label input { width: 18px; flex: 0 0 auto; }

.cookie-dialog { width: min(560px, calc(100% - 30px)); padding: 0; border: 0; border-radius: var(--radius); background: var(--paper); }
.cookie-dialog form { padding: 30px; }
.cookie-dialog h2 { margin: 8px 0; font: 950 35px var(--display); text-transform: uppercase; }
.cookie-dialog p { color: var(--muted); font-size: 12px; }
.cookie-dialog label { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 0; border-top: 1px solid var(--line); }
.cookie-dialog label span { display: flex; flex-direction: column; }
.cookie-dialog label small { color: var(--muted); }
.cookie-dialog input { width: 20px; height: 20px; accent-color: var(--violet); }
.cookie-actions { display: flex; justify-content: end; gap: 8px; margin-top: 15px; }

.toast { position: fixed; z-index: 1000; left: 50%; bottom: 25px; max-width: min(430px, calc(100% - 30px)); padding: 12px 18px; color: #111; background: var(--acid); border-radius: 999px; box-shadow: 0 12px 40px rgba(0,0,0,.25); font-size: 11px; font-weight: 800; transform: translate(-50%, 150%); transition: transform .25s; }
.toast.is-visible { transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
.reveal--delay { transition-delay: .12s; }.reveal--delay-2 { transition-delay: .24s; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes pulse { 50% { opacity: .45; box-shadow: 0 0 0 9px rgba(217,255,67,0); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1100px) {
    .primary-nav { display: none; position: absolute; left: 24px; right: 24px; top: 75px; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
    .primary-nav.is-open { display: flex; }
    .primary-nav a { padding-block: 13px; border-bottom: 1px solid var(--line); }
    .primary-nav a:last-child { border: 0; }
    .primary-nav a::after { display: none; }
    .menu-toggle { display: inline-grid; }
    .hero { grid-template-columns: 1fr 1fr; gap: 10px; }
    .hero-stage { min-height: 500px; }
    .hero-review-card { left: 1%; }
    .review-grid { grid-template-columns: repeat(2, 1fr); }
    .capability-grid { grid-template-columns: repeat(4, 1fr); }
    .capability-grid article { border-bottom: 1px solid var(--line); }
    .video-grid { grid-template-columns: 1.25fr .75fr; }
}

@media (max-width: 800px) {
    :root { --shell: min(100% - 30px, 720px); }
    .signal-bar__inner { justify-content: center; }
    .signal-bar a { display: none; }
    .signal-bar p { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
    .header-inner { height: 66px; }
    .header-search span, .header-search kbd, .theme-button, .studio-link { display: none; }
    .header-search { width: 42px; justify-content: center; padding: 0; }
    .hero { min-height: auto; grid-template-columns: 1fr; padding-block: 55px 65px; }
    .hero h1 { font-size: clamp(70px,22vw,110px); }
    .hero-stage { min-height: 480px; margin-top: 25px; }
    .hero-proof { flex-wrap: wrap; row-gap: 15px; }
    .section { padding-block: 85px; }
    .section-heading, .section-heading--compact { grid-template-columns: 1fr; gap: 28px; margin-bottom: 45px; }
    .section-heading h2 { font-size: clamp(51px,14vw,80px); }
    .lead-story { grid-template-columns: 1fr; }
    .lead-story__image { min-height: 360px; }
    .catalogue-toolbar { grid-template-columns: 1fr; }
    .filter-pills { overflow-x: auto; }
    .filter-pill { flex: 1 0 auto; }
    .sort-select select { width: 100%; }
    .video-grid, .community-grid, .enterprise-grid, .faq-grid, .newsletter-inner { grid-template-columns: 1fr; }
    .video-facade, .video-facade iframe { min-height: 390px; }
    .capability-grid { grid-template-columns: repeat(2, 1fr); }
    .methodology-section { grid-template-columns: 1fr; }
    .methodology-index { display: none; }
    .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    .signal-bar p { font-size: 10px; }
    .brand > span { font-size: 17px; }
    .hero { padding-top: 42px; }
    .eyebrow span:last-child { display: none; }
    .hero-lede { font-size: 17px; }
    .hero-actions .button { width: 100%; }
    .hero-proof > div { min-width: 30%; padding-right: 10px; margin-right: 10px; }
    .hero-stage { min-height: 350px; }
    .hero-stage::before { inset: 4% 0; }
    .hero-art { width: 104%; }
    .hero-score { width: 82px; height: 82px; right: -2%; }
    .hero-score strong { font-size: 24px; }
    .hero-review-card { width: 200px; bottom: -4%; }
    .topic-track { min-height: 46px; }
    .review-grid { grid-template-columns: 1fr; }
    .lead-story__image { min-height: 280px; }
    .lead-story__content { padding: 30px 25px; }
    .lead-story h3 { font-size: 37px; }
    .score-line { margin-top: 35px; }
    .video-facade, .video-facade iframe { min-height: 270px; }
    .video-caption { align-items: start; flex-direction: column; }
    .video-caption strong { font-size: 19px; }
    .video-notes { padding: 27px; }
    .social-card { grid-template-columns: auto 1fr; padding: 25px; }
    .social-card .circle-link { grid-column: 2; }
    .capability-grid article { min-height: 180px; }
    .capability-grid svg { margin: 22px 0 28px; }
    .feature-ledger { padding: 20px; }
    .feature-ledger small { display: none; }
    .enterprise-panel { box-shadow: 12px 12px 0 rgba(217,255,67,.85); }
    .methodology-links { align-items: stretch; }
    .newsletter-inner form > div { flex-direction: column; border-radius: 18px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1/-1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .compare-tray { align-items: stretch; }
    .compare-tray > div:first-child { display: none; }
    .compare-tray__actions { width: 100%; justify-content: space-between; }
    .feature-group ol { grid-template-columns: 1fr; }
    .standard-dialog__head { padding: 23px; }
    .standard-dialog__head h2 { font-size: 32px; }
    .feature-list, .status-legend { padding-inline: 23px; }
    .dialog-form { grid-template-columns: 1fr; padding: 24px; }
    .dialog-form .span-2 { grid-column: auto; }
    .cookie-actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

@media print {
    .signal-bar, .site-header, .topic-rail, .community-section, .newsletter-section, .site-footer, .compare-tray, dialog, .button, .icon-button { display: none !important; }
    body { background: #fff; color: #000; }
    .section { padding-block: 35px; }
    .review-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Review detail */
.demo-banner { padding: 9px 0; background: var(--acid); color: #111; font-size: 10px; }
.demo-banner .shell { display: flex; justify-content: center; gap: 10px; text-align: center; }
.demo-banner strong { text-transform: uppercase; letter-spacing: .08em; }
.review-header { top: 0; }
.breadcrumbs { display: flex; gap: 9px; padding-block: 25px; color: var(--muted); font-size: 10px; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--ink); text-decoration: underline; }
.review-hero { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 7vw; padding-block: clamp(40px,7vw,90px) clamp(70px,9vw,120px); }
.review-labels { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 34px; }
.review-labels span { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.review-labels .review-labels__demo { color: #111; background: var(--acid); border-color: var(--acid); }
.review-brand { margin: 0 0 5px; color: var(--violet); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.review-hero h1 { margin: 0; font: 950 clamp(63px,7.7vw,115px)/.8 var(--display); letter-spacing: -.08em; text-transform: uppercase; }
.review-deck { max-width: 680px; margin: 33px 0; font-size: clamp(18px,1.7vw,23px); line-height: 1.45; letter-spacing: -.02em; }
.review-byline { display: flex; align-items: center; gap: 12px; }
.review-byline .avatar { width: 42px; height: 42px; font-size: 12px; }
.review-byline strong, .review-byline span { display: block; }
.review-byline strong { font-size: 11px; }
.review-byline span { color: var(--muted); font-size: 12px; }
.review-hero__visual { position: relative; min-width: 0; }
.review-hero__visual > img { width: 100%; aspect-ratio: 1.25; object-fit: cover; border-radius: var(--radius-lg); background: #111; box-shadow: var(--shadow); }
.review-score-badge { position: absolute; left: -40px; bottom: 35px; width: 132px; height: 132px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #111; background: var(--acid); border: 9px solid var(--paper); border-radius: 50%; transform: rotate(-7deg); }
.review-score-badge span { font-size: 8px; font-weight: 900; letter-spacing: .1em; }
.review-score-badge strong { font: 950 48px/.9 var(--display); }
.review-score-badge small { font-size: 8px; }
.review-share { position: absolute; right: 18px; top: 18px; display: flex; gap: 25px; padding: 10px 13px; color: #fff; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(0,0,0,.45); backdrop-filter: blur(9px); font-size: 9px; cursor: pointer; }
.review-jump { position: sticky; z-index: 40; top: 76px; background: var(--ink); color: var(--paper); }
.review-jump .shell { min-height: 54px; display: flex; align-items: center; gap: 28px; overflow-x: auto; }
.review-jump span { color: var(--acid); font-size: 8px; font-weight: 900; letter-spacing: .12em; white-space: nowrap; }
.review-jump a { font-size: 12px; white-space: nowrap; }
.review-layout { display: grid; grid-template-columns: minmax(0, 1fr) 260px; align-items: start; gap: 8vw; padding-block: 90px 130px; }
.review-main > section { scroll-margin-top: 150px; }
.answer-block, .score-section, .pros-cons, .review-video, .offer-section { padding-bottom: 85px; margin-bottom: 85px; border-bottom: 1px solid var(--line); }
.answer-block h2, .review-section-heading h2, .method-callout h2, .review-feedback h2 { margin: 17px 0 28px; font: 950 clamp(44px,5vw,72px)/.88 var(--display); letter-spacing: -.06em; text-transform: uppercase; }
.verdict-copy { margin: 0; font: 400 clamp(23px,2.6vw,35px)/1.35 var(--serif); letter-spacing: -.02em; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 45px; }
.fit-grid > div { display: flex; gap: 15px; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.fit-icon { width: 31px; height: 31px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; font-weight: 900; }
.fit-icon--yes { background: var(--acid); color: #111; }.fit-icon--no { background: var(--coral); color: #111; }
.fit-grid strong { font: 900 15px var(--display); text-transform: uppercase; }
.fit-grid p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.review-section-heading { margin-bottom: 35px; }
.score-list { border-top: 1px solid var(--line); }
.score-row { display: grid; grid-template-columns: minmax(150px,.6fr) 1fr 44px; align-items: center; gap: 25px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.score-row > div strong, .score-row > div span { display: block; }
.score-row > div strong { font: 900 18px var(--display); text-transform: uppercase; }
.score-row > div span { color: var(--muted); font-size: 12px; }
.score-row progress { width: 100%; height: 8px; overflow: hidden; border: 0; border-radius: 999px; background: var(--paper-2); }
.score-row progress::-webkit-progress-bar { background: var(--paper-2); border-radius: 999px; }
.score-row progress::-webkit-progress-value { background: var(--violet); border-radius: 999px; }
.score-row progress::-moz-progress-bar { background: var(--violet); border-radius: 999px; }
.score-row > b { font: 950 23px var(--display); }
.score-context { margin: 20px 0 0; padding-left: 18px; color: var(--muted); border-left: 3px solid var(--acid); font-size: 12px; }
.pros-cons__grid { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: var(--radius); }
.pros-panel, .cons-panel { padding: 32px; }
.pros-panel { background: var(--acid); color: #111; }.cons-panel { background: var(--ink); color: var(--paper); }
.pros-panel > span, .cons-panel > span { font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.pros-cons ul { margin: 25px 0 0; padding: 0; list-style: none; }
.pros-cons li { position: relative; padding: 13px 0 13px 24px; border-bottom: 1px solid rgba(17,19,17,.16); font-size: 12px; }
.cons-panel li { border-color: rgba(255,255,255,.16); }
.pros-cons li::before { content: "↗"; position: absolute; left: 0; }
.review-video .video-facade { min-height: 430px; }
.review-transcript { margin-top: 13px; padding: 14px 17px; border: 1px solid var(--line); border-radius: 9px; font-size: 12px; }
.review-transcript summary { cursor: pointer; font-weight: 800; }
.affiliate-notice { padding: 17px; background: color-mix(in srgb, var(--acid) 35%, var(--paper)); border-radius: 9px; font-size: 13px; }
.offer-table { margin-top: 20px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.offer-table__head, .offer-row { display: grid; grid-template-columns: 1fr 1.3fr .7fr auto; align-items: center; gap: 16px; padding: 13px 18px; }
.offer-table__head { color: var(--muted); background: var(--paper-2); font-size: 8px; font-weight: 900; text-transform: uppercase; }
.offer-row { min-height: 70px; background: var(--white); border-top: 1px solid var(--line); font-size: 12px; }
.offer-row > strong { font: 900 15px var(--display); text-transform: uppercase; }
.no-offers { display: flex; flex-direction: column; gap: 5px; padding: 30px; border: 1px dashed var(--line); border-radius: var(--radius); }
.no-offers span { color: var(--muted); font-size: 12px; }
.method-callout { display: grid; grid-template-columns: 150px 1fr; gap: 40px; padding: 50px; color: #fff; background: #242039; border-radius: var(--radius-lg); }
.method-callout__index { color: var(--acid); font: 950 110px/.8 var(--display); }
.method-callout h2 { margin-bottom: 20px; }
.method-callout p { color: rgba(255,255,255,.67); }
.method-callout a { display: inline-block; margin-top: 10px; color: var(--acid); font-size: 10px; font-weight: 850; text-transform: uppercase; }
.review-feedback { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-top: 80px; }
.review-feedback h2 { margin-bottom: 10px; font-size: 45px; }
.review-feedback p { color: var(--muted); }
.review-feedback > div:last-child { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.review-feedback button, .review-feedback a { padding: 10px 13px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-size: 9px; cursor: pointer; }
.review-feedback button:hover { background: var(--acid); color: #111; }
.review-aside { position: sticky; top: 160px; display: grid; gap: 15px; }
.fact-card, .disclosure-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.fact-card > span, .disclosure-card > span { color: var(--violet); font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.disclosure-card > span { color: var(--acid); }
.fact-card dl { margin: 20px 0 0; }
.fact-card dl > div { display: flex; justify-content: space-between; gap: 15px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.fact-card dt { color: var(--muted); }.fact-card dd { margin: 0; font-weight: 800; text-align: right; }
.disclosure-card { background: var(--ink); color: var(--paper); }
.disclosure-card p { color: rgba(255,255,255,.72); font-size: 12px; }
.disclosure-card a { color: var(--acid); font-size: 9px; font-weight: 800; }
.alternatives-section { background: var(--paper-2); }
.alternative-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.alternative-card { display: flex; flex-direction: column; padding-bottom: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s; }
.alternative-card:hover { transform: translateY(-5px); }
.alternative-card img { width: 100%; aspect-ratio: 1.55; object-fit: cover; background: #111; }
.alternative-card > span, .alternative-card h3, .alternative-card p, .alternative-card b { margin-inline: 22px; }
.alternative-card > span { margin-top: 20px; color: var(--violet); font-size: 8px; font-weight: 900; text-transform: uppercase; }
.alternative-card h3 { margin-top: 8px; margin-bottom: 7px; font: 900 26px/1 var(--display); text-transform: uppercase; }
.alternative-card p { color: var(--muted); font-size: 13px; }
.alternative-card b { margin-top: auto; padding-top: 15px; font-size: 11px; }
.review-footer { padding-top: 30px; }
.error-page { min-height: 100vh; display: grid; place-items: center; }
.error-page main { width: min(650px,calc(100% - 30px)); text-align: center; }
.error-page .brand { justify-content: center; margin-bottom: 50px; }
.error-code { color: var(--violet); font-size: 10px; font-weight: 900; letter-spacing: .15em; }
.error-page h1 { margin: 18px 0; font: 950 clamp(55px,9vw,95px)/.84 var(--display); letter-spacing: -.07em; text-transform: uppercase; }
.error-page p { color: var(--muted); }
.error-page .button { margin-top: 20px; }

@media (max-width: 900px) {
    .review-hero { grid-template-columns: 1fr; }
    .review-hero__visual { width: min(720px, 100%); }
    .review-score-badge { left: 15px; }
    .review-layout { grid-template-columns: 1fr; }
    .review-aside { position: static; grid-template-columns: 1fr 1fr; }
    .alternative-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 560px) {
    .demo-banner span { display: none; }
    .review-hero h1 { font-size: clamp(58px,19vw,90px); }
    .review-score-badge { width: 105px; height: 105px; border-width: 6px; }
    .review-score-badge strong { font-size: 38px; }
    .review-jump { top: 66px; }
    .review-jump .shell { gap: 20px; }
    .review-layout { padding-block: 65px 90px; }
    .fit-grid, .pros-cons__grid { grid-template-columns: 1fr; }
    .score-row { grid-template-columns: 1fr 40px; gap: 13px; }
    .score-row progress { grid-column: 1 / -1; grid-row: 2; }
    .offer-table__head { display: none; }
    .offer-row { grid-template-columns: 1fr 1fr; }
    .offer-row > span:last-child { grid-column: 1 / -1; }
    .method-callout { grid-template-columns: 1fr; padding: 32px 25px; }
    .method-callout__index { font-size: 75px; }
    .review-feedback { align-items: start; flex-direction: column; }
    .review-aside { grid-template-columns: 1fr; }
    .alternative-grid { grid-template-columns: 1fr; }
}
