/* ═══════════════════════════════════════════════════════════
   ClicAuto — Design system
   Dark, technical, anti-hype. One accent, generous space.
   Contrast ratios verified against WCAG 2.1 AA.
   ═══════════════════════════════════════════════════════════ */

@import url("/fonts/fonts.css");

:root {
  /* Surfaces */
  --bg: #08090c;
  --bg-2: #0b0d11;
  --surface: #101318;
  --surface-2: #161a21;
  --surface-3: #1d222b;

  /* Lines */
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.12);
  --line-3: rgba(255, 255, 255, 0.2);

  /* Type — all pass 4.5:1 on --bg and --surface */
  --text: #eef2f7;
  --text-2: #b3bdcc;
  --text-3: #9aa5b4;
  --text-4: #757f8f;

  /* Accent */
  --accent: #4cc9ff;
  --accent-2: #1fa8e0;
  --accent-ink: #04212e;
  --accent-dim: rgba(76, 201, 255, 0.12);
  --accent-line: rgba(76, 201, 255, 0.28);
  --warm: #ffb648;
  --good: #3ddc97;
  --bad: #ff8585;

  /* Fonts */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Metrics */
  --wrap: 1320px;
  --wrap-tight: 820px;
  --hdr-h: 68px;
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --sh-2: 0 8px 30px rgba(0, 0, 0, 0.45);
  --sh-3: 0 24px 70px rgba(0, 0, 0, 0.6);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══ RESET ═══ */

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hdr-h) + 24px);
  /* The page colour lives here so body can stay transparent and let the
     ambient layers below show through. */
  background: var(--bg);
}

body {
  background: transparent;
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Ambient background ─────────────────────────────────────
   Four fixed layers, no markup, no images fetched over the network:
   1. html::before — digital waves drifting in the lower third
   2. body::before — cyan auras
   3. body::after  — column grid and dot matrix, fading downwards
   The reduced-motion block at the end of this file freezes the drift. */

html::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48vh;
  z-index: -1;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201600%20240'%3E%3Cg%20fill='none'%20stroke='%234cc9ff'%20stroke-width='1.3'%3E%3Cpath%20stroke-opacity='.3'%20d='M0%20120C100%2060%20300%2060%20400%20120S700%20180%20800%20120S1100%2060%201200%20120S1500%20180%201600%20120'/%3E%3Cpath%20stroke-opacity='.14'%20d='M0%20165C100%20120%20300%20120%20400%20165S700%20210%20800%20165S1100%20120%201200%20165S1500%20210%201600%20165'/%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201300%20200'%3E%3Cg%20fill='none'%20stroke='%234cc9ff'%20stroke-width='1.1'%3E%3Cpath%20stroke-opacity='.2'%20d='M0%20100C80%2045%20245%2045%20325%20100S570%20155%20650%20100S895%2045%20975%20100S1220%20155%201300%20100'/%3E%3Cpath%20stroke-opacity='.09'%20d='M0%20140C80%20100%20245%20100%20325%20140S570%20180%20650%20140S895%20100%20975%20140S1220%20180%201300%20140'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: 0 100%, 0 62%;
  background-size: 1600px 240px, 1300px 200px;
  mask-image: linear-gradient(to top, #000 26%, transparent 92%);
  animation: waves-drift 120s linear infinite;
}

@keyframes waves-drift {
  to { background-position: 1600px 100%, -1300px 62%; }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 42% at 10% -6%, rgba(76, 201, 255, 0.085), transparent 62%),
    radial-gradient(ellipse 46% 34% at 92% 24%, rgba(76, 201, 255, 0.06), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 108%, rgba(31, 168, 224, 0.07), transparent 66%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(rgba(122, 216, 255, 0.05) 1px, transparent 1.4px);
  background-size: 120px 100%, 30px 30px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--accent); color: var(--accent-ink); }

/* ═══ LAYOUT ═══ */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.wrap-tight { max-width: var(--wrap-tight); }

.section {
  position: relative;
  padding-block: clamp(68px, 8.5vw, 120px);
}

.section + .section { border-top: 1px solid var(--line); }
/* Translucent rather than opaque, so the ambient background shows through */
.section-alt { background: rgba(255, 255, 255, 0.016); }
.section-slim { padding-block: clamp(48px, 6vw, 80px); }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: top 0.2s var(--ease);
}

.skip-link:focus { top: 16px; }

/* Utilities — kept deliberately few so the CSP can forbid inline styles */
.center { text-align: center; }
.narrow { max-width: 720px; margin-inline: auto; }
.mb-0 { margin-bottom: 0; }
.mt-m { margin-top: 22px; }
.mt-l { margin-top: 34px; }
.push { margin-left: auto; }
.vh {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ═══ TYPE ═══ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent-line);
}

.eyebrow-center { justify-content: center; }

.h-xl {
  font-size: clamp(2.35rem, 5.8vw, 3.95rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.h-lg { font-size: clamp(1.8rem, 3.7vw, 2.7rem); }
.h-md { font-size: clamp(1.3rem, 2.3vw, 1.65rem); }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-2);
  line-height: 1.62;
}

.muted { color: var(--text-3); }
.small { font-size: 0.875rem; }
.tiny { font-size: 0.8125rem; }
.mono { font-family: var(--mono); }

.mark {
  color: #fff;
  background-image: linear-gradient(var(--accent-line), var(--accent-line));
  background-size: 100% 2px;
  background-position: 0 92%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
}

.section-head {
  max-width: 740px;
  margin-bottom: clamp(38px, 4.5vw, 60px);
}

.section-head > h2 { margin-bottom: 18px; }
.section-head-center { max-width: 740px; margin-inline: auto; text-align: center; }

/* ═══ BUTTONS ═══ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--r-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), background 0.18s, border-color 0.18s, box-shadow 0.18s, color 0.18s;
}

.btn svg { flex: none; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 8px 24px rgba(76, 201, 255, 0.22);
}

.btn-primary:hover {
  background: #6fd5ff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 10px 32px rgba(76, 201, 255, 0.34);
}

.btn-outline {
  border-color: var(--line-2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover { border-color: var(--line-3); background: rgba(255, 255, 255, 0.055); }

.btn-ghost { color: var(--text-2); padding-inline: 14px; }
.btn-ghost:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }

.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-sm { padding: 9px 16px; font-size: 0.875rem; }
.btn-block { width: 100%; }

.btn-arrow svg { transition: transform 0.22s var(--ease); }
.btn-arrow:hover svg { transform: translateX(3px); }

.link-u {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-weight: 500;
  padding-bottom: 1px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.28s var(--ease);
}

.link-u:hover { background-size: 100% 1px; }

/* ═══ HEADER ═══ */

.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--hdr-h);
  display: flex;
  align-items: center;
  background: rgba(8, 9, 12, 0.72);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.hdr[data-scrolled="true"] {
  border-bottom-color: var(--line);
  background: rgba(8, 9, 12, 0.9);
}

.hdr-inner { display: flex; align-items: center; gap: 30px; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.0625rem;
}

.logo-mark {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--accent-ink);
  box-shadow: 0 4px 14px rgba(76, 201, 255, 0.3);
}

.logo-mark svg { width: 17px; height: 17px; }

.logo-sub {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-4);
  display: block;
  margin-top: -3px;
}

.nav { display: flex; align-items: center; gap: 4px; }

.nav a {
  padding: 8px 13px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-3);
  transition: color 0.18s, background 0.18s;
}

.nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.045); }
.nav a[aria-current] { color: var(--text); }

.hdr-actions { display: flex; align-items: center; gap: 8px; }

.burger {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-2);
  color: var(--text-2);
}

.burger:hover { color: var(--text); border-color: var(--line-3); }

/* ═══ HERO ═══ */

.hero {
  position: relative;
  padding-top: clamp(44px, 6vw, 76px);
  padding-bottom: clamp(60px, 7.5vw, 96px);
  overflow: hidden;
}

.hero-flat { padding-bottom: 0; }

.hero-aura {
  position: absolute;
  inset: -30% 0 auto 50%;
  translate: -50% 0;
  width: min(1200px, 130vw);
  aspect-ratio: 1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 40%, rgba(76, 201, 255, 0.15), rgba(76, 201, 255, 0.04) 42%, transparent 68%);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 22%, #000 20%, transparent 75%);
}

.hero-inner { position: relative; text-align: center; }
.hero-head { max-width: 880px; margin-inline: auto; }
.hero-title { margin-bottom: 22px; }
.hero-title-sm { font-size: clamp(2rem, 4.6vw, 3.1rem); }

.hero-sub {
  max-width: 640px;
  margin-inline: auto;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-2);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin-top: 30px;
}

.hero-fact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.8125rem;
  color: var(--text-2);
}

.hero-fact svg { width: 14px; height: 14px; color: var(--accent); flex: none; }
.hero-fact b { color: var(--text); font-weight: 600; }

.hero-below { margin-top: 26px; font-size: 0.875rem; color: var(--text-4); }
.hero-below a { color: var(--text-2); }
.hero-below a:hover { color: var(--accent); }

/* ═══ CHAT — the centrepiece ═══ */

.chat-stage {
  position: relative;
  max-width: 760px;
  margin: clamp(36px, 4.5vw, 54px) auto 0;
}

.chat-stage::before {
  content: "";
  position: absolute;
  inset: -14% -8%;
  background: radial-gradient(ellipse at 50% 45%, rgba(76, 201, 255, 0.14), transparent 66%);
  filter: blur(14px);
  pointer-events: none;
}

.chat-stage-sm { max-width: 720px; }

.chat {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 22%),
    var(--surface);
  box-shadow: var(--sh-3), 0 0 0 1px rgba(76, 201, 255, 0.07);
  overflow: hidden;
  text-align: left;
}

.chat-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.chat-face {
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(76, 201, 255, 0.22), rgba(76, 201, 255, 0.06));
  border: 1px solid var(--accent-line);
  color: var(--accent);
}

.chat-face svg { width: 19px; height: 19px; }

.chat-who { min-width: 0; }
.chat-name { font-size: 0.9375rem; font-weight: 650; letter-spacing: -0.015em; }

.chat-state {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-4);
}

.chat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 3px rgba(61, 220, 151, 0.15);
  animation: pulse 2.4s var(--ease) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.chat-steps {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-4);
}

.chat-bar {
  width: 64px;
  height: 3px;
  border-radius: 100px;
  background: var(--surface-3);
  overflow: hidden;
}

.chat-bar span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 100px;
  background: var(--accent);
  transition: width 0.5s var(--ease);
}

.chat-log {
  padding: 22px 18px 8px;
  min-height: 268px;
  max-height: min(52vh, 460px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--surface-3) transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-log::-webkit-scrollbar { width: 8px; }
.chat-log::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 100px; }

.msg {
  display: flex;
  max-width: 88%;
  animation: msg-in 0.42s var(--ease) both;
}

@keyframes msg-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.msg-bot { align-self: flex-start; }
.msg-me { align-self: flex-end; }

.bubble { padding: 12px 16px; border-radius: 16px; font-size: 0.9375rem; line-height: 1.55; }

.msg-bot .bubble {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
}

.msg-me .bubble {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 550;
  border-bottom-right-radius: 5px;
}

.bubble strong { color: #fff; font-weight: 650; }
.msg-me .bubble strong { color: var(--accent-ink); }

.typing { display: inline-flex; gap: 4px; padding: 15px 16px; }

.typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-4);
  animation: bob 1.25s ease-in-out infinite;
}

.typing i:nth-child(2) { animation-delay: 0.15s; }
.typing i:nth-child(3) { animation-delay: 0.3s; }

@keyframes bob {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-zone {
  padding: 12px 18px 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; animation: msg-in 0.35s var(--ease) both; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: border-color 0.16s, background 0.16s, transform 0.16s var(--ease), color 0.16s;
}

.chip:hover {
  border-color: var(--accent-line);
  background: var(--accent-dim);
  color: #fff;
  transform: translateY(-1px);
}

.chip[aria-pressed="true"] { border-color: var(--accent); background: var(--accent-dim); color: #fff; }

.chip-tick {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid var(--line-3);
  display: grid;
  place-items: center;
  flex: none;
  color: transparent;
}

.chip[aria-pressed="true"] .chip-tick { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.chip-tick svg { width: 9px; height: 9px; }

.chat-form { display: grid; gap: 10px; animation: msg-in 0.35s var(--ease) both; }
.chat-fields { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }

.field { display: grid; gap: 5px; }
.field-full { grid-column: 1 / -1; }

.field label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-4);
}

.field label .opt { text-transform: none; letter-spacing: 0; }

.field input {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-2);
  background: var(--bg);
  color: var(--text);
  font-size: 0.9375rem;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.field input::placeholder { color: var(--text-4); }

.field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(76, 201, 255, 0.14);
}

.field input[aria-invalid="true"] { border-color: var(--bad); }

.chat-consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--text-3);
  line-height: 1.5;
}

.chat-consent input {
  margin-top: 3px;
  accent-color: var(--accent);
  width: 15px;
  height: 15px;
  flex: none;
}

.chat-consent a { color: var(--accent); }

.chat-err { font-size: 0.8125rem; color: var(--bad); }

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.chat-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--text-4);
}

.chat-foot svg { width: 13px; height: 13px; flex: none; }
.chat-foot a { color: var(--text-3); text-decoration: underline; text-decoration-color: var(--line-3); }
.chat-foot a:hover { color: var(--accent); }

.verdict {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--accent-line);
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, var(--accent-dim), rgba(76, 201, 255, 0.02));
  animation: msg-in 0.5s var(--ease) both;
}

.verdict-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.verdict h3 { font-size: 1.2rem; margin-top: 4px; }

.verdict-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.vm {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(8, 9, 12, 0.5);
}

.vm-value {
  font-family: var(--mono);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  display: block;
}

.vm-label { font-size: 0.75rem; color: var(--text-3); display: block; margin-top: 2px; }

.verdict-list { display: grid; gap: 8px; }

.verdict-list li {
  display: flex;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
}

.verdict-list svg { width: 15px; height: 15px; flex: none; margin-top: 4px; color: var(--accent); }
.verdict-cta { display: flex; flex-wrap: wrap; gap: 10px; }

/* ═══ LOGO MARQUEE ═══ */

.marquee-sec {
  padding-block: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.016);
}

.marquee-label {
  text-align: center;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 26px;
}

.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: slide 42s linear infinite;
}

.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track { animation-play-state: paused; }

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee img {
  height: 34px;
  width: auto;
  opacity: 0.88;
  filter: grayscale(1) brightness(2.9);
  transition: opacity 0.25s, filter 0.25s;
}

.marquee img:hover { opacity: 1; filter: grayscale(0) brightness(1.6); }

.logos-note { text-align: center; font-size: 0.6875rem; color: var(--text-4); margin-top: 20px; }

/* ═══ CARDS ═══ */

/* min() keeps every column narrower than the viewport on small phones */
.grid-3 { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); }
.grid-2 { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); }
.grid-4 { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(min(215px, 100%), 1fr)); }

.card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  transition: border-color 0.25s, transform 0.25s var(--ease), background 0.25s;
}

.card:hover { border-color: var(--line-2); background: var(--surface-2); transform: translateY(-3px); }
.card-static:hover { transform: none; }

.card-ico {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--accent-line);
  background: var(--accent-dim);
  color: var(--accent);
}

.card-ico svg { width: 20px; height: 20px; }

.card h3 { font-size: 1.125rem; margin-bottom: 10px; }
.card p { font-size: 0.9375rem; color: var(--text-2); }

.pain-card { border-left: 2px solid rgba(255, 182, 72, 0.4); }
.pain-card .card-ico { border-color: rgba(255, 182, 72, 0.3); background: rgba(255, 182, 72, 0.1); color: var(--warm); }

.pain-cost {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--warm);
}

/* ═══ OFFERS ═══ */

.offers { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); align-items: start; }

.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.offer:hover { border-color: var(--line-2); transform: translateY(-3px); }

.offer-feat {
  border-color: var(--accent-line);
  background: linear-gradient(170deg, rgba(76, 201, 255, 0.07), var(--surface) 55%);
  box-shadow: 0 0 50px rgba(76, 201, 255, 0.08);
}

.offer-flag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
}

.offer-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.offer h3 { font-size: 1.3rem; margin-bottom: 10px; }
.offer-desc { font-size: 0.9375rem; color: var(--text-2); margin-bottom: 20px; }

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.offer-price b {
  font-family: var(--mono);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fff;
}

.offer-price span { font-size: 0.8125rem; color: var(--text-4); }

.offer-list { display: grid; gap: 10px; margin-bottom: 24px; }

.offer-list li {
  display: flex;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
}

.offer-list svg { width: 15px; height: 15px; flex: none; margin-top: 4px; color: var(--accent); }
.offer .btn { margin-top: auto; }

/* ═══ STEPS ═══ */

.steps { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }

@media (min-width: 860px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

.step { padding: 28px 24px; background: var(--surface); transition: background 0.25s; }
.step:hover { background: var(--surface-2); }

.step-n {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-n::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.step h3 { font-size: 1.0625rem; margin-bottom: 9px; }
.step p { font-size: 0.875rem; color: var(--text-3); }

/* ═══ COMMITMENTS ═══ */

.commit {
  display: flex;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
}

.commit-ico {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 9px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent-line);
  background: var(--accent-dim);
  color: var(--accent);
}

.commit-ico svg { width: 17px; height: 17px; }
.commit h3 { font-size: 0.9375rem; margin-bottom: 5px; }
.commit p { font-size: 0.8125rem; color: var(--text-3); line-height: 1.5; }

/* ═══ INDUSTRIES ═══ */

.tags { display: flex; flex-wrap: wrap; gap: 9px; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.02);
}

.tag svg { width: 14px; height: 14px; color: var(--accent); flex: none; }

/* ═══ PROOF ═══ */

.proof-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tp-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  transition: border-color 0.25s;
}

.tp-badge:hover { border-color: var(--line-2); }
.tp-stars { display: flex; gap: 2px; }
.tp-stars svg { width: 16px; height: 16px; }

.tp-score b { font-family: var(--mono); font-size: 1.15rem; letter-spacing: -0.03em; color: #fff; }
.tp-score span { display: block; font-size: 0.75rem; color: var(--text-4); }

.quote {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.quote:hover { border-color: var(--line-2); transform: translateY(-3px); }
.quote-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.quote-stars svg { width: 15px; height: 15px; }
.quote h4 { font-size: 1rem; margin-bottom: 9px; }
.quote p { font-size: 0.9375rem; color: var(--text-2); margin-bottom: 20px; }

.quote-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-4);
}

.quote-verified { display: inline-flex; align-items: center; gap: 5px; color: var(--good); }
.quote-verified svg { width: 12px; height: 12px; }

/* ═══ COMPANY ═══ */

.company { display: grid; gap: clamp(30px, 4.5vw, 60px); }

@media (min-width: 900px) {
  .company { grid-template-columns: 1fr 0.85fr; align-items: start; }
}

.company-body > p { margin-bottom: 18px; color: var(--text-2); }
.company-body > p:first-of-type { font-size: 1.0625rem; color: var(--text); }

.creed { display: grid; gap: 12px; margin: 26px 0; }

.creed li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text-2);
}

.creed svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--accent); }
.creed b { color: var(--text); font-weight: 600; }

.facts-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
.facts-card h3 { font-size: 1.0625rem; margin-bottom: 18px; }

.facts { display: grid; gap: 1px; background: var(--line); border-radius: var(--r); overflow: hidden; }

.fact { display: grid; gap: 2px; padding: 13px 15px; background: var(--surface-2); }

.fact dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-4);
}

.fact dd { font-size: 0.9375rem; color: var(--text); }
.fact dd a { color: var(--accent); }

/* ═══ FAQ ═══ */

.faq { display: grid; gap: 10px; max-width: 860px; }

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  transition: border-color 0.2s, background 0.2s;
}

.faq details[open] { border-color: var(--line-2); background: var(--surface-2); }
.faq details:hover { border-color: var(--line-2); }

.faq summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.015em;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "";
  margin-left: auto;
  width: 9px;
  height: 9px;
  flex: none;
  border-right: 1.5px solid var(--text-4);
  border-bottom: 1.5px solid var(--text-4);
  rotate: 45deg;
  transition: rotate 0.25s var(--ease), border-color 0.2s;
}

.faq details[open] summary::after { rotate: -135deg; border-color: var(--accent); }

.faq-a { padding: 0 20px 20px; }
.faq-a p { font-size: 0.9375rem; color: var(--text-2); }
.faq-a p + p { margin-top: 10px; }
.faq-a a { color: var(--accent); }

/* ═══ FINAL CTA ═══ */

.final {
  position: relative;
  text-align: center;
  padding: clamp(44px, 6.5vw, 78px) 28px;
  border: 1px solid var(--accent-line);
  border-radius: var(--r-xl);
  background: linear-gradient(170deg, rgba(76, 201, 255, 0.1), rgba(76, 201, 255, 0.01) 60%), var(--surface);
  overflow: hidden;
}

.final::after {
  content: "";
  position: absolute;
  inset: auto 0 -60% 50%;
  translate: -50% 0;
  width: 700px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(76, 201, 255, 0.16), transparent 62%);
  pointer-events: none;
}

.final > * { position: relative; }
.final h2 { margin-bottom: 16px; }
.final p { max-width: 520px; margin: 0 auto 30px; color: var(--text-2); }
.final-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ═══ CONTENT PAGES ═══ */

.page-head {
  position: relative;
  padding-block: clamp(40px, 5vw, 64px) clamp(28px, 3.5vw, 40px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-head h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 14px; }
.page-head .lead { max-width: 640px; }

.crumbs { display: flex; align-items: center; gap: 9px; font-size: 0.8125rem; color: var(--text-4); margin-bottom: 20px; }
.crumbs a { color: var(--text-3); }
.crumbs a:hover { color: var(--accent); }
.crumbs li { display: flex; align-items: center; gap: 9px; }
.crumbs li + li::before { content: "/"; color: var(--text-4); }

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-4);
}

.doc-layout { display: grid; gap: clamp(32px, 5vw, 56px); align-items: start; }

@media (min-width: 940px) {
  .doc-layout { grid-template-columns: 230px 1fr; }
}

.doc-nav { position: sticky; top: calc(var(--hdr-h) + 28px); }

.doc-nav h2 {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 14px;
}

.doc-nav ol { display: grid; gap: 2px; }

.doc-nav a {
  display: block;
  padding: 7px 12px;
  border-radius: var(--r-sm);
  border-left: 2px solid transparent;
  font-size: 0.875rem;
  color: var(--text-3);
  transition: color 0.18s, background 0.18s, border-color 0.18s;
}

.doc-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.doc-nav a[aria-current] { color: var(--text); border-left-color: var(--accent); background: rgba(255, 255, 255, 0.03); }

.prose { max-width: 760px; }

.prose section + section { margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--line); }
.prose h2 { font-size: 1.35rem; margin-bottom: 16px; }
.prose h3 { font-size: 1rem; margin: 26px 0 8px; color: var(--accent); }
.prose p { color: var(--text-2); margin-bottom: 14px; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--accent); text-decoration: underline; text-decoration-color: var(--accent-line); }
.prose a:hover { text-decoration-color: var(--accent); }
.prose strong { color: var(--text); font-weight: 600; }

.prose ul { display: grid; gap: 9px; margin-bottom: 16px; }

.prose ul li {
  display: flex;
  gap: 11px;
  color: var(--text-2);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.prose ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
  margin-top: 10px;
}

.prose ol { display: grid; gap: 9px; margin-bottom: 16px; counter-reset: n; }

.prose ol li {
  display: flex;
  gap: 11px;
  color: var(--text-2);
  font-size: 0.9375rem;
  counter-increment: n;
}

.prose ol li::before {
  content: counter(n) ".";
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--accent);
  flex: none;
  margin-top: 3px;
}

.prose code {
  font-family: var(--mono);
  font-size: 0.8125rem;
  padding: 2px 6px;
  border-radius: 5px;
  background: var(--surface-3);
  color: var(--text);
}

.data-table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 0.875rem; }

.data-table th,
.data-table td { padding: 11px 13px; text-align: left; border: 1px solid var(--line); vertical-align: top; }

.data-table th {
  background: var(--surface-2);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

.data-table td { color: var(--text-2); }
.data-table caption { caption-side: bottom; padding-top: 10px; font-size: 0.75rem; color: var(--text-4); text-align: left; }

.callout {
  display: flex;
  gap: 13px;
  padding: 16px 18px;
  border: 1px solid var(--accent-line);
  border-radius: var(--r);
  background: var(--accent-dim);
  margin-bottom: 18px;
}

.callout svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--accent); }
.callout p { font-size: 0.875rem; color: var(--text-2); margin: 0; }
.callout p + p { margin-top: 8px; }

/* ═══ FOOTER ═══ */

.ftr { border-top: 1px solid var(--line); padding-block: 56px 28px; background: var(--bg-2); }

.ftr-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  margin-bottom: 40px;
}

.ftr-brand { max-width: 320px; }
.ftr-brand .logo { margin-bottom: 16px; }
.ftr-brand p { font-size: 0.875rem; color: var(--text-3); }

.ftr-col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 16px;
}

.ftr-col li + li { margin-top: 9px; }
.ftr-col a { font-size: 0.875rem; color: var(--text-2); transition: color 0.18s; }
.ftr-col a:hover { color: var(--accent); }

.ftr-legal {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.015);
  margin-bottom: 26px;
}

.ftr-legal p { font-size: 0.75rem; color: var(--text-4); line-height: 1.7; }
.ftr-legal p + p { margin-top: 6px; }
.ftr-legal b { color: var(--text-3); font-weight: 600; }

.ftr-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--text-4);
}

.ftr-bottom-bare { padding-top: 0; border-top: none; }

.ftr-flags { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ftr-flags a:hover { color: var(--accent); }

.ftr-flag { display: inline-flex; align-items: center; gap: 7px; }
.ftr-flag svg { width: 13px; height: 13px; color: var(--good); flex: none; }

.ftr-social { display: flex; gap: 6px; }

.ftr-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  color: var(--text-3);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.ftr-social a:hover { color: var(--accent); border-color: var(--accent-line); background: var(--accent-dim); }
.ftr-social svg { width: 16px; height: 16px; }

/* ═══ 404 ═══ */

.oops { display: grid; place-items: center; min-height: 62vh; text-align: center; padding-block: 60px; }
.oops-code { font-family: var(--mono); font-size: 4rem; font-weight: 500; letter-spacing: -0.04em; color: var(--accent); line-height: 1; margin-bottom: 18px; }
.oops h1 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 14px; }
.oops p { color: var(--text-2); max-width: 440px; margin: 0 auto 28px; }
.oops-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ═══ REVEAL ═══ */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.seen { opacity: 1; transform: none; }

/* ═══ RESPONSIVE ═══ */

@media (max-width: 1000px) {
  .ftr-grid { grid-template-columns: 1fr 1fr 1fr; }
  .ftr-brand { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 780px) {
  :root { --hdr-h: 60px; }

  .burger { display: grid; }

  .nav {
    position: fixed;
    inset: var(--hdr-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px;
    background: rgba(8, 9, 12, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s, transform 0.22s var(--ease);
  }

  .nav[data-open="true"] { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 13px 14px; font-size: 1rem; }

  .hdr-actions .btn-ghost { display: none; }
  .hero-grid-bg { background-size: 48px 48px; }

  .chat-log { min-height: 240px; padding-inline: 14px; }
  .chat-zone, .chat-top, .chat-foot { padding-inline: 14px; }
  .chat-steps { display: none; }
  .msg { max-width: 94%; }
  .chat-fields { grid-template-columns: 1fr; }
  .chip { width: 100%; }

  .marquee-track { gap: 40px; animation-duration: 32s; }
  .proof-head { flex-direction: column; align-items: flex-start; }

  .doc-nav { position: static; }
  .doc-nav ol { display: flex; flex-wrap: wrap; gap: 6px; }
  .doc-nav a { border-left: none; border: 1px solid var(--line-2); border-radius: 100px; padding: 7px 14px; }
  .doc-nav a[aria-current] { border-color: var(--accent); }

  .ftr-grid { grid-template-columns: 1fr 1fr; }
  .data-table, .data-table tbody, .data-table tr, .data-table td, .data-table th { display: block; }
  .data-table thead { display: none; }
  .data-table tr { margin-bottom: 12px; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
  .data-table td { border: none; border-bottom: 1px solid var(--line); }
  .data-table td::before { content: attr(data-label) " "; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-4); display: block; margin-bottom: 3px; }
}

@media (max-width: 520px) {
  .wrap { padding-inline: 18px; }
  .card, .offer { padding: 22px; }
  .hero-facts { gap: 8px; }
  .hero-fact { font-size: 0.75rem; padding: 6px 12px; }
  .btn-lg { width: 100%; }
  .final-actions .btn { width: 100%; }
  .ftr-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ═══ MOTION ═══ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}

@media print {
  .hdr, .chat-stage, .marquee-sec, .final, .doc-nav, .ftr-social { display: none; }
  html::before, body::before, body::after { display: none; }
  html, body { background: #fff; }
  body { color: #000; }
  .prose a::after { content: " (" attr(href) ")"; font-size: 0.75em; }
}
