/* ============================================================
   Inspect — additive layer on top of the LOCKED SEOryon brand
   system v4 (style.css is kept BYTE-FOR-BYTE and is NOT edited).
   New components + pure-CSS motion. Same tokens, fonts, restraint.
   ============================================================ */

/* ---- Keyframes (mirrored from the founder's site) ---- */
@keyframes heroRise   { 0% { opacity:0; transform: translateY(10px);} 100% { opacity:1; transform:none; } }
@keyframes drawLine   { 100% { stroke-dashoffset: 0; } }
@keyframes gradient-flow { 100% { background-position: 200% center; } }
@keyframes oryonSpin  { 100% { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes oryonRipple{ 0% { opacity:.5; transform: translate(-50%,-50%) scale(.5);} 100% { opacity:0; transform: translate(-50%,-50%) scale(2);} }
@keyframes oryonBreathe { 0%,100% { opacity:.4; transform: translate(-50%,-50%) scale(.95);} 50% { opacity:.72; transform: translate(-50%,-50%) scale(1.1);} }
@keyframes toolFloat  { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-9px);} }
@keyframes ping       { 75%,100% { transform: scale(2.4); opacity:0; } }

/* ============================================================
   Scroll-reveal system (gated on .js so no-JS shows everything)
   ============================================================ */
.js .reveal {
  opacity: 0; transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: calc(var(--rd, 0) * 90ms);
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none; }
/* Components that fade but carry their own inner motion shouldn't also slide */
.js .signal-hub.reveal, .js .ai-monitor.reveal { transform: none; }

/* ---- Language switcher (Geist Mono segmented control) ---- */
.lang-switch {
  display: inline-flex; align-items: center;
  border: 1px solid var(--surface-border);
  border-radius: 10px; overflow: hidden; background: var(--surface-card);
}
.lang-btn {
  font-family: 'Geist Mono', monospace; font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--ink-muted);
  background: transparent; border: none; cursor: pointer;
  padding: 7px 10px; transition: background-color 0.15s, color 0.15s;
}
.lang-btn + .lang-btn { border-left: 1px solid var(--surface-border); }
.lang-btn:hover { color: var(--brand-hover); background: var(--brand-tint); }
.lang-btn.active { color: var(--ink-on-brand); background: var(--brand-primary); }

/* ---- Hero actions ---- */
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 4px; }

/* Hero/primary buttons sit at score.seoryon.com's action scale (~52px tall).
   The Oryon gradient (135deg #9A88FF→#6D5AF6→#4A35E8) is reserved for the ONE
   primary conversion action (the bottom .btn-gradient-lg) per the brand system. */
.btn-gradient {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Geist', sans-serif; font-weight: 700; font-size: 15px;
  color: var(--ink-on-brand);
  min-height: 52px; padding: 0 26px; border: none; border-radius: 10px; cursor: pointer;
  background: var(--oryon-gradient); background-size: 100% 100%;
  box-shadow: var(--shadow-brand-soft);
  transition: opacity 0.15s, transform 0.05s, box-shadow 0.15s;
}
.btn-gradient:hover { opacity: 0.93; color: var(--ink-on-brand); box-shadow: var(--shadow-brand); }
.btn-gradient:active { transform: translateY(1px); }
.btn-gradient-lg { font-size: 16px; padding: 0 32px; min-height: 52px; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Geist', sans-serif; font-weight: 600; font-size: 15px;
  color: var(--brand-hover);
  min-height: 52px; padding: 0 22px; border-radius: 10px;
  border: 1px solid var(--surface-border); background: var(--surface-card);
  transition: border-color 0.15s, background-color 0.15s, color 0.15s;
}
.btn-ghost:hover { border-color: var(--brand-primary); background: var(--brand-tint); color: var(--brand-hover); }

/* ---- "Coming soon to Chrome" state (extension not yet published) ----
   Calm, on-brand secondary treatment — reads as "launching shortly", not
   disabled/apology. Overrides the active gradient/solid CTA fills. Higher
   specificity (.cta-link/.btn-gradient + .is-soon) so it wins without !important.
   Flip back via CHROME_STORE_URL in app.js. */
/* `.navlinks a.cta-link.is-soon` (0,3,1) is needed to beat style.css's
   `.navlinks a.cta-link` (0,2,1); `.btn-gradient.is-soon` (0,2,0) already wins.
   Split into nav-chip vs hero-button so they can size independently. */
.navlinks a.cta-link.is-soon {                /* nav: soft brand-tint chip, 38px */
  height: 38px; padding: 0 15px;
  font-size: 14px; font-weight: 600; border-radius: 10px;
  background: var(--brand-tint);
  color: var(--brand-hover);
  border: 1px solid var(--brand-light);
  box-shadow: none;
  cursor: default;
}
.btn-gradient.is-soon {                        /* hero: soft brand-tint, full 52px button */
  background: var(--brand-tint);
  color: var(--brand-hover);
  border: 1px solid var(--brand-light);
  box-shadow: none;
  cursor: default;
}
.navlinks a.cta-link.is-soon:hover,
.navlinks a.cta-link.is-soon:active,
.btn-gradient.is-soon:hover,
.btn-gradient.is-soon:active {
  background: var(--brand-tint);
  color: var(--brand-hover);
  opacity: 1;
  box-shadow: none;
  transform: none;
}

/* ---- Score-sibling polish: roomier layout + nav chips + bigger logo ---- */
/* Wide content well — Inspect's detailed audit screenshots need to read at a
   glance, so we use more of the page than score's text-only 980px. Body TEXT
   blocks stay character-capped (see .sub / .features-sub / .feature-text p /
   .faq-item p) so line length stays readable even though images go full-width.
   Topbar widened to match so the nav aligns with the content edges. */
main { max-width: 1240px; }
.topbar { max-width: 1240px; }

/* Nav secondary chips (How it works · FAQ) — fixed 38px white-chip height to
   match score.seoryon.com's nav chrome (style.css supplies the white bg / #E7E4F2
   border / #3B28CB text / 10px radius; we just set the height + horizontal padding). */
.navlinks a.nav-secondary { height: 38px; padding: 0 14px; }

/* Bigger nav logo (score uses the same 30px asset; founder wants more presence). */
.logo-img { height: 34px; }

/* Readable line-length: the container + images go wide, but full-width body
   TEXT blocks stay a comfortable measure (~640–720px) so lines don't run long.
   (The ch-based caps resolve loose in Geist/Jakarta, so we pin explicit px.) */
.sub { max-width: 660px; }

/* ---- Screenshot frames (hero + features) ---- */
.hero-shot {
  margin: 48px 0 12px;
  border: 1px solid var(--surface-border); border-radius: 20px;
  background: var(--surface-soft-card); box-shadow: var(--shadow-card);
  overflow: hidden;
}
/* Image fills the frame cleanly (no fixed height → grows to the screenshot). */
.hero-shot .shot { display: block; width: 100%; height: auto; }
.hero-shot .shot-ph { min-height: 380px; }

.shot-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; min-height: 280px; padding: 40px;
  background: repeating-linear-gradient(135deg, var(--surface-section) 0 14px, var(--surface-soft-card) 14px 28px);
  color: var(--ink-muted);
}
/* The placeholder MUST respect the `hidden` attribute. Without this, the author
   rule `.shot-ph { display:flex }` overrides the UA `[hidden]{display:none}`, so
   a loaded image AND its placeholder would both render (the duplicate / undersized
   look). app.js toggles `hidden` based on whether the real image loads. */
.shot-ph[hidden] { display: none !important; }
.shot-ph-tag {
  font-family: 'Geist Mono', monospace; font-weight: 600; font-size: 11px; letter-spacing: 0.14em;
  color: var(--brand-primary); background: var(--brand-tint); padding: 5px 10px; border-radius: 6px;
}
.shot-ph-label {
  font-family: 'Geist Mono', monospace; font-size: 12.5px; line-height: 1.5;
  color: var(--ink-muted); max-width: 38ch;
}

/* ---- "What gets checked" — five tab cards (incl. GEO), roomier than score's
   signal chips but the same family ---- */
.tabs-row { grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 38px; }
.tabs-row .signal-card { padding: 18px 16px; border-radius: 12px; }
.tabs-row .signal-name { font-size: 14px; margin-bottom: 6px; }
.audit-list { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 6px; }
.audit-list li {
  position: relative; font-family: 'Geist Mono', monospace; font-size: 11.5px;
  color: var(--ink-muted); letter-spacing: 0.01em; padding-left: 16px; line-height: 1.4;
}
.audit-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--success-text); font-size: 10px; font-weight: 700; }

.dl-chip.dl-static { cursor: default; }
.dl-chip.dl-static:hover { border-color: var(--surface-border); box-shadow: none; transform: none; }

/* ---- Browser-compatibility row (Chrome + Chromium family, text badges) ---- */
.browser-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-top: 22px;
}
.browser-label {
  font-family: 'Geist Mono', monospace; font-size: 12px; letter-spacing: 0.04em;
  color: var(--ink-muted); margin-right: 2px;
}
.browser-badge {
  display: inline-flex; align-items: center;
  font-family: 'Geist Mono', monospace; font-size: 11.5px; font-weight: 500;
  color: var(--ink-secondary);
  background: var(--surface-card); border: 1px solid var(--surface-border);
  border-radius: 100px; padding: 4px 11px;
}

/* ---- Testimonials (structure ready; HTML is commented out until real reviews) ---- */
.testimonials { margin-top: 96px; }   /* no `display` here → the `hidden` attr works if used */
.testimonials h2 {
  font-family: 'Geist', sans-serif; font-weight: 800; font-size: 36px;
  letter-spacing: -0.03em; color: var(--ink-primary); margin-bottom: 24px;
}
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.testimonial-card {
  margin: 0; background: var(--surface-card); border: 1px solid var(--surface-border);
  border-radius: 16px; padding: 22px 24px; display: flex; flex-direction: column; gap: 10px;
}
.testimonial-card .stars { color: #f5a623; font-size: 14px; letter-spacing: 2px; }
.testimonial-card blockquote { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-primary); }
.testimonial-card figcaption { font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--ink-muted); }

/* ============================================================
   Feature rows
   ============================================================ */
.features { margin-top: 96px; }
.features h2 {
  font-family: 'Geist', sans-serif; font-weight: 800; font-size: 36px;
  letter-spacing: -0.03em; color: var(--ink-primary); margin-bottom: 10px;
}
.features-sub {
  font-size: 17px; line-height: 1.55; color: var(--ink-secondary);
  max-width: 680px; margin-bottom: 40px;
}
.feature-row {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px;
  align-items: center; padding: 40px 0;
}
.feature-row + .feature-row { border-top: 1px solid var(--surface-border); }
.feature-row:nth-child(even) .feature-text { order: 2; }
.feature-row:nth-child(even) .feature-shot { order: 1; }
/* Mirror the column template on alternating rows so the screenshot always
   gets the WIDE track (otherwise even rows would shrink the image to 1fr). */
.feature-row:nth-child(even) { grid-template-columns: 1.5fr 1fr; }

.feature-kicker {
  display: inline-block;
  font-family: 'Geist Mono', monospace; font-weight: 600; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-primary); background: var(--brand-tint);
  padding: 4px 9px; border-radius: 6px; margin-bottom: 14px;
}
.feature-text h3 {
  font-family: 'Geist', sans-serif; font-weight: 700; font-size: 24px;
  letter-spacing: -0.025em; color: var(--ink-primary); margin-bottom: 10px; line-height: 1.15;
}
.feature-text > p { font-size: 16px; line-height: 1.55; color: var(--ink-secondary); margin-bottom: 16px; max-width: 46ch; }
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.feature-list li { position: relative; padding-left: 24px; font-size: 14px; color: var(--ink-secondary); line-height: 1.45; }
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 16px; height: 16px; border-radius: 5px;
  background: var(--brand-tint); color: var(--brand-primary);
  font-family: 'Geist Mono', monospace; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.feature-shot {
  position: relative;
  border: 1px solid var(--surface-border); border-radius: 18px;
  background: var(--surface-soft-card); box-shadow: var(--shadow-card); overflow: visible;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-shot > .shot, .feature-shot > .shot-ph { border-radius: 18px; overflow: hidden; }
.feature-shot .shot { display: block; width: 100%; height: auto; }
.feature-shot .shot-ph { min-height: 300px; }
.feature-shot:hover { transform: translateY(-4px); box-shadow: var(--shadow-brand-soft); border-color: var(--brand-light); }
/* Floating decorative accent so the section breathes */
.float-accent {
  position: absolute; top: -10px; right: -10px; width: 22px; height: 22px; z-index: 2;
  border-radius: 7px; background: var(--oryon-gradient);
  box-shadow: var(--shadow-brand-soft);
  animation: toolFloat 5s ease-in-out infinite;
}

/* ============================================================
   Why it's free — trust band
   ============================================================ */
.trust { margin-top: 88px; }
.trust-card {
  background: var(--surface-section); border: 1px solid var(--surface-border);
  border-radius: 16px; padding: 32px 36px; display: flex; flex-direction: column; gap: 10px;
}
.trust-kicker { font-family: 'Geist Mono', monospace; font-weight: 600; font-size: 12px; letter-spacing: 0.06em; color: var(--brand-primary); }
.trust-card p { font-size: 18px; line-height: 1.55; color: var(--ink-primary); font-weight: 500; max-width: 720px; }

/* ============================================================
   How it works — animated stepper
   ============================================================ */
.how { margin-top: 88px; }
.how > h2 {
  font-family: 'Geist', sans-serif; font-weight: 800; font-size: 36px;
  letter-spacing: -0.03em; color: var(--ink-primary); margin-bottom: 28px;
}
.how-stepper { position: relative; }
.how-nodes { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 20px; }
.step-node {
  width: 40px; height: 40px; border-radius: 50%; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-card); border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  font-family: 'Geist', sans-serif; font-weight: 700; font-size: 16px;
}
.how-stepper.in .step-node { animation: heroRise .5s ease backwards; animation-delay: calc(var(--i,0) * 140ms + 250ms); }
.how-rail {
  position: absolute; top: 20px; left: 16.66%; right: 16.66%; height: 2px;
  background: var(--surface-border); border-radius: 2px; overflow: hidden; z-index: 0;
}
.how-rail-fill {
  display: block; height: 100%; width: 0; background: var(--oryon-gradient); background-size: 200% 100%;
  transition: width 1.1s cubic-bezier(.22,.61,.36,1) .15s;
}
.how-stepper.in .how-rail-fill { width: 100%; animation: gradient-flow 3s linear infinite; }
.how .grid3 .card { text-align: center; }
.how .card h3 { font-family: 'Geist', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--ink-primary); margin-bottom: 8px; }
.how .card p { font-size: 14px; color: var(--ink-secondary); line-height: 1.55; }

/* ============================================================
   Use cases — persona list (deliberately distinct from the
   How-it-works numbered cards: full-width icon-led rows)
   ============================================================ */
.usecases { margin-top: 88px; }
.usecases h2 { font-family: 'Geist', sans-serif; font-weight: 800; font-size: 36px; letter-spacing: -0.03em; color: var(--ink-primary); margin-bottom: 24px; }
.persona-list { display: grid; gap: 14px; max-width: 880px; }
.persona {
  display: flex; align-items: flex-start; gap: 20px;
  background: var(--surface-card); border: 1px solid var(--surface-border);
  border-radius: 16px; padding: 22px 24px;
}
.persona-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-tint); color: var(--brand-primary);
}
.persona-icon svg { width: 26px; height: 26px; }
.persona-body { display: flex; flex-direction: column; }
.persona-name {
  font-family: 'Geist Mono', monospace; font-weight: 600; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 6px;
}
.persona-body h3 { font-family: 'Geist', sans-serif; font-weight: 700; font-size: 19px; letter-spacing: -0.02em; color: var(--ink-primary); margin-bottom: 5px; }
.persona-body p { font-size: 14.5px; color: var(--ink-secondary); line-height: 1.55; max-width: 640px; }

/* Shared hover life for content cards / persona rows */
.how .grid3 .card, .persona, .convert-pillars .card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.how .grid3 .card:hover, .persona:hover, .convert-pillars .card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--brand-light);
}
.persona:hover .persona-icon { background: var(--brand-primary); color: var(--ink-on-brand); transition: background-color .18s ease, color .18s ease; }

/* ============================================================
   Conversion section (the Oryon / paid story)
   ============================================================ */
.convert { margin-top: 96px; }

/* (A) Agent hook + signal hub */
.convert-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  margin-bottom: 56px;
}
.convert-lead .oryon-tag { margin-bottom: 18px; }
.convert-lead h2 {
  font-family: 'Geist', sans-serif; font-weight: 800; font-size: 36px;
  letter-spacing: -0.03em; line-height: 1.1; color: var(--ink-primary);
  margin-bottom: 16px; max-width: 16ch;
}
.convert-lead-sub { font-size: 18px; line-height: 1.55; color: var(--ink-secondary); max-width: 52ch; }

/* Radial signal hub */
.signal-hub {
  position: relative; width: 100%; max-width: 440px; margin: 0 auto;
  aspect-ratio: 1 / 1; justify-self: center;
}
.hub-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hub-orbit { fill: none; stroke: var(--surface-border); stroke-width: .4; stroke-dasharray: 1.5 2.5; opacity: .8; }
.hub-line {
  stroke: var(--brand-light); stroke-width: .5; opacity: .55;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.signal-hub.in .hub-line { animation: drawLine .8s ease forwards; animation-delay: calc(var(--i) * 90ms); }

.hub-core { position: absolute; left: 50%; top: 50%; width: 0; height: 0; }
.hub-halo {
  position: absolute; left: 50%; top: 50%; width: 128px; height: 128px;
  transform: translate(-50%,-50%); border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, var(--brand-light), transparent 60%);
  opacity: .5; animation: oryonSpin 9s linear infinite;
}
.hub-ripple {
  position: absolute; left: 50%; top: 50%; width: 96px; height: 96px;
  transform: translate(-50%,-50%); border-radius: 50%;
  border: 1.5px solid var(--brand-light);
  animation: oryonRipple 3.2s ease-out infinite;
}
.hub-ripple-2 { animation-delay: 1.6s; }
/* Center node = the real SEOryon mark (seoryon-mark.svg) */
.hub-core-img {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 88px; height: 88px; border-radius: 22px;
  background: var(--surface-card);
  box-shadow: var(--shadow-brand);
}
/* faint breathing glow behind the disc */
.hub-core::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 150px; height: 150px;
  transform: translate(-50%,-50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(74,53,232,.22), transparent 70%);
  animation: oryonBreathe 4.5s ease-in-out infinite;
}
.hub-node-pos { position: absolute; transform: translate(-50%,-50%); z-index: 2; }
.hub-node {
  display: inline-block; white-space: nowrap;
  font-family: 'Geist Mono', monospace; font-size: 10.5px; letter-spacing: 0.01em;
  color: var(--ink-secondary); background: var(--surface-card);
  border: 1px solid var(--surface-border); border-radius: 100px;
  padding: 5px 10px; box-shadow: var(--shadow-card); opacity: 0;
}
.js .signal-hub .hub-node { opacity: 0; }
.signal-hub.in .hub-node { animation: heroRise .55s ease forwards; animation-delay: calc(var(--i) * 90ms + .35s); }

/* (B) Three pillars (short) */
.convert-pillars { margin-bottom: 0; align-items: stretch; }
.convert-pillars .card { display: flex; flex-direction: column; }
.pillar-idx { font-family: 'Geist Mono', monospace; font-weight: 600; font-size: 13px; letter-spacing: 0.1em; color: var(--brand-primary); margin-bottom: 12px; }
.convert-pillars .card h3 { font-family: 'Geist', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--ink-primary); margin-bottom: 8px; line-height: 1.25; }
.convert-pillars .card p { font-size: 14px; line-height: 1.55; color: var(--ink-secondary); }
.convert-pillars .card strong { color: var(--ink-primary); font-weight: 700; }

/* (C) See everything + AI-visibility monitor */
.convert-see {
  margin-top: 64px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center;
}
.convert-see-text h2 {
  font-family: 'Geist', sans-serif; font-weight: 800; font-size: 30px;
  letter-spacing: -0.03em; line-height: 1.15; color: var(--ink-primary); margin-bottom: 12px; max-width: 18ch;
}
.convert-see-text > p { font-size: 17px; line-height: 1.55; color: var(--ink-secondary); max-width: 52ch; margin-bottom: 20px; }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.info-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Geist Mono', monospace; font-size: 12px; letter-spacing: 0.01em;
  color: var(--ink-secondary); background: var(--surface-card);
  border: 1px solid var(--surface-border); border-radius: 100px; padding: 8px 14px;
}
.info-chip::before { content: "✓"; color: var(--brand-primary); font-weight: 700; font-size: 11px; }

.ai-monitor {
  background: var(--surface-card); border: 1px solid var(--surface-border);
  border-radius: 16px; padding: 20px; box-shadow: var(--shadow-card);
}
.mon-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mon-title { font-family: 'Geist', sans-serif; font-weight: 700; font-size: 14px; color: var(--ink-primary); letter-spacing: -0.01em; }
.mon-live {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--success-text);
}
.mon-live .ping { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--success-text); }
.mon-live .ping::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--success-text);
  animation: ping 1.8s cubic-bezier(0,0,.2,1) infinite;
}
.mon-bars { display: grid; gap: 10px; margin-bottom: 16px; }
.mon-row { display: grid; grid-template-columns: 78px 1fr; gap: 12px; align-items: center; }
.mon-name { font-family: 'Geist Mono', monospace; font-size: 11.5px; color: var(--ink-secondary); }
.mon-track { height: 8px; background: var(--surface-section); border-radius: 100px; overflow: hidden; }
.mon-fill { display: block; height: 100%; width: 0; border-radius: 100px; background: var(--oryon-gradient); transition: width 1.1s cubic-bezier(.22,.61,.36,1); }
.ai-monitor.in .mon-fill { width: var(--w); }
.mon-cited { display: grid; gap: 6px; padding-top: 14px; border-top: 1px solid var(--surface-border); }
.mon-prompt { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.mon-q { font-family: 'Geist Mono', monospace; font-size: 11.5px; color: var(--ink-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mon-tag { flex-shrink: 0; font-family: 'Geist Mono', monospace; font-size: 10px; font-weight: 600; letter-spacing: 0.04em; color: var(--success-text); background: var(--success-bg); border: 1px solid var(--success-border); border-radius: 100px; padding: 2px 8px; }
.mon-tag-top { color: var(--brand-hover); background: var(--brand-tint); border-color: var(--surface-border); }
.mon-note { margin-top: 12px; font-family: 'Geist Mono', monospace; font-size: 10px; color: var(--ink-muted); letter-spacing: 0.02em; }

/* (D) Integrity band */
.convert-integrity {
  margin-top: 64px; background: var(--surface-section);
  border: 1px solid var(--surface-border); border-radius: 20px; padding: 40px;
}
.convert-eyebrow { display: inline-block; font-family: 'Geist Mono', monospace; font-weight: 600; font-size: 12px; letter-spacing: 0.06em; color: var(--brand-primary); margin-bottom: 14px; }
.convert-integrity h2 { font-family: 'Geist', sans-serif; font-weight: 800; font-size: 30px; letter-spacing: -0.03em; line-height: 1.15; color: var(--ink-primary); margin-bottom: 14px; max-width: 24ch; }
.convert-integrity p { font-size: 16px; line-height: 1.6; color: var(--ink-secondary); max-width: 680px; margin-bottom: 22px; }

/* (E) Final CTA — confident closing panel with a gradient edge */
.convert-cta {
  position: relative; margin-top: 28px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 52px 40px; border-radius: 22px; overflow: hidden;
  background: var(--surface-card); border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-card);
}
/* animated gradient top edge */
.cta-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--oryon-gradient); background-size: 200% 100%;
  animation: gradient-flow 4s linear infinite;
}
.convert-cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 50% -20%, rgba(74,53,232,.06), transparent 60%);
}
.convert-cta h2 { font-family: 'Geist', sans-serif; font-weight: 800; font-size: 38px; letter-spacing: -0.035em; color: var(--ink-primary); margin-bottom: 10px; }
.convert-cta > p:not(.microcopy) { font-size: 18px; line-height: 1.55; color: var(--ink-secondary); max-width: 48ch; margin-bottom: 24px; }
.convert-cta .microcopy { text-align: center; }
.convert-secondary { margin-top: 16px; font-family: 'Geist', sans-serif; font-weight: 500; font-size: 14px; color: var(--ink-muted); }
.convert-secondary:hover { color: var(--brand-hover); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { margin-top: 96px; }
.faq h2 { font-family: 'Geist', sans-serif; font-weight: 800; font-size: 36px; letter-spacing: -0.03em; color: var(--ink-primary); margin-bottom: 28px; }
.faq-group { max-width: 820px; }
.faq-group + .faq-group { margin-top: 30px; }
.faq-group-title {
  font-family: 'Geist Mono', monospace; font-weight: 600; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-primary);
  margin-bottom: 12px;
}
.faq-list { display: grid; gap: 10px; max-width: 820px; }
.faq-item { background: var(--surface-card); border: 1px solid var(--surface-border); border-radius: 12px; padding: 4px 20px; }
.faq-item summary {
  list-style: none; cursor: pointer;
  font-family: 'Geist', sans-serif; font-weight: 600; font-size: 16px; color: var(--ink-primary);
  padding: 16px 0; position: relative; padding-right: 28px; transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand-hover); }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-family: 'Geist Mono', monospace; font-size: 20px; font-weight: 500; color: var(--brand-primary); transition: transform 0.2s; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { font-size: 15px; line-height: 1.6; color: var(--ink-secondary); padding: 0 0 18px; max-width: 700px; }

/* ============================================================
   Legal / Privacy page (own brand idiom, reuses tokens & fonts)
   ============================================================ */
.legal { padding: 48px 0 8px; max-width: 760px; }
.legal h1 {
  font-family: 'Geist', sans-serif; font-weight: 800;
  font-size: clamp(32px, 4.4vw, 44px); line-height: 1.06; letter-spacing: -0.035em;
  color: var(--ink-primary); margin-bottom: 12px;
}
.legal-updated {
  font-family: 'Geist Mono', monospace; font-size: 12.5px; letter-spacing: 0.02em;
  color: var(--ink-muted); margin-bottom: 24px;
}
.legal-lead {
  font-size: 18px; line-height: 1.6; color: var(--ink-secondary);
  max-width: 64ch; margin-bottom: 8px;
}
.legal-section { margin-top: 40px; }
.legal-section > h2 {
  font-family: 'Geist', sans-serif; font-weight: 700; font-size: 22px;
  letter-spacing: -0.025em; color: var(--ink-primary); margin-bottom: 12px;
}
.legal-section > h3 {
  font-family: 'Geist', sans-serif; font-weight: 600; font-size: 16px;
  letter-spacing: -0.01em; color: var(--ink-primary); margin: 20px 0 6px;
}
.legal-section p { font-size: 15.5px; line-height: 1.62; color: var(--ink-secondary); max-width: 70ch; margin-bottom: 12px; }
.legal-section p a { color: var(--brand-hover); font-weight: 500; }
.legal-lead-strong {
  font-size: 16px; font-weight: 600; color: var(--ink-primary);
  background: var(--brand-tint); border: 1px solid var(--brand-light);
  border-radius: 12px; padding: 14px 18px; margin: 4px 0 8px; max-width: 70ch;
}
.legal-list { list-style: none; margin: 6px 0 4px; padding: 0; display: grid; gap: 10px; max-width: 70ch; }
.legal-list li { position: relative; padding-left: 26px; font-size: 15.5px; line-height: 1.55; color: var(--ink-secondary); }
.legal-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 17px; height: 17px; border-radius: 5px;
  background: var(--brand-tint); color: var(--brand-primary);
  font-family: 'Geist Mono', monospace; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.legal-contact {
  margin-top: 8px; font-size: 15.5px; line-height: 1.6; color: var(--ink-secondary);
}
.legal-contact a { color: var(--brand-hover); font-weight: 600; }

/* ============================================================
   Reduced motion — disable decorative motion, reveal everything
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal.in { opacity: 1 !important; transform: none !important; transition: none !important; }
  .float-accent, .hub-halo, .hub-ripple, .hub-core::after, .cta-accent, .mon-live .ping::before { animation: none !important; }
  .hub-line { stroke-dashoffset: 0 !important; animation: none !important; }
  .signal-hub.in .hub-node, .how-stepper.in .step-node { animation: none !important; opacity: 1 !important; }
  .js .signal-hub .hub-node { opacity: 1 !important; }
  .how-rail-fill { width: 100% !important; transition: none !important; animation: none !important; }
  .mon-fill { width: var(--w) !important; transition: none !important; }
}

/* ============================================================
   Responsive — mirrors style.css breakpoints
   ============================================================ */
@media (max-width: 860px) {
  .tabs-row { grid-template-columns: repeat(2, 1fr); }
  .feature-row,
  .feature-row:nth-child(even) { grid-template-columns: 1fr; gap: 20px; }
  .feature-row:nth-child(even) .feature-text,
  .feature-row:nth-child(even) .feature-shot { order: 0; }
  .feature-text > p { max-width: none; }
  .convert-hero { grid-template-columns: 1fr; gap: 36px; }
  .convert-lead h2 { max-width: none; }
  .signal-hub { max-width: 380px; }
  .convert-see { grid-template-columns: 1fr; gap: 32px; }
  .convert-see-text h2, .convert-see-text > p { max-width: none; }
  .convert-integrity { padding: 28px; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .features h2, .usecases h2, .faq h2, .how > h2 { font-size: 28px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .browser-row { margin-top: 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-gradient, .btn-ghost { justify-content: center; }
  .tabs-row { grid-template-columns: 1fr 1fr; }
  .trust-card { padding: 24px; }
  .trust-card p { font-size: 16px; }
  .lang-switch { order: -1; }
  .convert-lead h2, .convert-cta h2 { font-size: 28px; }
  .convert-see-text h2, .convert-integrity h2 { font-size: 24px; }
  .convert-cta { padding: 40px 24px; }
  .convert-cta .btn-gradient { align-self: stretch; justify-content: center; }
  /* Topbar nav must wrap on narrow screens — otherwise the localized
     "Coming soon to Chrome" CTA (longest in DE) overflows the row. */
  .topbar { flex-wrap: wrap; row-gap: 12px; padding-left: 20px; padding-right: 20px; }
  .navlinks { flex-wrap: wrap; justify-content: flex-end; row-gap: 8px; }
  /* Scale the enlarged logo + nav chips back down so they don't dominate mobile. */
  .logo-img { height: 28px; }
  .navlinks a.nav-secondary, .navlinks a.cta-link.is-soon { height: 34px; padding: 0 12px; font-size: 13px; }
  /* Stepper rail only makes sense across columns; stack cleanly on mobile */
  .how-nodes { grid-template-columns: repeat(3, 1fr); margin-bottom: 16px; }
  .signal-hub { max-width: 320px; }
  .hub-node { font-size: 9.5px; padding: 4px 8px; }
  .hub-core-img { width: 72px; height: 72px; border-radius: 18px; }
  .persona { padding: 18px 18px; gap: 16px; }
  .persona-icon { width: 46px; height: 46px; }
}
