/* soloinc.ai — one stylesheet, no build step.
   The tokens are the console's own (scripts/console/ui/app.css) so the page,
   the screenshots and the product read as one thing. Dark first; a light
   theme follows the device or the toggle. */

@font-face { font-family: 'Archivo'; src: url('../fonts/archivo.woff2') format('woff2'); font-weight: 100 900; font-stretch: 62% 125%; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('../fonts/inter.woff2') format('woff2'); font-weight: 100 900; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('../fonts/jetbrains-mono.woff2') format('woff2'); font-weight: 100 800; font-display: swap; }

:root {
  color-scheme: dark light;
  /* These are the console's tokens (scripts/console/ui/app.css). The product and
     the site are one thing and they share one palette -- when that file's values
     change, these change with them. */
  --bg: #0c1313; --panel: #161f1f; --panel-2: #212b2c; --line: #3e4a4b;
  --line-strong: #5c6d6d;
  --ink: #ebeff2; --dim: #abb2b8; --faint: #7d8989;
  --accent: #00c3cb; --on-accent: #001718; --ok: #48c063; --warn: #e2a520; --bad: #fc5950; --info: #a490ff;
  --standby: #7d9db4;
  --accent-fill: color-mix(in srgb, var(--accent) 11%, var(--panel));
  --accent-line: color-mix(in srgb, var(--accent) 36%, var(--line));
  --display: 'Archivo', 'Archivo Fallback', system-ui, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px; --s6: 40px; --s7: 64px; --s8: 96px;
  --r1: 6px; --r2: 10px; --r3: 14px;
  --wrap: 1180px; --measure: 62ch;
  --t: 160ms; --ease: cubic-bezier(.2,.7,.3,1);
  --flow-period: 1.1s;
}
:root[data-theme="light"] { color-scheme: light; }
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --bg: #f2f6f6; --panel: #fcfefe; --panel-2: #eaf0f0; --line: #d5dcdd;
    --line-strong: #7d8989;
    --ink: #171b1f; --dim: #4f565c; --faint: #667172;
    --accent: #007980; --on-accent: #ffffff; --ok: #00792b; --warn: #865900; --bad: #b7191c;
    /* --info was never overridden here. It stayed at the dark theme's purple and
       measured 3.1:1 on the light ground -- a WCAG AA failure on the pages that
       sell this product. */
    --info: #654abb; --standby: #546c7e;
  }
}
:root[data-theme="light"] {
  --bg: #f2f6f6; --panel: #fcfefe; --panel-2: #eaf0f0; --line: #d5dcdd;
  --line-strong: #7d8989;
  --ink: #171b1f; --dim: #4f565c; --faint: #667172;
  --accent: #007980; --on-accent: #ffffff; --ok: #00792b; --warn: #865900; --bad: #b7191c;
  --info: #654abb; --standby: #546c7e;
}
:root[data-theme="dark"] {
  --bg: #0c1313; --panel: #161f1f; --panel-2: #212b2c; --line: #3e4a4b;
  --line-strong: #5c6d6d;
  --ink: #ebeff2; --dim: #abb2b8; --faint: #7d8989;
  --accent: #00c3cb; --on-accent: #001718; --ok: #48c063; --warn: #e2a520; --bad: #fc5950;
  --info: #a490ff; --standby: #7d9db4;
}

/* ---------------------------------------------------------------- base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--bg); color: var(--ink); font: 400 17px/1.55 var(--sans); font-feature-settings: 'cv11', 'ss01'; }
img, svg, video { max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; font-stretch: 108%; letter-spacing: -0.02em; line-height: 1.02; margin: 0 0 var(--s4); color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6.4vw, 5.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-stretch: 100%; letter-spacing: -0.01em; line-height: 1.15; }
h4 { font-size: 1.05rem; font-stretch: 100%; letter-spacing: 0; line-height: 1.25; font-weight: 700; }
p { margin: 0 0 var(--s4); max-width: var(--measure); }
.lead { font-size: clamp(1.15rem, 1.7vw, 1.4rem); color: var(--dim); max-width: 48ch; }
.sub { color: var(--dim); font-size: 0.95rem; }
.micro { color: var(--faint); font-size: 0.82rem; }
.mono, .num, code, kbd, pre { font-family: var(--mono); font-variant-numeric: tabular-nums; }
code { font-size: 0.9em; background: var(--panel-2); border: 1px solid var(--line); border-radius: 4px; padding: 0.05em 0.35em; }
pre { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r2); padding: var(--s4) var(--s5); overflow-x: auto; font-size: 0.92rem; line-height: 1.5; }
pre code { background: none; border: 0; padding: 0; font-size: inherit; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--s6) 0; }
ul, ol { padding-left: 1.2em; margin: 0 0 var(--s4); }
li { margin-bottom: var(--s1); }
b, strong { font-weight: 650; color: var(--ink); }
table { border-collapse: collapse; width: 100%; font-size: 0.95rem; }
th, td { text-align: left; padding: var(--s2) var(--s3); border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--dim); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.02em; text-transform: uppercase; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r2); background: var(--panel); }
.table-wrap table { min-width: 720px; }
.table-wrap th, .table-wrap td { padding: var(--s3) var(--s4); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--panel); color: var(--ink); padding: 8px 12px; border-radius: 6px; z-index: 100; }
.skip:focus { left: 8px; }

/* ---------------------------------------------------------------- layout */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--s5); }
.band { padding: var(--s8) 0; }
.band.tight { padding: var(--s7) 0; }
.band + .band { border-top: 1px solid var(--line); }
.grid { display: grid; gap: var(--s5); }
.grid.two { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid.four { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: var(--s6); align-items: center; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 900px) { .split, .split.reverse { grid-template-columns: 1fr; } .split.reverse > :first-child { order: 0; } }
.eyebrow { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin: 0 0 var(--s3); font-weight: 600; }
.eyebrow.dim { color: var(--dim); }

/* the road: a rule with the console's travelling dash */
.road { height: 1px; border: 0; background: var(--line); position: relative; margin: 0; overflow: visible; }
.road::after { content: ''; position: absolute; inset: -1px 0 auto 0; height: 3px; background-image: repeating-linear-gradient(90deg, var(--accent) 0 6px, transparent 6px 28px); opacity: 0.55; animation: road-carry var(--flow-period) linear infinite; }
@keyframes road-carry { to { background-position: 28px 0; } }
@media (prefers-reduced-motion: reduce) { .road::after { animation: none; } }

/* ---------------------------------------------------------------- header */
.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; gap: var(--s4); min-height: 58px; }
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-family: var(--display); font-size: 1.22rem; letter-spacing: -0.02em; white-space: nowrap; }
.brand:hover { text-decoration: none; }
.brand .mark { width: 24px; height: 24px; }
.brand .word { font-weight: 500; } .brand .word b { font-weight: 800; color: var(--accent); }
.title-word b, .word b { color: var(--accent); }
/* the lockups, pasted inline so ink and accent follow the theme */
.lockup { display: block; height: 44px; width: auto; color: var(--ink); }
.lockup.stacked { height: 120px; }
.lockup.small { height: 28px; }
.lockup.footer { height: 56px; margin-bottom: var(--s3); }
.door .box-head svg { width: 14px; height: 14px; color: var(--ink); }
.eyebrow svg { width: 18px; height: 18px; vertical-align: -4px; margin-right: 6px; color: var(--accent); }
.proof .glyph { width: 18px; height: 18px; vertical-align: -3px; margin-right: 6px; }
.tier .tile { position: absolute; top: var(--s4); right: var(--s4); width: 40px; height: 40px; }
.press-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s4); }
.press-grid img { width: 100%; height: auto; border: 1px solid var(--line); border-radius: var(--r2); background: var(--bg); }
.press-grid .micro { display: block; margin-top: var(--s1); }
.nav { display: flex; gap: var(--s2); margin-left: var(--s4); flex-wrap: wrap; }
.nav a { color: var(--dim); padding: 6px 10px; border-radius: var(--r1); font-size: 0.95rem; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); background: var(--panel-2); text-decoration: none; }
.nav a.door { color: var(--ink); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: var(--s2); }
@media (max-width: 1060px) { .nav a { padding: 6px 7px; font-size: 0.88rem; } }
@media (max-width: 760px) { .nav { display: none; } .nav.open { display: flex; position: absolute; left: 0; right: 0; top: 58px; background: var(--bg); border-bottom: 1px solid var(--line); padding: var(--s3) var(--s5); flex-direction: column; margin: 0; } }
.icon-btn.menu-btn { display: none; }
@media (max-width: 760px) { .icon-btn.menu-btn { display: inline-flex; } }

/* ---------------------------------------------------------------- buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: var(--r2); border: 1px solid var(--line); background: var(--panel); color: var(--ink); font: 600 0.95rem/1 var(--sans); cursor: pointer; transition: border-color var(--t) var(--ease), background var(--t) var(--ease), transform var(--t) var(--ease); white-space: nowrap; }
.btn:hover { border-color: var(--accent-line); background: var(--panel-2); text-decoration: none; transform: translateY(-1px); }
.btn.primary { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.btn.primary:hover { filter: brightness(1.08); }
.btn.big { padding: 14px 22px; font-size: 1.05rem; }
.btn.ghost { background: transparent; }
.btn.tiny { padding: 5px 9px; font-size: 0.8rem; border-radius: var(--r1); }
.btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; transform: none; }
.btn-row { display: flex; gap: var(--s3); flex-wrap: wrap; align-items: center; }
.icon-btn { background: none; border: 1px solid var(--line); color: var(--dim); border-radius: var(--r1); width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.icon-btn:hover { color: var(--ink); border-color: var(--accent-line); }

/* ---------------------------------------------------------------- boxes */
.box { background: var(--panel); border: 1.5px solid var(--line); border-radius: var(--r2); padding: var(--s5); position: relative; }
.box.lit { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent); }
.box.dashed { border-style: dashed; background: transparent; }
.box h3 { margin-bottom: var(--s2); }
.box p:last-child { margin-bottom: 0; }
.box-head { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--dim); margin-bottom: var(--s3); font-weight: 600; }
.box-head .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--faint); flex: none; }
.dot.ok { background: var(--ok); } .dot.warn { background: var(--warn); } .dot.bad { background: var(--bad); } .dot.accent { background: var(--accent); } .dot.info { background: var(--info); }
.box .count { font: 700 26px/1 var(--mono); color: var(--ink); }
.tag { display: inline-block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; padding: 2px 8px; border-radius: 999px; border: 1px solid var(--line); color: var(--dim); font-weight: 600; }
.tag.ok { color: var(--ok); border-color: color-mix(in srgb, var(--ok) 40%, var(--line)); }
.tag.warn { color: var(--warn); border-color: color-mix(in srgb, var(--warn) 40%, var(--line)); }
.tag.accent { color: var(--accent); border-color: var(--accent-line); background: var(--accent-fill); }
.tag.bad { color: var(--bad); border-color: color-mix(in srgb, var(--bad) 40%, var(--line)); }
.door { display: block; color: inherit; }
.door:hover { text-decoration: none; border-color: var(--accent-line); }
.door .arrow { color: var(--accent); font-family: var(--mono); }
.refusals { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s2); max-width: 46ch; }
.refusals li { font-family: var(--display); font-weight: 800; font-size: clamp(1.4rem, 2.6vw, 2.1rem); letter-spacing: -0.02em; line-height: 1.05; color: var(--ink); padding-left: 1.2em; position: relative; }
.refusals li::before { content: '×'; position: absolute; left: 0; color: var(--bad); font-family: var(--mono); }
.proofs { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--s4); }
.proof { border-left: 2px solid var(--accent); padding: var(--s1) 0 var(--s1) var(--s4); }
.proof b { display: block; font-size: 1.05rem; margin-bottom: 4px; }
.proof span { color: var(--dim); font-size: 0.95rem; }
.stat { display: grid; gap: 2px; }
.stat .n { font: 700 clamp(1.6rem, 3vw, 2.3rem)/1 var(--mono); color: var(--ink); }
.stat .l { color: var(--dim); font-size: 0.9rem; }
.quote { border-left: 2px solid var(--line); padding: var(--s2) var(--s4); margin: 0 0 var(--s4); color: var(--ink); font-size: 1.05rem; }
.quote cite { display: block; color: var(--dim); font-style: normal; font-size: 0.9rem; margin-top: var(--s2); }
.manifesto { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.5; max-width: 60ch; }
.manifesto .sign { display: block; margin-top: var(--s4); color: var(--dim); font-family: var(--mono); font-size: 0.9rem; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s2); }
.checklist li { padding-left: 1.6em; position: relative; }
.checklist li::before { content: '■'; position: absolute; left: 0; top: 0.1em; color: var(--ink); font-size: 0.7em; }
.need { display: grid; gap: var(--s2); }
.need .row { display: grid; grid-template-columns: 24px 1fr; gap: var(--s3); align-items: start; }
.need .row .k { font-family: var(--mono); color: var(--accent); font-weight: 600; }

/* ---------------------------------------------------------------- frames */
.frame { border: 1.5px solid var(--line); border-radius: var(--r3); background: var(--bg); overflow: hidden; position: relative; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35); }
.frame-chrome { display: flex; align-items: center; gap: var(--s3); padding: 7px 12px; border-bottom: 1px solid var(--line); background: var(--panel); font-size: 0.8rem; color: var(--dim); font-family: var(--mono); }
.frame img { display: block; width: 100%; height: auto; background: var(--bg); }
:root[data-theme="light"] .frame { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12); }
@media (prefers-color-scheme: light) { :root:not([data-theme="dark"]) .frame { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12); } }
.caption { color: var(--faint); font-size: 0.85rem; margin-top: var(--s2); }

/* ---------------------------------------------------------------- hero */
.hero { padding: var(--s7) 0 var(--s7); }
.hero .split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.hero-meta { display: flex; gap: var(--s4); flex-wrap: wrap; color: var(--faint); font-size: 0.85rem; font-family: var(--mono); margin-top: var(--s4); }
.hero-meta span::before { content: '■ '; color: var(--accent); }
.doors { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--s4); }

/* ---------------------------------------------------------------- misc components */
details.faq { border-top: 1px solid var(--line); padding: var(--s3) 0; }
details.faq summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: var(--s3); }
details.faq summary::after { content: '+'; font-family: var(--mono); color: var(--dim); }
details.faq[open] summary::after { content: '−'; }
details.faq p { margin-top: var(--s3); color: var(--dim); }
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--s5); }
.tier .price { font: 700 2rem/1 var(--mono); margin: var(--s3) 0; }
.tier .price small { font-size: 0.9rem; color: var(--dim); font-weight: 500; }
form.list { display: flex; gap: var(--s2); flex-wrap: wrap; max-width: 520px; }
form.list input[type=email] { flex: 1 1 240px; font: inherit; padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--r2); background: var(--panel); color: var(--ink); }
form.list .hp { position: absolute; left: -9999px; }
.form-status { font-size: 0.9rem; color: var(--dim); min-height: 1.2em; }
.form-status[data-state="ok"] { color: var(--ok); } .form-status[data-state="err"] { color: var(--bad); }
.chip-row { display: flex; gap: var(--s2); flex-wrap: wrap; }
.timeline { display: grid; gap: var(--s3); }
.timeline .step { display: grid; grid-template-columns: 34px 1fr; gap: var(--s3); align-items: start; }
.timeline .step .n { font-family: var(--mono); color: var(--accent); font-weight: 700; }
.toc { position: sticky; top: 76px; font-size: 0.9rem; }
.toc a { display: block; color: var(--dim); padding: 3px 0; }
.toc a:hover { color: var(--ink); }
.article { max-width: 72ch; }
.article h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-top: var(--s6); }
.article h3 { margin-top: var(--s5); }
.article img { border: 1px solid var(--line); border-radius: var(--r2); }
.notice { border: 1px solid var(--accent-line); background: var(--accent-fill); border-radius: var(--r2); padding: var(--s3) var(--s4); font-size: 0.95rem; }
.notice.warn { border-color: color-mix(in srgb, var(--warn) 40%, var(--line)); background: color-mix(in srgb, var(--warn) 10%, var(--panel)); }
.todo { background: color-mix(in srgb, var(--warn) 22%, var(--panel)); color: var(--warn); border: 1px solid var(--warn); border-radius: 4px; padding: 0 6px; font-family: var(--mono); font-size: 0.85em; font-weight: 600; }
.tg { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r3); padding: var(--s4); max-width: 420px; font-size: 0.92rem; }
.tg .from { font-size: 0.8rem; color: var(--dim); margin-bottom: var(--s2); font-family: var(--mono); }
.tg .msg { background: var(--panel-2); border-radius: 12px 12px 12px 4px; padding: var(--s3) var(--s4); white-space: pre-line; line-height: 1.45; }
.tg .msg b { color: var(--ink); }
.compare-groups { display: grid; gap: var(--s5); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s4); }

/* ---------------------------------------------------------------- footer */
.site-footer { border-top: 1px solid var(--line); padding: var(--s7) 0 var(--s6); color: var(--dim); font-size: 0.9rem; }
.site-footer .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--s5); }
.site-footer h4 { color: var(--ink); margin-bottom: var(--s3); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
.site-footer a { color: var(--dim); display: block; padding: 2px 0; }
.site-footer a:hover { color: var(--ink); }
.site-footer .legal { margin-top: var(--s6); padding-top: var(--s4); border-top: 1px solid var(--line); display: flex; gap: var(--s4); flex-wrap: wrap; justify-content: space-between; font-size: 0.82rem; color: var(--faint); }

/* ---------------------------------------------------------------- motion */
.js [data-anim] { opacity: 0; transform: translateY(10px); transition: opacity 500ms var(--ease), transform 500ms var(--ease); }
.js [data-anim].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js [data-anim] { opacity: 1; transform: none; transition: none; } }
.mark-animated { display: none; }
@media (prefers-reduced-motion: no-preference) { .brand .mark-animated { display: inline; } .brand .mark-still { display: none; } }

/* ---------------------------------------------------------------- print */
@media print {
  .site-header, .site-footer, .btn, form.list { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  a { color: #000; }
  .band { padding: 12pt 0; border: 0; }
  h1 { font-size: 28pt; } h2 { font-size: 18pt; }
}

/* ---------------------------------------------------------------- screens gallery */
.shot-group { margin-top: var(--s7); }
.shot-group h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.shot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: var(--s5); margin-top: var(--s4); }
.shot-card { margin: 0; scroll-margin-top: 90px; }
.shot-card a { display: block; border: 1px solid var(--line); border-radius: var(--r2); overflow: hidden; background: var(--panel); transition: border-color var(--t) var(--ease), transform var(--t) var(--ease); }
.shot-card a:hover, .shot-card a:focus-visible { border-color: var(--accent-line); transform: translateY(-2px); }
.shot-card img { display: block; width: 100%; height: auto; }
.shot-card figcaption { margin-top: var(--s2); display: grid; gap: 2px; }
.shot-card figcaption span { color: var(--dim); font-size: 0.92rem; }
.shot-cta { margin-top: var(--s7); }
.shot-lb { display: none; position: fixed; inset: 0; z-index: 200; align-items: center; justify-content: center; padding: var(--s5); }
.shot-lb:target { display: flex; }
.shot-lb-bg { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.82); }
.shot-lb figure { position: relative; margin: 0; max-width: min(1600px, 100%); }
.shot-lb img { display: block; width: 100%; height: auto; max-height: calc(100vh - 120px); object-fit: contain; border-radius: var(--r2); border: 1px solid var(--line); }
.shot-lb figcaption { color: #ebeff2; margin-top: var(--s2); font-size: 0.95rem; }
.shot-lb-x { position: absolute; top: var(--s4); right: var(--s5); color: #ebeff2; font-size: 2rem; line-height: 1; text-decoration: none; }
.shot-lb-x:hover { text-decoration: none; color: var(--accent); }
