/* =========================================================================
   ToxScreen design system — hand-authored, CSP-strict-safe (served from
   /toxscreen/static/, no inline styles, no @import, no external fonts).
   Used by the landing page and the auth funnel (signup / login).
   Brand: scientific slate ink + calibrated blue, with green/amber/red
   traffic-light semantics that mirror the product's risk output.
   ========================================================================= */

:root {
  /* Ink & surface */
  --ink:        #0b1220;
  --ink-2:      #1e293b;
  --slate:      #475569;
  --slate-2:    #64748b;
  --muted:      #94a3b8;
  --line:       #e6eaf0;
  --line-2:     #eef2f7;
  --bg:         #ffffff;
  --bg-tint:    #f7f9fc;
  --bg-tint-2:  #f1f5fb;

  /* Deep-navy surfaces (unmistakably blue, never black) — used by dark CTA
     bands, code blocks and the auth aside. */
  --surface-dark:   #10233f;
  --surface-dark-2: #18345c;

  /* Brand blue */
  --brand:      #2563eb;
  --brand-600:  #1d4ed8;
  --brand-700:  #1e40af;
  --brand-50:   #eff5ff;
  --brand-100:  #dbe7fe;

  /* Semantic (risk traffic-lights) */
  --ok:         #059669;
  --ok-50:      #ecfdf5;
  --ok-100:     #d1fae5;
  --warn:       #d97706;
  --warn-50:    #fffbeb;
  --danger:     #dc2626;
  --danger-50:  #fef2f2;

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

  /* Radii & shadow */
  --r-sm: 8px;
  --r:    12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.04);
  --shadow:    0 4px 12px rgba(15,23,42,.06), 0 2px 4px rgba(15,23,42,.04);
  --shadow-lg: 0 18px 40px -12px rgba(15,23,42,.18), 0 8px 16px -8px rgba(15,23,42,.10);
  --shadow-brand: 0 12px 28px -10px rgba(37,99,235,.45);

  --maxw: 1120px;
}

/* ---- Reset-ish base -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { color: var(--ink); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
a { color: var(--brand-600); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { max-width: 100%; }
svg { display: block; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

/* ---- Layout helpers -------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-tint { background: var(--bg-tint); }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-600); margin: 0 0 14px;
}
.center { text-align: center; }
.h2 { font-size: clamp(1.7rem, 1.2rem + 1.9vw, 2.4rem); }
.lede { font-size: 1.14rem; color: var(--slate); line-height: 1.6; }

/* ---- Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: .96rem; line-height: 1;
  padding: 13px 22px; border-radius: var(--r); border: 1px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .18s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap; text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-600); box-shadow: 0 16px 34px -10px rgba(37,99,235,.55); color: #fff; }
.btn-dark { background: var(--surface-dark); color: #fff; }
.btn-dark:hover { background: var(--surface-dark-2); color: #fff; }
.btn-ghost { background: #fff; color: var(--ink-2); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { background: var(--bg-tint); border-color: #d4dce7; color: var(--ink); }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---- Pills / badges -------------------------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; padding: 4px 11px; border-radius: 999px;
  background: var(--brand-50); color: var(--brand-700); border: 1px solid var(--brand-100);
}
.pill-beta { background: var(--brand-50); color: var(--brand-700); border-color: var(--brand-100); }
.pill-ok { background: var(--ok-50); color: #047857; border-color: var(--ok-100); }
.pill-warn { background: var(--warn-50); color: #b45309; border-color: #fde68a; }
.pill-danger { background: var(--danger-50); color: #b91c1c; border-color: #fecaca; }
.pill-slate { background: var(--bg-tint-2); color: var(--slate); border-color: var(--line); }

/* ---- Top nav --------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 30px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { color: var(--slate); font-size: .9rem; font-weight: 500; padding: 8px 10px; border-radius: 8px; }
.nav-links a:hover { color: var(--ink); background: var(--bg-tint); text-decoration: none; }
.nav-links a.nav-accent { color: #047857; }
.nav-cta { margin-left: 6px; padding: 9px 16px; font-size: .9rem; box-shadow: 0 6px 16px -8px rgba(37,99,235,.5); }
.nav-cta:hover { box-shadow: 0 10px 22px -8px rgba(37,99,235,.6); }
.nav-toggle { display: none; }

/* ---- Hero ------------------------------------------------------------ */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(1100px 460px at 82% -8%, var(--brand-50) 0%, rgba(239,245,255,0) 60%),
  radial-gradient(760px 380px at 3% 8%, rgba(16,185,129,.055) 0%, rgba(255,255,255,0) 55%),
  linear-gradient(180deg, #fbfcfe 0%, #ffffff 70%); }
.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 84px 24px 72px;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 1.4rem + 3vw, 3.35rem); letter-spacing: -0.03em; margin-bottom: 20px; }
.hero h1 .accent { color: var(--brand-600); }
.hero-sub { font-size: 1.16rem; color: var(--slate); max-width: 33ch; margin-bottom: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 28px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; font-size: .86rem; color: var(--slate-2); }
.hero-meta svg { width: 16px; height: 16px; color: var(--brand); flex: 0 0 auto; }

/* Hero product card (sample result panel) */
.result-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.result-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--line-2); background: linear-gradient(180deg,#fbfcfe,#fff); }
.result-title { font-size: .82rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.result-mono { font-family: var(--mono); font-size: .72rem; color: var(--muted); }
.result-body { padding: 14px 18px 18px; }
.risk-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line-2); }
.risk-row:last-child { border-bottom: 0; }
.risk-name { font-size: .9rem; font-weight: 600; color: var(--ink-2); }
.risk-name small { display: block; font-weight: 400; font-size: .72rem; color: var(--muted); }
.risk-tag { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.risk-tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.risk-ok { color: #047857; background: var(--ok-50); }
.risk-warn { color: #b45309; background: var(--warn-50); }
.risk-danger { color: #b91c1c; background: var(--danger-50); }
.risk-abstain { color: var(--slate); background: var(--bg-tint-2); }
.result-foot { display: flex; align-items: center; gap: 8px; padding: 12px 18px; border-top: 1px solid var(--line-2); background: var(--bg-tint); font-size: .76rem; color: var(--slate-2); }

/* decorative floating molecule ring */
.mol-ring { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

/* ---- Logo strip / trust --------------------------------------------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-tint); }
.trust-inner { max-width: var(--maxw); margin: 0 auto; padding: 22px 24px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 14px; }
.trust-inner .label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-2); font-weight: 700; margin-right: 6px; }
.chip { font-size: .82rem; font-weight: 600; color: var(--slate); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; }
.chip strong { color: var(--ink); }

/* ---- Feature / step grid -------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
.step:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: #dbe3ee; }
.step-num { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.05rem; color: var(--brand-700); background: var(--brand-50); border: 1px solid var(--brand-100); margin-bottom: 16px; }
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--slate); }

/* ---- Calibration / validation strip --------------------------------- */
.calib { background: linear-gradient(180deg, var(--brand-50), #fff 85%); border-top: 1px solid var(--brand-100); border-bottom: 1px solid var(--brand-100); }
.calib-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.calib-head h3 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-700); }
.calib-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.calib-card { background: #fff; border: 1px solid var(--brand-100); border-radius: var(--r); padding: 16px; }
.calib-card .t-name { font-size: .74rem; color: var(--slate-2); margin-bottom: 6px; }
.calib-card .t-auc { font-size: 1.7rem; font-weight: 700; letter-spacing: -0.02em; }
.calib-card .t-auc span { font-size: .8rem; font-weight: 500; color: var(--slate-2); }
.calib-card .t-status { font-size: .72rem; font-weight: 700; margin-top: 2px; }
.calib-card .t-note { font-size: .72rem; color: var(--slate-2); margin-top: 6px; line-height: 1.4; }
.pass { color: #047857; } .fail { color: var(--warn); }
.calib-callout { background: #fff; border: 1px solid var(--brand-100); border-radius: var(--r); padding: 18px; margin-top: 16px; font-size: .92rem; color: var(--slate); }
.calib-callout strong { color: var(--ink); }
.calib-foot { font-size: .78rem; color: var(--slate-2); margin-top: 14px; }

/* ---- Generic card / figure ------------------------------------------ */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.figure { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-sm); }
.figure .fig-title { font-size: 1.02rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.figure figcaption { font-size: .82rem; color: var(--slate-2); line-height: 1.55; margin-top: 12px; }
.figure figcaption em { color: var(--slate); }
.chart { width: 100%; height: auto; display: block; }

/* Applicability-domain scatter (real computed ad_score per compound) */
.ad-scatter { width: 100%; height: auto; display: block; }
.ad-out  { fill: #fef2f2; stroke: #fecaca; }
.ad-bord { fill: #fffbeb; stroke: #fde68a; }
.ad-in   { fill: #ecfdf5; stroke: #a7f3d0; }
.ad-bandlbl { font-size: 11px; font-weight: 700; font-family: var(--sans); letter-spacing: .04em; }
.ad-tout { fill: #b91c1c; } .ad-tbord { fill: #b45309; } .ad-tin { fill: #047857; }
.ad-axis  { stroke: #cbd5e1; stroke-width: 1; }
.ad-gtick { stroke: #e6eaf0; stroke-width: 1; }
.ad-tick  { font-size: 11px; font-family: var(--mono); fill: #64748b; }
.ad-axlbl { font-size: 10.5px; font-family: var(--sans); fill: #94a3b8; }
.ad-pt    { stroke: #fff; stroke-width: 1.5; }
.ad-lead  { stroke: #cbd5e1; stroke-width: 1; }
.ad-name  { font-size: 10.5px; font-family: var(--sans); fill: #475569; }
.legend { display: flex; gap: 20px; flex-wrap: wrap; font-size: .8rem; color: var(--slate); margin-top: 12px; }
.legend span { display: inline-flex; align-items: center; gap: 7px; }

/* ---- Longevity section ---------------------------------------------- */
.longevity { background: linear-gradient(180deg, var(--ok-50) 0%, #fff 55%); border-top: 1px solid var(--ok-100); border-bottom: 1px solid var(--ok-100); }
.longevity .eyebrow { color: #047857; }
.lv-steps { display: grid; gap: 14px; }
.lv-step { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--ok-100); border-radius: var(--r); padding: 16px 18px; }
.lv-step .n { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 999px; background: var(--ok); color: #fff; font-weight: 700; font-size: .88rem; display: flex; align-items: center; justify-content: center; }
.lv-step h4 { font-size: .98rem; margin-bottom: 3px; }
.lv-step p { font-size: .88rem; color: var(--slate); }
.mol3d { position: relative; width: 100%; max-width: 620px; margin: 0 auto; background:
  radial-gradient(120% 120% at 50% 30%, #fbfdff 0%, #eef3fa 100%); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; }
.mol3d img { width: 100%; height: auto; display: block; }
.mol3d .ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; color: var(--muted); font-size: .82rem; }
.aspiration { background: #fff; border: 1px solid var(--ok-100); border-radius: var(--r-lg); padding: 22px; font-size: 1rem; color: var(--slate); }
.aspiration strong { color: var(--ink); }
.fine { font-size: .76rem; color: var(--muted); margin-top: 10px; }

/* ---- Demo ------------------------------------------------------------ */
.demo-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.demo-tab { font-family: inherit; font-size: .88rem; font-weight: 600; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--slate); cursor: pointer; transition: all .15s ease; }
.demo-tab:hover { border-color: #cbd5e1; color: var(--ink); }
.demo-tab[aria-selected="true"] { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: 0 6px 16px -8px rgba(37,99,235,.5); }
.demo-frame-wrap { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); background: #fff; position: relative; min-height: 320px; }
.demo-frame-wrap iframe { width: 100%; height: 620px; border: 0; display: block; }
.demo-loading { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--slate-2); font-size: .9rem; background: rgba(255,255,255,.7); }
.demo-banner { display: none; background: var(--warn-50); border: 1px solid #fcd34d; border-radius: var(--r); padding: 10px 16px; font-size: .85rem; color: #92400e; margin-bottom: 16px; }
.demo-banner.is-shown { display: block; }
.demo-loading.is-hidden { display: none; }
.is-hidden { display: none !important; }
.spinner { width: 18px; height: 18px; border: 2px solid var(--line); border-top-color: var(--brand); border-radius: 50%; animation: ts-spin .7s linear infinite; }
@keyframes ts-spin { to { transform: rotate(360deg); } }

/* ---- Sample gallery -------------------------------------------------- */
.sample-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.sample-card { text-align: left; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px; cursor: pointer; font-family: inherit; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.sample-card:hover { border-color: #bcd0f5; box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.sample-card[aria-selected="true"] { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(37,99,235,.12); background: var(--brand-50); }
.sample-card .sc-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 6px; }
.sample-card .sc-name { font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.sample-card .sc-label { font-size: .68rem; font-weight: 600; color: var(--slate); background: var(--bg-tint-2); border-radius: 999px; padding: 3px 9px; white-space: nowrap; }
.sample-card .sc-desc { font-size: .84rem; color: var(--slate); line-height: 1.45; }
.report-panel { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.report-bar { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 16px; background: var(--bg-tint); border-bottom: 1px solid var(--line); font-size: .85rem; color: var(--slate); }
.report-bar strong { color: var(--ink); }
.report-panel iframe { width: 100%; height: 800px; border: 0; display: block; }

/* ---- Pricing --------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.price-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 22px; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease; }
.price-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.price-card.featured { border: 1.5px solid var(--brand); box-shadow: var(--shadow-brand); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em; padding: 5px 13px; border-radius: 999px; }
.price-name { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.price-amt { font-size: 2rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.price-amt .per { font-size: .95rem; font-weight: 500; color: var(--slate-2); }
.price-sub { font-size: .84rem; color: var(--slate-2); margin: 2px 0 16px; }
.price-feats { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 9px; }
.price-feats li { position: relative; padding-left: 24px; font-size: .86rem; color: var(--slate); }
.price-feats li::before { content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; border-radius: 50%; background: var(--ok-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23059669' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 8.5l2.5 2.5L12 5.5'/%3E%3C/svg%3E"); }

/* ---- Info / legal blocks -------------------------------------------- */
.prose h3 { font-size: 1.05rem; margin-bottom: 8px; }
.prose p { font-size: .9rem; color: var(--slate); margin-bottom: 10px; }
.prose strong { color: var(--ink); }
.callout-legal { background: var(--bg-tint); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; }

/* ---- Content pages (about / docs / methods / use-cases) -------------- */
.page-hero { text-align: center; padding: 72px 0 40px; background:
  radial-gradient(900px 360px at 50% -20%, var(--brand-50) 0%, rgba(239,245,255,0) 60%), #fff; }
.page-hero h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); margin-bottom: 16px; }
.page-hero p { font-size: 1.14rem; color: var(--slate); max-width: 62ch; margin: 0 auto; }
/* min-width: 0 overrides the grid default of min-width: auto, which sizes
   the 1fr track in .layout-toc to its widest child's intrinsic width (the
   760px-viewBox SVG chart, unbroken table rows) instead of the available
   track width — the classic CSS Grid "blowout" that pushed the whole page
   into horizontal scroll on mobile despite the SVG's own width:100%. */
.content { font-size: 1rem; color: var(--slate); line-height: 1.7; min-width: 0; }
.content h2 { font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem); margin-bottom: 18px; }
.content h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--ink); }
.content p { margin-bottom: 14px; }
.content strong { color: var(--ink-2); }
.content .muted { color: var(--slate-2); font-size: .92rem; }
.content .em { font-style: italic; color: var(--slate-2); }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px; }
.info-card ul { margin: 8px 0 0; padding-left: 20px; }
.info-card li { margin-bottom: 5px; font-size: .92rem; }
.note-blue { background: var(--brand-50); border: 1px solid var(--brand-100); border-radius: var(--r); padding: 18px; color: var(--slate); font-size: .95rem; }
.note-blue strong { color: var(--brand-700); }

.tbl-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); }
.tbl { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 640px; }
.tbl th { text-align: left; padding: 11px 14px; background: var(--bg-tint); color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line); white-space: nowrap; }
.tbl td { padding: 11px 14px; border-top: 1px solid var(--line-2); color: var(--slate); }
.tbl td.mono, .tbl th.mono { font-family: var(--mono); }
.tbl .ok { color: #047857; font-weight: 600; }
.tbl .warn { color: #b45309; font-weight: 600; }

.cta-dark { background:
  radial-gradient(700px 300px at 50% -20%, rgba(37,99,235,.28), transparent 60%),
  linear-gradient(160deg, var(--surface-dark) 0%, var(--surface-dark-2) 100%); color: #e2e8f0; text-align: center; padding: 64px 24px; }
.cta-dark h2 { color: #fff; }
.cta-dark p { color: #b6c2d6; max-width: 60ch; margin: 14px auto 26px; }
.cta-dark .fine { color: #8fa3bf; }

/* ---- Docs / code / API ---------------------------------------------- */
.content pre, .code-block { background: var(--surface-dark); color: #e2e8f0; border-radius: var(--r); padding: 16px 18px; overflow-x: auto; font-family: var(--mono); font-size: .82rem; line-height: 1.6; margin: 0 0 16px; }
.content code, .code-inline { font-family: var(--mono); font-size: .86em; background: var(--bg-tint-2); color: var(--ink-2); padding: 1px 6px; border-radius: 5px; overflow-wrap: anywhere; }
.content pre code, .code-block code { background: none; color: inherit; padding: 0; font-size: 1em; }
.method-badge { display: inline-block; font-family: var(--mono); font-size: .72rem; font-weight: 700; padding: 3px 9px; border-radius: 6px; letter-spacing: .03em; }
.method-get { background: var(--ok-50); color: #047857; }
.method-post { background: var(--brand-50); color: var(--brand-700); }
.method-delete { background: var(--danger-50); color: #b91c1c; }
.endpoint { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: .88rem; color: var(--ink); margin-bottom: 6px; flex-wrap: wrap; }

/* On-page table of contents (methods) */
.toc { position: sticky; top: 84px; align-self: start; }
.toc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.toc a { display: block; padding: 6px 10px; border-radius: 8px; font-size: .88rem; color: var(--slate); border-left: 2px solid transparent; }
.toc a:hover { background: var(--bg-tint); color: var(--ink); text-decoration: none; }
.layout-toc { display: grid; grid-template-columns: 220px 1fr; gap: 40px; }
@media (max-width: 860px) { .layout-toc { grid-template-columns: 1fr; } .toc { position: static; } }

/* Definition rows / small stat rows reused by use-cases + data-room */
.kv { display: grid; grid-template-columns: 180px 1fr; gap: 8px 18px; font-size: .92rem; }
.kv dt { color: var(--slate-2); font-weight: 600; }
.kv dd { margin: 0; color: var(--ink-2); }
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-band .s .v { font-size: 1.8rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.stat-band .s .k { font-size: .82rem; color: var(--slate-2); }
@media (max-width: 700px) { .stat-band { grid-template-columns: repeat(2, 1fr); } .kv { grid-template-columns: 1fr; gap: 2px 0; } .kv dt { margin-top: 8px; } }

/* ---- Dashboard shell (CSP workaround) -------------------------------- */
/* The dashboard (app.html) is an Alpine app that needs 'unsafe-eval'. When the
   live nginx CSP is stricter than the app's, /toxscreen/app serves this shell,
   which embeds the unchanged dashboard from an /api/ route that nginx does not
   strict-CSP — so Alpine runs under the app's own permissive policy. Once the
   nginx CSP is aligned this shell can be retired. */
html.app-shell, body.app-shell { margin: 0; height: 100%; background: #f7f9fc; }
.app-frame { position: fixed; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.app-shell-fallback { position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--slate-2); font-family: var(--sans); font-size: .95rem; }

/* ---- Footer ---------------------------------------------------------- */
.footer { border-top: 1px solid var(--line); background: #fff; padding: 48px 0 40px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; margin-bottom: 22px; }
.footer-links a { color: var(--slate-2); font-size: .88rem; }
.footer-links a:hover { color: var(--ink); text-decoration: none; }
.footer-fine { text-align: center; color: var(--muted); font-size: .82rem; }
.footer-fine p { margin: 3px 0; }

/* ---- Auth (signup / login) ------------------------------------------ */
.auth-shell { min-height: calc(100vh - 62px); display: grid; grid-template-columns: 1.05fr .95fr; }
.auth-aside { background:
  radial-gradient(700px 340px at 20% 0%, rgba(37,99,235,.16), transparent 60%),
  linear-gradient(160deg, var(--surface-dark) 0%, var(--surface-dark-2) 100%);
  color: #e2e8f0; padding: 56px 52px; display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.auth-aside .kicker { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #7dd3fc; font-weight: 700; }
.auth-aside h2 { color: #fff; font-size: 1.9rem; letter-spacing: -0.02em; }
.auth-aside p { color: #b6c2d6; font-size: 1rem; }
.auth-points { list-style: none; padding: 0; margin: 6px 0 0; display: grid; gap: 12px; }
.auth-points li { position: relative; padding-left: 28px; color: #cbd6e6; font-size: .94rem; }
.auth-points li::before { content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(16,185,129,.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%2334d399' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 8.5l2.5 2.5L12 5.5'/%3E%3C/svg%3E"); }
.auth-metrics { display: flex; gap: 26px; margin-top: 10px; }
.auth-metrics .m .v { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.auth-metrics .m .k { font-size: .76rem; color: #8fa3bf; }
.auth-main { display: flex; align-items: center; justify-content: center; padding: 48px 24px; background: var(--bg-tint); }
.auth-card { width: 100%; max-width: 400px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: 34px 32px; }
.auth-card h1 { font-size: 1.5rem; margin-bottom: 6px; }
.auth-card .sub { color: var(--slate-2); font-size: .92rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.field label .opt { font-weight: 400; color: var(--muted); }
.input { width: 100%; font-family: inherit; font-size: .95rem; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: var(--r); padding: 11px 13px; transition: border-color .15s ease, box-shadow .15s ease; }
.input::placeholder { color: var(--muted); }
.input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(37,99,235,.14); }
.auth-alt { text-align: center; font-size: .88rem; color: var(--slate-2); margin-top: 18px; }
.form-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 14px; }
.alert { display: none; border-radius: var(--r); padding: 10px 14px; font-size: .86rem; margin-bottom: 16px; }
.alert.is-shown { display: block; }
.alert-error { background: var(--danger-50); border: 1px solid #fecaca; color: #b91c1c; }
.alert-ok { background: var(--ok-50); border: 1px solid var(--ok-100); color: #047857; }

/* =====================================================================
   ANALYTICS & CHARTS  (Tufte-style: high data-ink, small multiples,
   reference lines, direct labels, no chartjunk, no black surfaces).
   SVG marks use presentation attributes / these classes (CSP-safe — no
   inline style=). Palette: brand blue for the model, reserved green/
   amber/red status, recessive slate ink for chrome.
   ===================================================================== */

/* Shared SVG chart ink (kept recessive so data leads) */
.chart .grid   { stroke: #eef2f7; stroke-width: 1; }
.chart .axis   { stroke: #cbd5e1; stroke-width: 1; }
.chart .ref    { stroke-dasharray: 4 3; stroke-width: 1; }
.chart .ref-chance { stroke: #cbd5e1; }
.chart .ref-bar    { stroke: #059669; opacity: .6; }
.chart .tick   { fill: #94a3b8; font-size: 10.5px; font-family: var(--mono); }
.chart .tickb  { fill: #64748b; font-size: 11px; font-weight: 600; }
.chart .lbl    { fill: #0f172a; font-size: 13px; font-weight: 600; font-family: var(--sans); }
.chart .lbl-sm { fill: #64748b; font-size: 11px; font-family: var(--sans); }
.chart .val    { fill: #334155; font-size: 12px; font-family: var(--mono); }
.chart .val-strong { fill: #0f172a; font-size: 12px; font-weight: 700; font-family: var(--mono); }
.chart .con    { stroke: #cbd5e1; stroke-width: 2.5; }   /* dumbbell connector */
.chart .con-bad{ stroke: #fecaca; stroke-width: 2.5; }
.chart .title-in  { fill: #1d4ed8; }
.chart .title-out { fill: #b45309; }

/* Section wrapper for the analytics band */
.analytics { background: var(--bg-tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* --- Coverage metric tiles (the "what it covers" numbers) --- */
.metric-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.metric-band.two { grid-template-columns: repeat(2, 1fr); }
.metric-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px 20px 18px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.metric-tile::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--brand); opacity: .85; }
.metric-tile.ok::before   { background: var(--ok); }
.metric-tile.warn::before { background: var(--warn); }
.metric-tile .m-v { font-size: 2rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.metric-tile .m-v small { font-size: .95rem; font-weight: 600; color: var(--slate-2); letter-spacing: 0; }
.metric-tile .m-k { font-size: .82rem; font-weight: 700; color: var(--ink-2); margin-top: 8px; }
.metric-tile .m-s { font-size: .78rem; color: var(--slate-2); margin-top: 3px; line-height: 1.4; }

/* --- Dark accent band (hybrid theme: dramatic dark section for benchmarks) --- */
.band-dark { position: relative; overflow: hidden; padding: 84px 0;
  background:
    radial-gradient(1000px 480px at 84% -12%, rgba(56,132,246,.22) 0%, rgba(14,20,32,0) 60%),
    radial-gradient(680px 380px at 4% 4%, rgba(45,212,191,.12) 0%, rgba(14,20,32,0) 55%),
    linear-gradient(180deg, #0b111c 0%, #0e1420 72%);
  color: #aebccf; border-top: 1px solid #1b2740; border-bottom: 1px solid #1b2740; }
.band-dark .eyebrow { color: #7db0ff; }
.band-dark h2, .band-dark h3, .band-dark .fig-title { color: #f2f6fc; }
.band-dark .lede, .band-dark p { color: #9fb0c8; }
.band-dark p strong, .band-dark .lede strong { color: #eaf1fb; }
.band-dark a { color: #93baff; }
.band-dark a:hover { color: #bcd4ff; }
.band-dark .figure { background: #0f1a2b; border-color: #24334e; box-shadow: 0 24px 56px -28px rgba(0,0,0,.6); }
.band-dark .figure .fig-title { color: #f2f6fc; }
.band-dark .figure figcaption { color: #7f92ad; }
.band-dark .figure figcaption em { color: #9fb0c8; }
.band-dark .metric-tile { background: #111b2c; border-color: #26344f; box-shadow: 0 22px 54px -26px rgba(0,0,0,.65); }
.band-dark .metric-tile::before { background: #3b82f6; opacity: .95; }
.band-dark .metric-tile.ok::before { background: #34d399; }
.band-dark .metric-tile.warn::before { background: #fbbf24; }
.band-dark .metric-tile .m-v { color: #f2f6fc; }
.band-dark .metric-tile.ok .m-v { color: #6ee7b7; }
.band-dark .metric-tile .m-v small { color: #9fb8dd; }
.band-dark .metric-tile .m-k { color: #d3deec; }
.band-dark .metric-tile .m-s { color: #8194ad; }
.bench-lift { display: grid; grid-template-columns: 1.05fr 1fr; gap: 30px; align-items: center; margin: 6px 0 30px; }
@media (max-width: 760px) { .bench-lift { grid-template-columns: 1fr; gap: 18px; } }
.bench-svg { width: 100%; height: auto; display: block; }
.bench-svg .axis { stroke: #33425f; stroke-width: 1; }
.bench-svg .grid { stroke: #1f2c45; stroke-width: 1; }
.bench-svg .tick { fill: #6b7f9c; font-size: 11px; font-family: ui-monospace, monospace; }
.bench-svg .ref-bar { stroke: #34d399; opacity: .55; stroke-dasharray: 4 3; stroke-width: 1.5; }
.bench-note { font-size: .82rem; color: #7f92ad; margin-top: 6px; }
.bench-note a { color: #93baff; }

/* --- Small-multiples grid (one mini panel per endpoint/target) --- */
.smallmult { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.sm-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 14px 16px 12px; }
.sm-panel .sm-top { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 2px; }
.sm-panel .sm-name { font-size: .92rem; font-weight: 700; color: var(--ink); }
.sm-panel .sm-pdb { font-size: .7rem; font-family: var(--mono); color: var(--muted); }
.sm-panel .sm-verdict { font-size: .7rem; font-weight: 700; }
.sm-panel .sm-svg { width: 100%; height: auto; display: block; margin-top: 6px; }
/* Recessive ticks/labels — the small viewBox is upscaled, so shrink text (CSS
   overrides SVG presentation attributes) to keep chrome from dominating. */
.sm-svg text { font-size: 8px; }
.sm-svg .tick { font-size: 7px; fill: #94a3b8; }
/* Line elements need explicit styling here too (the .chart-scoped rules don't
   reach .sm-svg): baseline, chance/bar reference lines, dumbbell connectors. */
.sm-svg .axis { stroke: #cbd5e1; stroke-width: 1; }
.sm-svg .ref { stroke-dasharray: 3 2; stroke-width: 1; }
.sm-svg .ref-chance { stroke: #cbd5e1; }
.sm-svg .ref-bar { stroke: #059669; opacity: .55; }
.sm-svg .con { stroke: #cbd5e1; stroke-width: 2; }
.sm-svg .con-bad { stroke: #fecaca; stroke-width: 2; }
.sm-panel .sm-foot { font-size: .74rem; color: var(--slate-2); line-height: 1.45; margin-top: 6px; }
@media (max-width: 640px) { .smallmult { grid-template-columns: 1fr; } .metric-band { grid-template-columns: repeat(2, 1fr); } }

/* --- Capability / gate matrix (reuses .tbl chrome; adds status glyphs) --- */
.cap-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 7px; vertical-align: middle; }
.cap-dot.yes { background: var(--ok); }
.cap-dot.part { background: var(--warn); }
.cap-dot.no { background: #cbd5e1; }
/* Gate glyphs — shape carries meaning too, never color alone */
.gate { text-align: center; font-weight: 700; font-size: .95rem; }
.g-pass { color: #059669; }
.g-fail { color: #dc2626; }
.g-unk  { color: #94a3b8; font-weight: 400; }
.verdict { display: inline-flex; align-items: center; gap: 5px; font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; letter-spacing: .02em; white-space: nowrap; }
.verdict::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.verdict.green   { color: #047857; background: var(--ok-50); }
.verdict.blocked { color: #b91c1c; background: var(--danger-50); }
.verdict.hold    { color: #b45309; background: var(--warn-50); }
.gate-tbl td, .gate-tbl th { text-align: center; }
.gate-tbl td:first-child, .gate-tbl th:first-child { text-align: left; }
/* Capability inventory table — category subhead rows */
.cap-tbl .cat-row td { background: var(--bg-tint-2); font-weight: 700; color: var(--ink); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding-top: 9px; padding-bottom: 9px; }
.cap-tbl td:first-child { font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.cap-tbl .avail { white-space: nowrap; }
.cap-legend { display: flex; flex-wrap: wrap; gap: 14px; font-size: .78rem; color: var(--slate-2); margin-top: 12px; }
.cap-legend span { display: inline-flex; align-items: center; }

/* --- Two-column honest "does / does not" panel --- */
.does-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.does-col { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.does-col.yes { border-top: 3px solid var(--ok); }
.does-col.no  { border-top: 3px solid var(--slate-2); }
.does-col h4 { font-size: 1rem; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.does-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.does-col li { position: relative; padding-left: 26px; font-size: .9rem; color: var(--slate); line-height: 1.5; }
.does-col.yes li::before { content: ""; position: absolute; left: 0; top: 2px; width: 17px; height: 17px; border-radius: 50%; background: var(--ok-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23059669' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 8.5l2.5 2.5L12 5.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.does-col.no li::before { content: ""; position: absolute; left: 0; top: 2px; width: 17px; height: 17px; border-radius: 50%; background: var(--bg-tint-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' d='M5 5l6 6M11 5l-6 6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.does-col li strong { color: var(--ink-2); }
@media (max-width: 700px) { .does-grid { grid-template-columns: 1fr; } }

/* --- Paired-bar lift figure (baseline vs calibrated) --- */
.lift { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; align-items: center; }
@media (max-width: 700px) { .lift { grid-template-columns: 1fr; } }

/* Capability table → stacked cards on mobile (otherwise the wide table would
   horizontally scroll and hide the descriptions). */
@media (max-width: 640px) {
  .tbl.cap-tbl { min-width: 0; }
  .cap-tbl thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .cap-tbl, .cap-tbl tbody, .cap-tbl tr, .cap-tbl td { display: block; width: 100%; }
  .cap-tbl tr:not(.cat-row) { padding: 12px 2px 14px; border-top: 1px solid var(--line-2); }
  .cap-tbl td { border: 0; padding: 2px 14px; }
  .cap-tbl td:first-child { font-size: .98rem; color: var(--ink); margin-bottom: 2px; }
  .cap-tbl .cat-row td { padding: 9px 14px; }
  .cap-tbl .avail { padding-top: 9px; }
}

/* ---- Utilities (small, named — keeps markup free of inline styles) --- */
.u-mb-10 { margin-bottom: 10px; }
.u-mb-14 { margin-bottom: 14px; }
.u-mb-16 { margin-bottom: 16px; }
.u-mb-22 { margin-bottom: 22px; }
.u-mb-28 { margin-bottom: 28px; }
.u-mb-36 { margin-bottom: 36px; }
.u-mb-40 { margin-bottom: 40px; }
.u-mb-44 { margin-bottom: 44px; }
.u-mt-8  { margin-top: 8px; }
.u-mt-10 { margin-top: 10px; }
.u-mw-sm { max-width: 22ch; }
.u-mw-md { max-width: 60ch; }
.u-intro { margin-left: auto; margin-right: auto; }
.u-mt-44 { margin-top: 44px; }
.calib-pad { padding-top: 44px; padding-bottom: 44px; }
.page-pad { padding-top: 56px; padding-bottom: 64px; }
.rel { position: relative; }

/* ---- Motion / a11y --------------------------------------------------- */
/* Reveal-on-scroll is a progressive enhancement: content is visible by
   default and only starts hidden once JS has flagged the document (body.reveal-on),
   so no-JS visitors and crawlers always see everything. */
body.reveal-on .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
body.reveal-on .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---- Responsive ------------------------------------------------------ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .grid-3, .grid-4, .calib-grid, .price-grid, .sample-grid { grid-template-columns: repeat(2, 1fr); }
  .auth-shell { grid-template-columns: 1fr; }
  .auth-aside { display: none; }
}
@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .grid-3, .grid-4, .calib-grid, .price-grid, .sample-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 8px 14px; }
  /* Long CTA labels (e.g. "Read the full scientific digest →") no longer
     fit on one line at phone widths; let them wrap instead of overflowing
     the viewport. */
  .btn { white-space: normal; }
}
/* Nav collapses to the hamburger menu earlier than the other 620px mobile
   tweaks: the 9-link nav's natural width (~966px) doesn't fit — and doesn't
   wrap — anywhere from 621px up to ~965px, silently pushing "Login" and
   "Get started free" off-screen with no way to reach them short of
   scrolling the whole page sideways. */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 62px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px; gap: 2px; box-shadow: var(--shadow); }
  .nav-links.open a { padding: 12px 14px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer; }
}
