/* ============================================================================
   Soli.so — the PUBLIC site (marketing page + the auth pages in front of the
   app). 2026-09-21, ported from the owner's mockup v18.

   This sheet is loaded ONLY by templates/site/base_site.html and
   templates/site/base_auth.html. The app behind the login keeps Tailwind and
   `static/css/tailwind.css`; the two never meet, which is why this file may
   style bare element selectors (`h1`, `section`, `footer`) without leaking
   anywhere. The brand tokens below are mirrored in tailwind.config.js
   (`theme.extend.colors.brand`) so anything built with utilities later lands
   on the same values.

   Brand rules this sheet obeys (Soli_So_Prekes_zenklo_gaires_v3 / the logo
   pack's SKAITYK.txt): red #C51414 only ever as an accent, never on the ring;
   ink #0E0E0E, dark #121212, cream #FAF8F5; no gradients, shadows, glows or
   3D anywhere on the mark.
   ========================================================================= */

/* ---------- font: Plus Jakarta Sans, self-hosted (no CDN — the CSP) --------
   ONE variable file per subset covers 400-800, so the whole family is two
   requests. `latin-ext` carries the Lithuanian diacritics (ą č ę ė į š ų ū ž);
   the browser downloads it only when the page actually uses those code points,
   which is what the unicode-range split is for. */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-latin.7660bd9909fb.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-latin-ext.341687eeeb6a.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --red: #C51414;
  --deep: #960018;
  --ink: #0E0E0E;
  --dark: #121212;
  --cream: #FAF8F5;
  --white: #FFF;
  --line: #E5E3DF;
  --sec: #6B6B6B;
  --maxw: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, ul, ol, li, figure, blockquote { margin: 0; padding: 0; }
/* NO `scroll-behavior: smooth` — the project has ONE scroll policy and it is a
   JS glide with a re-measured destination (root CLAUDE.md, "NEVER the
   browser's behavior:'smooth'"). static/js/site.js drives the in-page jumps. */
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: 28px; padding-right: 28px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 99; background: var(--ink);
  color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0; font-weight: 600; font-size: 15px;
}
.skip:focus { left: 0; }

/* ---------- nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 20; background: rgba(250, 248, 245, .88);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 68px; }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { display: block; width: auto; height: 30px; }
/* nowrap + a tight gap: the labels are translated, and the longest set must
   still sit on ONE line inside the 1024px content column (below that the links
   hide entirely — see the 1120px query at the bottom).
   ⚠️ Tightened on 2026-09-21 when the mockup's "Kontaktai" link came back and
   made the set EIGHT: at the old 14.5px/16px/28px the bar needed 1092px in
   English and 1057px in Lithuanian and overflowed both times. Measured in
   Chromium on this stylesheet: now 1000px (en) and 977px (lt), i.e. ~24px of
   room in the longest language we ship. A third language that needs more has
   two honest moves — raise the 1120px query so the links hide sooner, or drop
   a link — not another point off the type. */
.nav-links { display: flex; gap: 11px; font-size: 13.5px; color: var(--sec); font-weight: 500; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 14px; flex: none; }
.login { font-size: 15px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.login:hover { color: var(--red); }
/* The mockup dropped "Log in" from the bar on a phone. It stays here as long as
   it fits: a paying customer opening the site on their phone would otherwise
   have no way in. Everything in the bar shrinks first (and the CTA swaps to its
   short label, `.cta-short` below); only under ~380px does "Log in" go, and the
   footer carries it from there. Measured in Chromium at 320-620px in BOTH
   languages — Lithuanian is the longer one. */
@media (max-width: 620px) {
  .nav-in { gap: 12px; }
  .nav-right { gap: 10px; }
  .brand img { height: 26px; }
  .login { font-size: 14px; }
  .nav-right .btn { padding: 10px 14px; font-size: 14px; }
  .langpick button { padding: 6px 6px; font-size: 12px; }
}
@media (max-width: 400px) {
  .nav-in { gap: 10px; }
  .nav-right { gap: 8px; }
  .brand img { height: 24px; }
  .login { font-size: 13px; }
  .langpick button { padding: 5px 5px; font-size: 11px; }
}
@media (max-width: 379px) { .login { display: none; } }

/* The nav CTA carries two labels and CSS picks one — both are msgids, so a new
   language gets both for free and neither is ever cut off. */
.cta-short { display: none; }
@media (max-width: 620px) {
  .cta-long { display: none; }
  .cta-short { display: inline; }
}

.btn {
  display: inline-block; background: var(--red); color: #fff; font-weight: 600;
  padding: 12px 22px; border-radius: 9px; font-size: 15px; border: none; cursor: pointer;
  transition: background .15s ease-out; font-family: inherit; text-align: center;
}
.btn:hover { background: var(--deep); }
.btn-ghost { background: none; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: #fff; border-color: #cfccc6; }
.btn-block { display: block; width: 100%; }

/* ---------- language switcher ----------
   A real <form> POSTing to django.views.i18n.set_language — one button per
   entry in settings.LANGUAGES, so a third language is a settings line and a
   catalog, never markup. */
.langpick { display: flex; align-items: center; gap: 2px; }
.langpick button {
  font: inherit; font-size: 13px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--sec); background: none; border: none;
  padding: 6px 8px; border-radius: 7px; cursor: pointer; transition: .15s ease-out;
}
.langpick button:hover { color: var(--ink); background: rgba(14, 14, 14, .05); }
.langpick button[aria-current="true"] { color: var(--ink); background: #fff; border: 1px solid var(--line); cursor: default; }

/* ---------- hero ---------- */
.site-header { padding: 96px 0 84px; }
h1 { font-size: clamp(38px, 6vw, 62px); line-height: 1.06; letter-spacing: -.035em; font-weight: 800; max-width: 17ch; }
.lede { margin-top: 26px; font-size: 19px; color: var(--sec); max-width: 54ch; }
.hero-cta { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.note { font-size: 14px; color: var(--sec); }
.note-gap { margin-top: 18px; }

/* ---------- sections ---------- */
section { padding: 92px 0; border-top: 1px solid var(--line); }
h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1.12; letter-spacing: -.03em; font-weight: 800; max-width: 20ch; }
.sub { margin-top: 16px; color: var(--sec); max-width: 56ch; font-size: 17px; }
.sub-lead { margin-top: 24px; font-weight: 600; color: var(--ink); font-size: 19px; }
.sub-tight { margin-top: 10px; }
.tail { margin-top: 34px; font-size: 16.5px; color: var(--sec); max-width: 60ch; }
.h3-block { font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin-top: 56px; }

.grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin-top: 48px;
}
.grid-tight { margin-top: 26px; }
.cell { background: #fff; padding: 30px; }
.cell h3 { font-size: 19px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 9px; }
.cell p { font-size: 15.5px; color: var(--sec); }

/* ---------- steps ---------- */
ol.steps { list-style: none; counter-reset: s; margin-top: 48px; display: grid; gap: 0; }
ol.steps li {
  counter-increment: s; display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding: 28px 0; border-bottom: 1px solid var(--line);
}
ol.steps li:first-child { border-top: 1px solid var(--line); }
ol.steps li::before { content: counter(s, decimal-leading-zero); font-weight: 800; font-size: 15px; color: var(--red); padding-top: 3px; }
ol.steps h3 { font-size: 20px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 6px; }
ol.steps p { color: var(--sec); font-size: 16px; max-width: 60ch; }

/* ---------- audience ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.tag { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 9px 17px; font-size: 15px; }

/* ---------- coming soon (dark) ---------- */
.dark { background: var(--dark); color: #fff; border-top: none; }
.dark h2 { color: #fff; }
.dark .sub { color: #a3a3a3; }
.soon { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.soon .cell { background: #1A1A1A; border: 1px solid #2E2E2E; border-radius: 14px; padding: 26px; }
.soon h3 { color: #fff; }
.soon p { color: #a3a3a3; font-size: 15px; }
.badge {
  display: inline-block; font-size: 12px; font-weight: 600; color: var(--red);
  border: 1px solid rgba(197, 20, 20, .45); border-radius: 999px; padding: 3px 10px; margin-bottom: 14px;
}

/* ---------- closing cta ---------- */
.cta-box { text-align: center; padding: 96px 0; }
.cta-box h2 { margin: 0 auto; max-width: 16ch; }
.cta-box .sub { margin: 16px auto 34px; }

/* ---------- founder ---------- */
.founder { display: grid; grid-template-columns: 400px 1fr; gap: 56px; align-items: start; margin-top: 44px; }
/* `height: auto` is load-bearing: the HTML width/height attributes (there to
   reserve the box before the file arrives) map to CSS width/height as
   presentational hints, so without it the intrinsic 800px height wins over
   aspect-ratio and the portrait is stretched and cropped. */
.founder img { display: block; width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; border-radius: 14px; background: #EFEBE4; }
.founder blockquote { font-size: clamp(21px, 2.6vw, 27px); line-height: 1.4; letter-spacing: -.02em; font-weight: 600; max-width: 30ch; }
.founder p { margin-top: 22px; color: var(--sec); font-size: 16.5px; max-width: 56ch; }
.sig { margin-top: 26px; font-size: 15px; }
.sig b { display: block; font-weight: 700; color: var(--ink); }
.sig span { color: var(--sec); }

/* ---------- pricing ---------- */
.price-wrap { display: grid; grid-template-columns: 1.15fr 1fr; gap: 20px; margin-top: 48px; align-items: start; }
.pcard { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 30px; }
.pcard.total { background: var(--dark); border-color: var(--dark); color: #fff; }
.ctrl { margin-bottom: 34px; }
.ctrl:last-child { margin-bottom: 0; }
.ctrl-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; gap: 12px; }
.ctrl-top label { font-size: 15px; font-weight: 600; }
.ctrl-val { display: flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 700; color: var(--red); white-space: nowrap; }
.numin {
  width: 86px; font: inherit; font-weight: 700; color: var(--red); text-align: right;
  background: var(--cream); border: 1px solid var(--line); border-radius: 8px; padding: 6px 9px;
  -moz-appearance: textfield;
}
.numin:focus { outline: 2px solid var(--red); outline-offset: 2px; border-color: transparent; }
.numin::-webkit-outer-spin-button, .numin::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.hint { font-size: 13px; color: var(--sec); margin-top: 11px; line-height: 1.45; }
input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 2px;
  background: var(--line); outline: none; margin: 0;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--red); cursor: pointer; border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line);
}
input[type=range]::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%; background: var(--red);
  cursor: pointer; border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line);
}
input[type=range]:focus-visible { outline: 2px solid var(--red); outline-offset: 6px; border-radius: 6px; }
.scale { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--sec); margin-top: 9px; }
.sum-row { display: flex; justify-content: space-between; gap: 14px; font-size: 15px; padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .13); }
.sum-row span:last-child { font-weight: 600; white-space: nowrap; }
.sum-row em { font-style: normal; color: #a3a3a3; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 22px; margin-top: 8px; gap: 12px; }
.sum-total b { font-size: 38px; font-weight: 800; letter-spacing: -.03em; }
.sum-total .lab { font-size: 15px; color: #a3a3a3; }
.gets { margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .13); }
.gets h4 { font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: #a3a3a3; font-weight: 600; margin-bottom: 14px; }
.gets ul { list-style: none; }
.gets li { font-size: 15px; padding: 6px 0; display: flex; justify-content: space-between; gap: 14px; }
.gets li span:first-child { color: #d8d8d8; }
.gets li b { font-weight: 700; white-space: nowrap; }
.pnote { font-size: 13.5px; color: #8f8f8f; margin-top: 20px; line-height: 1.5; }
.pcard.total .btn { display: block; width: 100%; margin-top: 24px; padding: 14px 22px; font-size: 16px; }
.pcard.total .sub-note { font-size: 13px; color: #8f8f8f; text-align: center; margin-top: 12px; }

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px 22px; display: flex; flex-direction: column; position: relative; }
.plan.pop { border-color: var(--red); }
.plan .tagpop {
  position: absolute; top: -11px; left: 22px; background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; padding: 4px 10px; border-radius: 999px;
}
.plan h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.plan .who { font-size: 13.5px; color: var(--sec); margin-bottom: 18px; min-height: 38px; }
.plan .amt { font-size: 32px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.plan .per { font-size: 13.5px; color: var(--sec); margin-top: 5px; }
.plan ul { list-style: none; margin: 20px 0 22px; flex: 1; }
.plan li { font-size: 14.5px; padding: 6px 0; display: flex; gap: 9px; align-items: flex-start; color: var(--sec); }
.plan li svg { width: 15px; height: 15px; stroke: var(--red); fill: none; stroke-width: 2; flex: none; margin-top: 3px; }
.plan .btn { width: 100%; }
.plans-note { font-size: 14px; color: var(--sec); margin-top: 22px; max-width: 66ch; line-height: 1.55; }

.trust { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 24px; font-size: 14.5px; color: var(--sec); }
.trust div { display: flex; align-items: center; gap: 9px; }
.trust svg { width: 17px; height: 17px; stroke: var(--red); fill: none; stroke-width: 1.8; flex: none; }

.faq { margin-top: 56px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 0; font-size: 17px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--red); flex: none; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq p { padding: 0 0 22px; color: var(--sec); font-size: 16px; max-width: 70ch; }

/* ---------- the "stuck in a loop" diagram ---------- */
.loop { display: grid; grid-template-columns: minmax(300px, 1fr) 1.15fr; gap: 48px; align-items: center; margin-top: 44px; }
.loop svg { width: 100%; height: auto; display: block; }
.loop .cards { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.loop .cell { background: #fff; padding: 22px 24px; }
.loop .cell h3 { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 700; margin-bottom: 7px; }
.loop .cell h3 .n { width: 26px; height: 26px; flex: none; display: flex; align-items: center; justify-content: center; }
.loop .cell h3 .n svg { width: 19px; height: 19px; }
.loop .cell p { font-size: 15px; color: var(--sec); }
.loop .out { background: var(--dark); color: #fff; padding: 22px 24px; }
.loop .out h3 { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 700; margin-bottom: 7px; color: #fff; }
.loop .out .dot { width: 20px; height: 20px; border-radius: 50%; background: var(--red); flex: none; }
.loop .out p { font-size: 15px; color: #a3a3a3; }
.loop-cap { text-align: center; font-size: 14.5px; color: var(--sec); margin-top: 14px; line-height: 1.5; }
.loop-cap b { color: var(--red); font-weight: 600; }

/* ---------- hero demo ---------- */
.demo { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; margin-top: 16px; align-items: stretch; }
.dcard { min-width: 0; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px 28px; display: flex; flex-direction: column; }
.dcard.said { background: #F4F1EC; border-color: #E5E1D9; }
.dlabel {
  font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: var(--sec);
  font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 9px;
}
.dlabel .mic2 { width: 24px; height: 24px; border-radius: 50%; background: var(--red); flex: none; display: flex; align-items: center; justify-content: center; }
.dlabel .mic2 svg { width: 12px; height: 12px; stroke: #fff; fill: none; stroke-width: 2; }
.said p { font-size: 16px; line-height: 1.62; color: #4A4741; font-style: italic; }
.wave2 { display: flex; align-items: flex-end; gap: 3px; height: 20px; margin-top: auto; padding-top: 20px; }
.wave2 i { display: block; width: 3px; border-radius: 2px; background: #cfcabf; }
.dtime { font-size: 13px; color: var(--sec); margin-top: 12px; }
.post-img { display: block; width: 100%; height: 200px; object-fit: cover; border: 1px solid var(--line); border-radius: 11px; margin-bottom: 16px; }
.post-cap { font-size: 15.5px; line-height: 1.6; }
.post-cap b { font-weight: 700; }
.post-cap .tagline { color: var(--sec); }
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 20px; }
.chip { font-size: 12.5px; border: 1px solid var(--line); background: var(--cream); border-radius: 999px; padding: 5px 11px; color: var(--sec); }
.chip.on { border-color: var(--red); color: var(--red); font-weight: 600; }
.dmid { display: flex; align-items: center; justify-content: center; width: 84px; }
.dmid svg { width: 26px; height: 26px; color: #c9c5be; }
.demo-sum { margin-top: 26px; font-size: 17px; text-align: center; color: var(--sec); }
.demo-sum b { color: var(--ink); font-weight: 700; }

.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.tab {
  font: inherit; font-size: 14.5px; font-weight: 600; padding: 10px 18px; border-radius: 9px;
  border: 1px solid var(--line); background: #fff; color: var(--sec); cursor: pointer; transition: .15s ease-out;
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.pane { display: none; margin-top: 20px; }
.pane.on { display: block; }
.slides { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.slides img { width: 200px; height: 200px; object-fit: cover; border-radius: 12px; border: 1px solid var(--line); flex: none; scroll-snap-align: start; }
.stories { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px; }
.story { flex: none; width: 140px; }
.story img { width: 140px; height: 249px; object-fit: cover; border-radius: 12px; border: 1px solid var(--line); display: block; }
.story span { display: block; font-size: 12.5px; color: var(--sec); margin-top: 8px; text-align: center; }
.script { font-size: 15.5px; line-height: 1.65; white-space: pre-line; }
.script b { font-weight: 700; }
.pane-note { font-size: 13.5px; color: var(--sec); margin-top: 16px; }

/* ---------- "who you are" strip ---------- */
.ex-lead { margin-top: 64px; font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: var(--sec); font-weight: 700; }
.who-strip {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 28px;
  margin-top: 16px; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: start;
}
.who-strip .badge2 { font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: var(--red); font-weight: 700; white-space: nowrap; padding-top: 3px; }
.who-strip h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.who-strip p { font-size: 15.5px; color: var(--sec); line-height: 1.6; }
.who-strip .once {
  display: inline-block; font-size: 13px; color: var(--sec); border: 1px solid var(--line);
  background: var(--cream); border-radius: 999px; padding: 5px 12px; margin-top: 14px;
}

/* ---------- footer ---------- */
.site-foot { border-top: 1px solid var(--line); padding: 40px 0; font-size: 14px; color: var(--sec); }
.foot-in { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.foot-in .brand img { height: 24px; }
.foot-top {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start;
  padding-bottom: 30px; border-bottom: 1px solid var(--line); margin-bottom: 26px;
}
.foot-h { font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: var(--sec); font-weight: 700; }
.foot-mail { display: inline-block; margin-top: 12px; font-size: 16px; font-weight: 600; color: var(--ink); }
.foot-mail:hover { color: var(--red); }
.foot-reply { font-size: 14.5px; color: var(--sec); margin-top: 10px; }
.foot-login { font-weight: 600; color: var(--ink); }
.foot-login:hover { color: var(--red); }
.socials { display: flex; gap: 10px; margin-top: 12px; }
.socials a {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 10px; background: #fff;
  display: flex; align-items: center; justify-content: center; transition: .15s ease-out;
}
.socials a:hover { border-color: var(--red); }
.socials svg { width: 19px; height: 19px; fill: var(--ink); }
.socials a:hover svg { fill: var(--red); }

/* ============================================================================
   Auth pages (login / register / password reset / 2FA / email confirm)
   — the same visual language, one narrow card on the cream field.
   ========================================================================= */
.auth-page { min-height: 100vh; display: flex; flex-direction: column; }
.auth-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 48px 20px 64px; }
.auth-card { width: 100%; max-width: 430px; }
.auth-card .brand { margin-bottom: 34px; }
.auth-card h1 { font-size: 30px; line-height: 1.15; letter-spacing: -.025em; max-width: none; }
.auth-card .sub { margin-top: 10px; margin-bottom: 30px; font-size: 16px; max-width: none; }
.auth-form { display: grid; gap: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.field-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 7px; }
.field-top label { margin-bottom: 0; }
.field-top a { font-size: 13px; color: var(--red); font-weight: 600; }
.field-top a:hover { text-decoration: underline; }
.input {
  width: 100%; font: inherit; font-size: 15px; padding: 13px 15px; background: #fff;
  border: 1px solid var(--line); border-radius: 10px; color: var(--ink);
}
.input:focus { outline: 2px solid var(--red); outline-offset: 2px; border-color: transparent; }
.input-code { text-align: center; font-size: 26px; font-weight: 700; letter-spacing: .4em; padding: 16px 15px; }
.check { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--sec); cursor: pointer; user-select: none; }
.check input { width: 17px; height: 17px; accent-color: var(--red); }
.alt { display: flex; align-items: center; gap: 12px; margin: 26px 0; color: var(--sec); font-size: 13px; }
.alt::before, .alt::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.alt-forms { display: grid; gap: 10px; }
.msg { border-radius: 10px; padding: 14px 16px; font-size: 14.5px; margin-bottom: 22px; line-height: 1.5; }
.msg-bad { background: #FCECEC; border: 1px solid #F2C9C9; color: var(--deep); }
.msg-good { background: #EEF6EE; border: 1px solid #CFE4CF; color: #2F6B34; }
.msg-note { background: #FFF; border: 1px solid var(--line); color: var(--sec); }
.msg p + p { margin-top: 5px; }
.auth-foot { margin-top: 26px; text-align: center; font-size: 14.5px; color: var(--sec); }
.auth-foot a { color: var(--red); font-weight: 600; }
.auth-foot a:hover { text-decoration: underline; }
.auth-quiet { background: none; border: none; font: inherit; font-size: 13px; color: var(--sec); cursor: pointer; padding: 0; }
.auth-quiet:hover { color: var(--ink); text-decoration: underline; }
.auth-bar { border-top: 1px solid var(--line); padding: 18px 0; font-size: 13.5px; color: var(--sec); }
.auth-bar .foot-in { gap: 14px; }

/* ---------- responsive ---------- */
@media (max-width: 1120px) { .nav-links { display: none; } }
@media (max-width: 1000px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .demo { grid-template-columns: 1fr; gap: 14px; }
  .dmid { width: auto; height: 34px; transform: rotate(90deg); }
  .loop { grid-template-columns: 1fr; gap: 28px; }
  .soon { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .price-wrap { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; gap: 28px; }
  .grid { grid-template-columns: 1fr; }
  .site-header { padding: 64px 0 56px; }
  section { padding: 68px 0; }
  .cta-box { padding: 68px 0; }
}
@media (max-width: 760px) { .who-strip { grid-template-columns: 1fr; gap: 14px; } .ex-lead { margin-top: 44px; } }
@media (max-width: 700px) { .foot-top { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 620px) { .plans { grid-template-columns: 1fr; } .wrap { padding-left: 20px; padding-right: 20px; } }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }


/* ---------- a plain document page (/bot) ----------
   The only long-form text page on the public site: the address our crawler's
   own User-Agent advertises (`SolisoBot/1.0 (+https://soli.so/bot)`). Light
   theme like everything else — the project ships no dark theme (owner
   2026-09-21). Borrows the site's own type scale rather than inventing one. */
.doc { padding-top: 64px; }
.doc h1 { font-size: clamp(34px, 5vw, 52px); line-height: 1.06; letter-spacing: -0.02em; }
.doc h2 { margin-top: 44px; font-size: 21px; letter-spacing: -0.01em; }
.doc p { margin-top: 14px; color: var(--sec); font-size: 16px; max-width: 70ch; }
.doc p.lede { color: var(--sec); }
.doc ul { margin-top: 14px; padding-left: 20px; color: var(--sec); font-size: 16px; max-width: 70ch; }
.doc li { margin-top: 8px; }
.doc a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.doc code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.92em; }
.doc-code {
  margin-top: 14px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; color: var(--ink); font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px; line-height: 1.6; overflow-x: auto; max-width: 70ch;
}
