/* StepCert site. Tokens come from the product itself: the editor's slate header, its grey canvas,
   and the recorder's yellow highlight box, which is used for one job only: marking what was clicked. */
@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/fonts/atkinson-hyperlegible-next-latin-wght-normal.woff2") format("woff2");
  font-weight: 200 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/fonts/atkinson-hyperlegible-next-latin-wght-italic.woff2") format("woff2");
  font-weight: 200 800; font-style: italic; font-display: swap;
}

:root {
  --ink: #1F2937;        /* editor header */
  --ink-soft: #4B5563;
  --muted: #6B7280;
  --paper: #FFFFFF;
  --canvas: #F3F4F6;     /* editor background */
  --line: #E5E7EB;
  --line-strong: #CBD5E1;
  --highlight: #FFD400;  /* StepCert's yellow highlight */
  --highlight-edge: #E0BB00;
  --link: #1D4ED8;
  --pass: #15803D;
  --no: #9CA3AF;
  --font: "Atkinson Hyperlegible Next", "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  --wrap: 1180px;
  --radius: 10px;
  box-sizing: border-box;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  color-scheme: light;
}
*, *::before, *::after { box-sizing: inherit; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(76px + env(safe-area-inset-top, 0px)); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 18px/1.6 var(--font); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-underline-offset: .18em; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--link); outline-offset: 3px; border-radius: 4px; }
b, strong { font-weight: 700; }
h1, h2, h3 { font-weight: 760; letter-spacing: -0.012em; line-height: 1.12; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); letter-spacing: -0.025em; line-height: 1.02; }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; line-height: 1.25; }
p { margin: 0 0 1em; max-width: 66ch; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: max(24px, env(safe-area-inset-left, 0px)); padding-right: max(24px, env(safe-area-inset-right, 0px)); }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 6px; z-index: 100; }
.skip:focus { left: 8px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.fine { font-size: .9rem; color: var(--muted); line-height: 1.5; }

/* ------------------------------------------------------------------ Buttons */
.btn { display: inline-block; text-align: center; font: 650 1rem/1.2 var(--font); border-radius: 8px; padding: .8em 1.25em; border: 1.5px solid transparent; cursor: pointer; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--highlight); border-color: var(--highlight-edge); color: var(--ink); }
.btn-primary:hover { background: #FFDD33; }
.btn-primary:active { transform: translateY(1px); }
.btn-quiet { background: var(--paper); border-color: var(--line-strong); color: var(--ink); }
.btn-quiet:hover { border-color: var(--ink); }
.btn-small { font-size: .9rem; padding: .55em .9em; }
.btn-wide { width: 100%; font-size: 1.1rem; padding: 1em; }
.btn[disabled] { opacity: .55; cursor: progress; }

/* ------------------------------------------------------------------ Header */
.site-head { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.94); backdrop-filter: saturate(1.4) blur(8px); border-bottom: 1px solid var(--line); padding-top: env(safe-area-inset-top, 0px); }
.head-row { display: flex; align-items: center; gap: 28px; min-height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 780; font-size: 1.2rem; color: var(--ink); text-decoration: none; letter-spacing: -0.01em; }
.mark { width: 30px; height: 30px; }
.site-nav { display: flex; gap: 22px; margin-left: auto; }
.site-nav a { color: var(--ink-soft); text-decoration: none; font-size: .98rem; }
.site-nav a:hover { color: var(--ink); text-decoration: underline; }
@media (max-width: 1180px) { .site-nav { gap: 16px; } .site-nav a { font-size: .92rem; } }
.menu { display: none; position: relative; }
.menu-btn { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; font: 650 .95rem/1 var(--font); color: var(--ink); border: 1.5px solid var(--line-strong); border-radius: 8px; padding: 9px 12px; background: var(--paper); }
.menu-btn::-webkit-details-marker { display: none; }
.menu-btn:hover { border-color: var(--ink); }
.menu-icon, .menu-icon::before, .menu-icon::after { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }
.menu-icon { position: relative; }
.menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; }
.menu-icon::before { top: -6px; } .menu-icon::after { top: 6px; }
.menu[open] .menu-icon { background: transparent; }
.menu[open] .menu-icon::before { top: 0; transform: rotate(45deg); }
.menu[open] .menu-icon::after { top: 0; transform: rotate(-45deg); }
.menu-panel { position: absolute; right: 0; top: calc(100% + 10px); width: min(280px, calc(100vw - 32px)); background: var(--paper); border: 1px solid var(--line-strong); border-radius: 12px; box-shadow: 0 20px 40px -16px rgba(31, 41, 55, .35); padding: 8px; display: grid; z-index: 50; }
.menu-panel a { display: block; padding: 11px 12px; border-radius: 8px; color: var(--ink); text-decoration: none; font-size: 1rem; }
.menu-panel a:hover, .menu-panel a:focus-visible { background: var(--canvas); }
@media (max-width: 1060px) { .site-nav { display: none; } .menu { display: block; margin-left: auto; } }
@media (max-width: 420px) { .head-row { gap: 10px; } .head-row > .btn { font-size: .82rem; padding: .55em .7em; } .brand span { font-size: 1.05rem; } }
@media (max-width: 370px) { .brand span { display: none; } .menu-btn { padding: 9px 10px; } }

/* ------------------------------------------------------------------ Hero */
/* Headline across the page, then the product itself at full width: the screenshot is the proof. */
.hero { padding-top: 52px; padding-bottom: 80px; }
.hero-copy { display: grid; grid-template-columns: minmax(0, 1fr); align-items: end; margin-bottom: 40px; }
.hero-copy h1 { grid-column: 1 / -1; max-width: 19ch; margin-bottom: 28px; }
.hero-copy .lede, .hero-copy .cta-row, .hero-copy .fine { grid-column: 1; }
.lede { font-size: 1.22rem; color: var(--ink-soft); max-width: 52ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 16px; }
.hero-copy .fine { margin-bottom: 0; }
.hero-shot { margin: 0; }
.hero-shot img { border-radius: 12px; border: 1px solid var(--line-strong); box-shadow: 0 24px 60px -24px rgba(31, 41, 55, .35); cursor: zoom-in; }
.hero-shot figcaption, .shot figcaption, .outputs figcaption { font-size: .88rem; color: var(--muted); margin-top: 10px; line-height: 1.45; }
@media (max-width: 900px) { .hero { padding-top: 40px; } .hero-copy { grid-template-columns: minmax(0, 1fr); margin-bottom: 32px; } }

/* ------------------------------------------------------------------ Problem */
.problem { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 56px; padding-top: 56px; padding-bottom: 72px; border-top: 1px solid var(--line); }
.problem-body p:first-child { font-size: 1.2rem; }
@media (max-width: 900px) { .problem { grid-template-columns: minmax(0, 1fr); gap: 20px; } }

/* ------------------------------------------------------------------ Shared blocks */
.shot { margin: 0; }
.shot img, .outputs img { border-radius: var(--radius); border: 1px solid var(--line-strong); background: #fff; cursor: zoom-in; }
.section-intro { max-width: 760px; margin-bottom: 40px; }
.section-intro h2 { margin-bottom: 16px; }
.section-intro p { font-size: 1.12rem; color: var(--ink-soft); }
.ticks { list-style: none; padding: 0; margin: 0 0 1em; }
.ticks li { position: relative; padding-left: 30px; margin: 8px 0; }
.ticks li::before { content: ""; position: absolute; left: 2px; top: .32em; width: 16px; height: 16px; border-radius: 3px; box-shadow: inset 0 0 0 2px var(--ink); }
.ticks li::after { content: ""; position: absolute; left: 7px; top: .5em; width: 5px; height: 9px; border: solid var(--ink); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.pair { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 36px; align-items: start; }
.pair-text { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 56px; align-items: center; }
.pair-text h2 { margin-bottom: 18px; }
@media (max-width: 900px) { .pair, .pair-text { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------------ How it works (a real sequence, so it is numbered) */
.how { background: var(--canvas); padding: 88px 0; }
.how > .wrap > h2 { margin-bottom: 48px; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 88px; }
.step { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 48px; align-items: start; }
.step h3 { display: flex; align-items: center; gap: 14px; font-size: 1.6rem; margin-bottom: 14px; }
.badge { flex: none; width: 36px; height: 36px; border-radius: 50%; background: var(--highlight); color: var(--ink); font-size: 1.05rem; font-weight: 800; display: grid; place-items: center; box-shadow: 0 0 0 2.5px var(--ink); }
.outputs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; align-items: start; }
.outputs figure { margin: 0; }
@media (max-width: 1000px) { .step { grid-template-columns: minmax(0, 1fr); gap: 24px; } }
@media (max-width: 640px) { .outputs { grid-template-columns: repeat(2, minmax(0, 1fr)); } .how { padding: 64px 0; } .steps { gap: 64px; } }

/* ------------------------------------------------------------------ Courses */
.courses { padding: 96px 0; }
.levels { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 44px; align-items: center; margin-bottom: 44px; }
.level-list { margin: 0; display: grid; gap: 4px 0; }
.level-list dt { font-weight: 760; font-size: 1.15rem; margin-top: 18px; }
.level-list dt:first-child { margin-top: 0; }
.level-list dd { margin: 2px 0 0; color: var(--ink-soft); }
.lms-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px; align-items: start; margin-top: 64px; padding-top: 56px; border-top: 1px solid var(--line); }
.lms-grid h3 { margin: 0 0 12px; }
.lms-grid h3 + .ticks { margin-bottom: 32px; }
.standards { display: grid; grid-template-columns: max-content minmax(0, 1fr); gap: 8px 18px; margin: 0 0 18px; }
.standards dt { font-weight: 760; }
.standards dd { margin: 0; color: var(--ink-soft); }
.aside-note { margin-top: 48px; padding: 20px 24px; border-left: 4px solid var(--ink); background: var(--canvas); border-radius: 0 var(--radius) var(--radius) 0; max-width: 78ch; }
.lms-side .aside-note { margin-top: 32px; max-width: none; }
@media (max-width: 900px) { .levels, .lms-grid { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------------ Privacy */
.private { padding-top: 88px; padding-bottom: 88px; border-top: 1px solid var(--line); }
.private-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 48px; align-items: start; }
.facts { margin: 0; }
.facts dt { font-weight: 760; margin-top: 20px; }
.facts dt:first-child { margin-top: 0; }
.facts dd { margin: 4px 0 0; color: var(--ink-soft); }
@media (max-width: 900px) { .private-grid { grid-template-columns: minmax(0, 1fr); } }

.branding { background: var(--canvas); padding: 88px 0; }

/* ------------------------------------------------------------------ Compare */
.compare { padding-top: 96px; padding-bottom: 88px; }
.table-scroll { overflow-x: auto; border: 1px solid var(--line-strong); border-radius: var(--radius); }
.compare-table { border-collapse: collapse; width: 100%; min-width: 720px; font-size: .97rem; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.compare-table tbody tr:last-child > * { border-bottom: 0; }
.compare-table thead th { font-size: 1.02rem; font-weight: 760; background: var(--canvas); }
.compare-table thead small { display: block; font-weight: 400; font-size: .82rem; color: var(--muted); }
.compare-table tbody th { font-weight: 650; width: 24%; white-space: nowrap; }
.compare-table .us { background: #FFFBEB; box-shadow: inset 3px 0 0 var(--highlight), inset -3px 0 0 var(--highlight); }
.compare-table thead .us { box-shadow: inset 3px 0 0 var(--highlight), inset -3px 0 0 var(--highlight), inset 0 3px 0 var(--highlight); background: #FFF4B8; }
.compare-table .no { color: var(--no); }
.compare-table .part { color: var(--ink-soft); }
.compare-table .also-head th { background: var(--canvas); font-size: .82rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); padding-top: 10px; padding-bottom: 10px; border-top: 1px solid var(--line-strong); }
.compare-table .nc { text-align: center; vertical-align: middle; color: var(--muted); font-size: .9rem; background: repeating-linear-gradient(135deg, #FAFAFB 0 10px, #F3F4F6 10px 20px); }
.compare-table .also tr:last-child > * { border-bottom: 0; }
.compare-table .yes::before { content: "✓ "; font-weight: 800; color: var(--pass); }
.compare .fine { margin-top: 14px; max-width: 90ch; }
.compare .swipe-hint { display: none; margin: 0 0 8px; }
@media (max-width: 900px) { .compare .swipe-hint { display: block; } }
.honest { margin-top: 36px; max-width: 78ch; }
.honest h3 { margin-bottom: 10px; }

/* ------------------------------------------------------------------ Calculator */
.value { background: var(--canvas); padding: 80px 0; }
.calc { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 24px; }
.calc label { display: grid; gap: 6px; font-weight: 650; font-size: .95rem; align-content: start; }
.calc input { font: 650 1.25rem/1.2 var(--font); padding: 10px 12px; border: 1.5px solid var(--line-strong); border-radius: 8px; width: 100%; color: var(--ink); }
.calc input:focus-visible { border-color: var(--link); outline-offset: 1px; }
.calc-out { grid-column: 1 / -1; display: block; border-top: 1px solid var(--line); padding-top: 18px; font-size: 1.1rem; }
.calc-out b { font-size: 1.6rem; }
@media (max-width: 700px) { .calc { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------------ Pricing: selected the way the Files tab marks the chosen format */
.pricing { padding-top: 96px; padding-bottom: 96px; }
.price-card { max-width: 620px; margin: 0 auto; border: 1.5px solid var(--ink); outline: 4px solid var(--highlight); outline-offset: 5px; border-radius: 14px; padding: 36px 36px 28px; }
.price-head h2 { font-size: 1.9rem; margin-bottom: 18px; }
.price { font-size: 4.2rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin: 0 0 10px; }
.price small { font-size: 1.15rem; font-weight: 500; letter-spacing: 0; color: var(--ink-soft); margin-left: 8px; }
.price-for { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 22px; }
.price-list { margin: 0 0 28px; }
.price-sales { margin-top: 18px; padding: 14px 16px; border-radius: var(--radius); background: #FFFBEB; border: 1px solid #FDE68A; }
.price-sales p { margin: 0; font-size: 1rem; }
.price-sales .fine { margin-top: 6px; font-size: .88rem; }
.checkout-status { min-height: 1.4em; margin: 12px 0 4px; font-size: .95rem; }
.checkout-status.bad, .form-status.bad, .error { color: #B91C1C; }
@media (max-width: 560px) { .price-card { padding: 26px 20px 20px; } }

/* ------------------------------------------------------------------ FAQ */
.faq { padding-top: 40px; padding-bottom: 88px; }
.faq h2 { margin-bottom: 26px; }
.faq-list { max-width: 820px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 40px 18px 0; font-weight: 700; font-size: 1.1rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 14px; font-size: 1.5rem; font-weight: 400; color: var(--muted); }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--ink-soft); padding-bottom: 8px; }

.closing { padding-top: 72px; padding-bottom: 104px; border-top: 1px solid var(--line); text-align: center; }
.closing h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.closing .cta-row { justify-content: center; }

/* ------------------------------------------------------------------ Other pages */
.page { padding-top: 64px; padding-bottom: 96px; max-width: 860px; }
.page h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 28px; }
.page h2 { font-size: 1.4rem; margin: 36px 0 12px; }
.licence { border: 1.5px solid var(--ink); outline: 4px solid var(--highlight); outline-offset: 5px; border-radius: 12px; padding: 24px; margin: 8px 0 12px; }
.key-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin: 0; }
.key { font-size: 1.35rem; font-weight: 700; letter-spacing: .04em; background: var(--canvas); padding: 10px 14px; border-radius: 8px; word-break: break-all; }
.next { padding-left: 1.3em; }
.next li { margin: 8px 0; }
.manage-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; }
.panel { border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 24px; display: grid; gap: 12px; align-content: start; }
.panel h2 { margin: 0; font-size: 1.25rem; }
.panel p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.panel label { display: grid; gap: 6px; font-weight: 650; font-size: .95rem; }
.panel input { font: 500 1.05rem/1.2 var(--font); padding: 10px 12px; border: 1.5px solid var(--line-strong); border-radius: 8px; width: 100%; }
.panel .btn { justify-self: start; }
.form-status { min-height: 1.3em; font-size: .95rem; }
.legal h2 { font-size: 1.25rem; }
@media (max-width: 760px) { .manage-grid { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------------ Footer */
.site-foot { background: var(--ink); color: #D1D5DB; padding: 28px 0 calc(28px + env(safe-area-inset-bottom, 0px)); font-size: .95rem; }
.foot-row { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-content: space-between; }
.foot-row p { margin: 0; }
.foot-row nav { display: flex; flex-wrap: wrap; gap: 20px; }
.site-foot a { color: #F3F4F6; }

.manage-note { padding: 12px 16px; border: 1px solid var(--line-strong); border-left: 4px solid var(--highlight); border-radius: var(--radius); background: var(--paper); max-width: 70ch; }

/* ------------------------------------------------------------------ Hero kicker */
.kicker { grid-column: 1 / -1; font-size: .95rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 14px; }
.kicker::before { content: ""; display: inline-block; width: 12px; height: 12px; margin-right: 10px; border-radius: 2px; background: var(--highlight); box-shadow: 0 0 0 2px var(--ink); vertical-align: -1px; }

/* ------------------------------------------------------------------ Hero: headline and the five points side by side */
.hero { padding-bottom: 44px; }
.hero-copy { grid-template-columns: minmax(0, 11fr) minmax(0, 9fr); column-gap: 56px; margin-bottom: 0; align-items: start; }
.hero-copy .kicker, .hero-copy h1, .hero-copy .cta-row, .hero-copy .fine { grid-column: 1; }
.hero-copy h1 { margin-bottom: 8px; }
.hero-points { grid-column: 2; grid-row: 1 / span 4; list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 14px; align-self: center; }
.hero-points li { position: relative; padding-left: 36px; font-size: 1.12rem; line-height: 1.45; color: var(--ink-soft); }
.hero-points li::before { content: ""; position: absolute; left: 0; top: .12em; width: 22px; height: 22px; border-radius: 5px; background: var(--highlight); box-shadow: 0 0 0 2px var(--ink); }
.hero-points li::after { content: ""; position: absolute; left: 8px; top: .3em; width: 6px; height: 11px; border: solid var(--ink); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.hero-points b { color: var(--ink); }
@media (max-width: 900px) {
  .hero-copy { grid-template-columns: minmax(0, 1fr); }
  .hero-points { grid-column: 1; grid-row: auto; margin: 20px 0 4px; }
}

/* ------------------------------------------------------------------ Try the real outputs */
.try { background: var(--canvas); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 44px 0 64px; }
.try-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 32px; margin-bottom: 28px; }
.try-head h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
.try-head p { margin: 0; color: var(--ink-soft); max-width: 56ch; }
.try-feature { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; margin-bottom: 20px; }
.try-card { background: var(--paper); border: 1px solid var(--line-strong); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
.try-thumb { display: block; border-bottom: 1px solid var(--line); aspect-ratio: 1280 / 964; overflow: hidden; background: #fff; }
.try-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: left top; transition: transform .2s ease; }
.try-thumb:hover img { transform: scale(1.015); }
.try-thumb-lms { aspect-ratio: 16 / 10; }
.try-levels { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.try-levels li { font-size: .86rem; line-height: 1.2; padding: 6px 11px; border-radius: 99px; background: var(--canvas); border: 1px solid var(--line-strong); }
.try-levels li:nth-child(n+5) { background: #FFFBEB; border-color: #FDE68A; font-weight: 650; }
.try-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.try-body h3 { font-size: 1.35rem; margin: 2px 0 8px; }
.try-body p { font-size: 1rem; color: var(--ink-soft); margin-bottom: 14px; }
.try-tag { font-size: .8rem !important; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted) !important; margin: 0 !important; }
.try-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }

/* The video player: the browser's own controls, plus buttons for 5-second and step-by-step jumps */
.vplayer { background: #111827; border-bottom: 1px solid var(--line); }
.vplayer video { width: 100%; height: auto; display: block; aspect-ratio: 1280 / 964; background: #fff; }
.vbar { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 8px 10px; background: #111827; }
.vbar button { font: 650 .9rem/1 var(--font); color: #F9FAFB; background: #374151; border: 1px solid #4B5563; border-radius: 7px; padding: 8px 11px; cursor: pointer; min-height: 36px; }
.vbar button:hover { background: #4B5563; }
.vbar button:focus-visible { outline: 3px solid var(--highlight); outline-offset: 2px; }
.vbar .vplay { background: var(--highlight); border-color: var(--highlight-edge); color: var(--ink); min-width: 92px; }
.vbar .vplay:hover { background: #FFDD33; }
.vtime { margin-left: auto; color: #D1D5DB; font-size: .88rem; font-variant-numeric: tabular-nums; }
.vnow { margin-bottom: 8px !important; font-size: .95rem !important; }
.vnow b { color: var(--ink); }
.vchapters { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.vchapters button { font: 500 .86rem/1.2 var(--font); color: var(--ink); background: var(--canvas); border: 1px solid var(--line-strong); border-radius: 99px; padding: 6px 11px; cursor: pointer; }
.vchapters button:hover { border-color: var(--ink); }
.vchapters button[aria-current="step"] { background: var(--highlight); border-color: var(--highlight-edge); font-weight: 700; }

.try-docs { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.doc-tile { background: var(--paper); border: 1px solid var(--line-strong); border-radius: 12px; padding: 14px 14px 16px; display: flex; flex-direction: column; }
.doc-thumb { display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 8px; border: 1px solid var(--line); background: #fff; margin-bottom: 12px; }
.doc-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.doc-file { display: grid; place-items: center; background: repeating-linear-gradient(0deg, #F9FAFB 0 18px, #F3F4F6 18px 19px); }
.file-icon { position: relative; width: 78px; height: 96px; border-radius: 6px 22px 6px 6px; background: #fff; border: 2px solid var(--ink); display: grid; place-items: end center; padding-bottom: 12px; font: 800 .82rem/1 var(--font); letter-spacing: .06em; color: #fff; box-shadow: 0 10px 24px -14px rgba(31, 41, 55, .5); }
.file-icon::before { content: ""; position: absolute; left: 12px; right: 12px; top: 16px; height: 34px; background: repeating-linear-gradient(180deg, var(--line-strong) 0 3px, transparent 3px 9px); }
.file-docx { background: linear-gradient(#fff 0 62%, #1D4ED8 62%); }
.file-pptx { background: linear-gradient(#fff 0 62%, #C2410C 62%); }
.doc-tile h3 { font-size: 1.08rem; margin-bottom: 4px; }
.doc-tile p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 10px; line-height: 1.4; }
.doc-link { margin-top: auto; font-weight: 700; font-size: .95rem; }
.try-more { margin: 22px 0 0; font-weight: 650; }
.vguide-link { margin: 12px 0 0; font-weight: 650; font-size: .95rem; }
@media (max-width: 900px) { .try-feature { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 600px) {
  .try-docs { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } .vtime { width: 100%; margin-left: 0; } .try { padding: 40px 0 56px; }
  .vchapters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
  .vchapters li { flex: none; }
}

/* ------------------------------------------------------------------ The four reasons */
.usps { padding-top: 72px; padding-bottom: 88px; }
.usp-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.usp { border: 1px solid var(--line-strong); border-radius: 12px; padding: 24px 22px 20px; display: flex; flex-direction: column; background: var(--paper); }
.usp h3 { font-size: 1.2rem; margin: 14px 0 10px; }
.usp p { font-size: 1rem; color: var(--ink-soft); flex: 1; }
.usp a { font-weight: 650; font-size: .98rem; }
.usp-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--highlight); box-shadow: 0 0 0 2px var(--ink); display: grid; place-items: center; }
.usp-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 1060px) { .usp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .usp-grid { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------------ Slideware */
.slideware { background: var(--ink); color: #F3F4F6; padding: 96px 0; }
.slideware .section-intro p { color: #D1D5DB; }
.versus { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; margin-bottom: 56px; }
.versus-col { border: 1px solid #4B5563; border-radius: 12px; padding: 26px 26px 12px; }
.versus-col h3 { margin-bottom: 14px; }
.versus-col.us { background: var(--paper); color: var(--ink); border-color: var(--paper); outline: 4px solid var(--highlight); outline-offset: 4px; }
.crosses { list-style: none; padding: 0; margin: 0 0 1em; color: #D1D5DB; }
.crosses li { position: relative; padding-left: 30px; margin: 8px 0; }
.crosses li::before { content: "✕"; position: absolute; left: 3px; top: 0; font-weight: 800; color: #9CA3AF; }
.uses { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px 32px; }
.uses li { color: #D1D5DB; font-size: 1rem; border-top: 1px solid #4B5563; padding-top: 14px; }
.uses b { display: block; color: #fff; font-size: 1.08rem; margin-bottom: 4px; }
@media (max-width: 900px) { .versus { grid-template-columns: minmax(0, 1fr); } .uses { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
@media (max-width: 600px) { .uses { grid-template-columns: minmax(0, 1fr); } .slideware { padding: 64px 0; } }

/* ------------------------------------------------------------------ Proof */
.lvl-tag { display: inline-block; margin-left: 8px; font-size: .78rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; vertical-align: 2px; padding: 2px 8px; border-radius: 99px; background: var(--canvas); border: 1px solid var(--line-strong); color: var(--ink-soft); }
.trio { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 900px) { .trio { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------------ Sharing (.walk) */
.share { background: var(--canvas); padding: 96px 0; }
.handoff { list-style: none; counter-reset: h; margin: 0 0 48px; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.handoff li { counter-increment: h; position: relative; background: var(--paper); border: 1px solid var(--line-strong); border-radius: 12px; padding: 54px 20px 18px; font-size: 1rem; color: var(--ink-soft); }
.handoff li::before { content: counter(h); position: absolute; left: 20px; top: 16px; width: 28px; height: 28px; border-radius: 50%; background: var(--highlight); box-shadow: 0 0 0 2px var(--ink); color: var(--ink); font-weight: 800; font-size: .95rem; display: grid; place-items: center; }
.handoff li b { color: var(--ink); }
.share .pair { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.share-side .shot { margin-bottom: 20px; }
kbd { font: 600 .85em/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; padding: 2px 6px; border: 1px solid var(--line-strong); border-bottom-width: 2px; border-radius: 5px; background: var(--paper); }
@media (max-width: 1000px) { .handoff { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
@media (max-width: 900px) { .share .pair { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 560px) { .handoff { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------------ Formats */
.formats { padding-top: 96px; padding-bottom: 96px; }
.format-grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 4fr) minmax(0, 5fr); gap: 36px; align-items: start; }
.format-group h3 { margin: 0 0 12px; }
.format-group h3:not(:first-child) { margin-top: 28px; }
.format-group dl { margin: 0; }
.format-group dt { font-weight: 760; margin-top: 12px; }
.format-group dt small { font-weight: 400; color: var(--muted); font-size: .85rem; margin-left: 4px; }
.format-group dd { margin: 2px 0 0; color: var(--ink-soft); font-size: .98rem; }
.format-anim { margin: 0; }
.format-anim img { border-radius: var(--radius); border: 1px solid var(--line-strong); cursor: zoom-in; }
.format-anim figcaption { font-size: .88rem; color: var(--muted); margin-top: 10px; }
@media (max-width: 1000px) { .format-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } .format-anim { grid-column: 1 / -1; } }
@media (max-width: 640px) { .format-grid { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------------ Demo downloads */
.demo { background: #FFFBEB; border-top: 1px solid #FDE68A; border-bottom: 1px solid #FDE68A; padding: 96px 0; }
.demo-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 44px; align-items: start; margin-bottom: 48px; }
.demo-what h3 { margin-bottom: 10px; }
.demo-what .ticks li { font-size: 1rem; margin: 6px 0; }
.demo-try { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 12px; }
.downloads { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.dl-group h3 { font-size: 1.1rem; margin: 0 0 10px; }
.dl-group h3:not(:first-child) { margin-top: 22px; }
.dl-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.dl-list a { display: flex; align-items: center; gap: 12px; padding: 12px 14px 12px 44px; position: relative; background: var(--paper); border: 1px solid var(--line-strong); border-radius: 8px; color: var(--ink); text-decoration: none; }
.dl-list a::before { content: ""; position: absolute; left: 14px; top: 50%; width: 18px; height: 18px; margin-top: -9px; background: no-repeat center / 18px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F2937' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4v11M7 10l5 5 5-5M5 20h14'/%3E%3C/svg%3E"); }
.dl-list a:hover { border-color: var(--ink); box-shadow: 0 0 0 2px var(--highlight); }
.dl-list b { font-weight: 700; }
.dl-list span { margin-left: auto; font-size: .85rem; color: var(--muted); text-align: right; }
.demo-note { margin-top: 28px; max-width: 100ch; }
.dl-note { font-size: .88rem; color: var(--muted); margin: -4px 0 10px; }
.dl-open a::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231F2937'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E"); }
.brand-prompt { margin-top: 24px; background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 4px 20px; }
.brand-prompt summary { cursor: pointer; font-weight: 700; padding: 14px 0; }
.brand-prompt[open] { padding-bottom: 18px; }
.brand-prompt p { font-size: 1rem; }
.brand-prompt .fine { margin: 12px 0 0; font-size: .9rem; }
.prompt { white-space: pre-wrap; font: .82rem/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; background: var(--canvas); border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; max-height: 320px; overflow: auto; margin: 0 0 12px; }
@media (max-width: 1000px) { .demo-grid { grid-template-columns: minmax(0, 1fr); } .downloads { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
@media (max-width: 640px) { .downloads { grid-template-columns: minmax(0, 1fr); } .demo { padding: 64px 0; } }

/* ------------------------------------------------------------------ Everything else */
.features { padding-top: 96px; padding-bottom: 40px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.feature-grid h3 { margin-bottom: 10px; }
.feature-grid .ticks li { font-size: .98rem; }
@media (max-width: 1000px) { .feature-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: minmax(0, 1fr); } }

.closing-sub { margin: 16px auto 0; font-size: 1.2rem; color: var(--ink-soft); }

/* ------------------------------------------------------------------ Screenshot zoom */
.zoom { border: 0; padding: 0; max-width: min(1500px, 96vw); width: 96vw; background: transparent; }
.zoom::backdrop { background: rgba(17, 24, 39, .82); }
.zoom img { width: 100%; border-radius: 10px; background: #fff; }
.zoom p { color: #F3F4F6; margin: 12px 4px 0; max-width: none; }
.zoom-close { position: fixed; top: calc(14px + env(safe-area-inset-top, 0px)); right: 16px; font: 650 .95rem/1 var(--font); background: #fff; color: var(--ink); border: 0; border-radius: 8px; padding: 10px 14px; cursor: pointer; }

@media print { .site-head { display: none !important; } }