/* TG Desk — shared chrome for inner pages.
   Hero (TG Desk Hero.html) keeps its own inline styles intentionally;
   this file is for the content pages only. */

:root {
  --background: 220 70% 4%;
  --foreground: 210 15% 96%;
  --hero-sub: 210 15% 80%;
  --accent-blue: #2AABEE;
  --accent-indigo: #6366f1;
  --accent-purple: #a855f7;
  --max: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: "Geist", "Geist Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  background-image:
    radial-gradient(60% 50% at 18% 0%, rgba(42,171,238,0.10), transparent 60%),
    radial-gradient(50% 40% at 90% 5%, rgba(168,85,247,0.10), transparent 60%);
  background-repeat: no-repeat;
}

a { color: inherit; }

/* ---------- liquid-glass utility ---------- */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* ---------- nav ---------- */
.nav {
  position: relative; z-index: 30;
  max-width: var(--max);
  margin: 12px auto 0;
}
.nav::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: calc(100% + var(--nav-mega-h, 0px));
  border-radius: 28px;
  background: rgba(15, 18, 35, 0);
  border: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px);
  pointer-events: none;
  z-index: 0;
  transition: background 320ms cubic-bezier(0.2,0,0,1),
              border-color 320ms cubic-bezier(0.2,0,0,1),
              box-shadow 320ms cubic-bezier(0.2,0,0,1),
              height 360ms cubic-bezier(0.2, 0, 0, 1),
              backdrop-filter 320ms cubic-bezier(0.2,0,0,1);
}
.nav[data-active-pop]::before {
  background: rgba(0, 0, 0, 0.5);
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
}
.nav-bar {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
}
.nav-mega {
  position: absolute;
  left: 0; right: 0; top: 100%;
  z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 360ms cubic-bezier(0.2, 0, 0, 1);
}
.nav[data-active-pop] .nav-mega { grid-template-rows: 1fr; }
.nav-mega-inner { min-height: 0; overflow: hidden; display: grid; grid-template-areas: "stack"; }
.nav-mega-pop {
  grid-area: stack;
  position: relative;
  display: block;
  min-height: var(--nav-mega-h, 0px);
  padding: 18px 28px 24px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 220ms ease 60ms, transform 260ms cubic-bezier(0.2,0,0,1) 60ms;
  pointer-events: none;
}
.nav[data-active-pop] .nav-mega-pop {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.nav-mega-col {
  position: absolute;
  top: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 240px;
}
.nav-mega-col a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}
.nav-mega-col a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: hsl(var(--foreground)); text-decoration: none;
  font-family: "General Sans", "Geist", sans-serif;
  font-weight: 600; font-size: 18px; letter-spacing: -0.01em;
}
.nav-logo .wordmark {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.nav-logo .mark {
  display: grid; place-items: center;
}
.nav-logo .mark img {
  height: 32px; width: auto; display: block;
}
.nav-center { display: flex; align-items: center; gap: 4px; }
.nav-btn {
  display: inline-flex; align-items: center; gap: 4px;
  background: transparent; border: 0;
  color: hsl(var(--foreground) / 0.9);
  font: inherit; font-size: 14.5px;
  padding: 8px 14px; border-radius: 999px;
  cursor: pointer; text-decoration: none;
  transition: color 200ms ease, background-color 200ms ease;
}
.nav-btn:hover { color: hsl(var(--foreground)); background: rgba(255,255,255,0.04); }
.nav-btn[aria-current="page"] { color: hsl(var(--foreground)); background: rgba(255,255,255,0.06); }
.nav-btn svg { opacity: 0.7; }

.nav-group { position: relative; }

.btn-hero-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.06); color: hsl(var(--foreground));
  font: inherit; font-size: 14.5px; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: background 200ms ease, transform 200ms ease;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.12); }
.btn-hero-secondary.primary {
  background: linear-gradient(135deg, #2AABEE 0%, #6366f1 100%);
  color: #fff;
}
.btn-hero-secondary.primary:hover { filter: brightness(1.1); }

/* "Try for free" — liquid-glass with a blue tint */
.btn-hero-secondary.cta-try {
  background: rgba(42, 171, 238, 0.10);
  border-color: rgba(42, 171, 238, 0.35);
  color: hsl(var(--foreground));
  box-shadow: 0 0 0 1px rgba(42,171,238,0.10) inset, 0 8px 22px -10px rgba(42,171,238,0.55);
}
.btn-hero-secondary.cta-try:hover {
  background: rgba(42, 171, 238, 0.18);
  border-color: rgba(42, 171, 238, 0.55);
}

.nav-divider {
  position: relative; z-index: 20;
  height: 1px; margin-top: 3px;
  background: linear-gradient(90deg, transparent, hsl(var(--foreground) / 0.20), transparent);
  max-width: var(--max); margin-left: auto; margin-right: auto;
}

/* ---------- page header ---------- */
.page-head {
  max-width: var(--max);
  margin: 80px auto 48px;
  padding: 0 32px;
  text-align: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(42,171,238,0.10);
  color: #7dc8f0;
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(42,171,238,0.22);
}
.page-title {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: 80px;
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 18px 0 16px;
  text-wrap: balance;
}
.page-title .accent {
  background-image: linear-gradient(to left, #2AABEE, #6366f1, #a855f7);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.page-lead {
  color: hsl(var(--hero-sub));
  font-size: 19px; line-height: 1.6;
  max-width: 660px; margin: 0 auto;
  opacity: 0.85;
  text-wrap: pretty;
}

/* ---------- sections ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: 56px 32px; }
.section-title {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: 36px; line-height: 1.15; letter-spacing: -0.018em;
  margin: 0 0 24px;
}
.section-sub {
  color: hsl(var(--hero-sub)); font-size: 16px; line-height: 1.6;
  max-width: 620px; opacity: 0.8;
  margin: -16px 0 28px;
}

.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .page-title { font-size: 52px; }
  .nav-center { display: none; }
}

.card {
  position: relative;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
}
.card:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.10); }
.card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 14px;
  background: rgba(99,102,241,0.14);
  color: #a5b4fc;
  border: 1px solid rgba(99,102,241,0.22);
}
.card h3 {
  font-family: "General Sans", sans-serif;
  font-size: 19px; font-weight: 500; letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.card p {
  color: hsl(var(--hero-sub)); font-size: 14.5px; line-height: 1.55;
  opacity: 0.85; margin: 0;
}

/* anchored sub-section heading (id targets) */
.anchor {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 40px;
  margin-top: 24px;
}
.anchor h2 { margin: 0; }
.anchor .badge {
  font-size: 12px; padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.05); color: hsl(var(--foreground) / 0.7);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }
.plan {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: 16px;
}
.plan.featured {
  background: linear-gradient(180deg, rgba(99,102,241,0.18), rgba(42,171,238,0.06));
  border-color: rgba(99,102,241,0.35);
  box-shadow: 0 30px 70px rgba(99,102,241,0.18);
}
.plan h3 {
  font-family: "General Sans", sans-serif;
  font-size: 22px; font-weight: 500; margin: 0;
}
.plan .price {
  font-family: "General Sans", sans-serif;
  font-size: 44px; font-weight: 500; letter-spacing: -0.02em;
}
.plan .price small { font-size: 14px; opacity: 0.6; font-weight: 400; }
.plan ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.plan li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; line-height: 1.5;
  color: hsl(var(--hero-sub));
}
.plan li::before {
  content: ""; flex: 0 0 auto; width: 16px; height: 16px;
  margin-top: 3px; border-radius: 4px;
  background: rgba(34,197,94,0.18);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%2322c55e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5l3 3 6-6.5'/></svg>");
  background-size: contain; background-repeat: no-repeat;
}

/* ---------- footer ---------- */
.foot {
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.foot-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 32px; display: flex; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: hsl(var(--foreground) / 0.5);
}
.foot a { color: inherit; text-decoration: none; transition: color 160ms ease; }
.foot a:hover { color: hsl(var(--foreground) / 0.85); }
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- code blocks ---------- */
pre.code {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 18px 20px;
  font-family: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  font-size: 13px; line-height: 1.6;
  color: #cdd5e0;
  overflow-x: auto;
}
pre.code .k { color: #c084fc; }
pre.code .s { color: #7dd3fc; }
pre.code .c { color: #6b7280; font-style: italic; }
pre.code .n { color: #fbbf24; }

/* ---------- doc page two-column ---------- */
.doc-shell {
  max-width: var(--max);
  margin: 0 auto; padding: 0 32px 80px;
  display: grid; grid-template-columns: 240px 1fr; gap: 48px;
}
.doc-shell aside {
  position: sticky; top: 24px; align-self: start;
  font-size: 14px;
}
.doc-shell aside h4 {
  font-size: 11.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: hsl(var(--foreground) / 0.5);
  margin: 22px 0 8px;
}
.doc-shell aside a {
  display: block; padding: 6px 10px; border-radius: 8px;
  color: hsl(var(--foreground) / 0.78); text-decoration: none;
  transition: background 140ms ease, color 140ms ease;
}
.doc-shell aside a:hover { color: hsl(var(--foreground)); background: rgba(255,255,255,0.04); }
.doc-shell article h2 {
  font-family: "General Sans", sans-serif;
  font-size: 30px; font-weight: 500; letter-spacing: -0.018em;
  margin: 48px 0 12px; scroll-margin-top: 24px;
}
.doc-shell article h2:first-child { margin-top: 0; }
.doc-shell article p, .doc-shell article li {
  color: hsl(var(--hero-sub)); font-size: 15.5px; line-height: 1.7;
  opacity: 0.9;
}
.doc-shell article ol, .doc-shell article ul { padding-left: 22px; }
.doc-shell article ol li, .doc-shell article ul li { margin: 6px 0; }
@media (max-width: 900px) {
  .doc-shell { grid-template-columns: 1fr; }
  .doc-shell aside { position: static; }
}

/* ---------- solutions tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .tiles { grid-template-columns: 1fr; } }
.tile {
  padding: 28px; border-radius: 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
  transition: transform 200ms ease, background 200ms ease;
}
.tile:hover { transform: translateY(-2px); background: rgba(255,255,255,0.04); }
.tile .tag {
  font-size: 11.5px; letter-spacing: 0.06em;
  text-transform: uppercase; color: hsl(var(--foreground) / 0.55);
}
.tile h3 {
  font-family: "General Sans", sans-serif;
  font-size: 22px; font-weight: 500; letter-spacing: -0.012em;
  margin: 0;
}
.tile p {
  color: hsl(var(--hero-sub)); font-size: 14.5px; line-height: 1.55;
  opacity: 0.85; margin: 0;
}

/* ---------- i18n: dual-language blocks ---------- */
html[lang="ru"] .lang-en { display: none !important; }
html[lang="en"] .lang-ru { display: none !important; }

.lang-toggle {
  display: inline-flex; align-items: center;
  border-radius: 999px;
  padding: 3px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  margin-right: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.lang-toggle button {
  border: 0; background: transparent; cursor: pointer;
  color: hsl(var(--foreground) / 0.6);
  padding: 5px 11px;
  border-radius: 999px;
  transition: color 140ms ease, background 140ms ease;
  font: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
}
.lang-toggle button:hover { color: hsl(var(--foreground) / 0.9); }
.lang-toggle button[aria-pressed="true"] {
  background: rgba(255,255,255,0.08);
  color: hsl(var(--foreground));
}

/* ---------- sub-page (feature/docs detail) ---------- */
.sub-shell {
  max-width: var(--max);
  margin: 0 auto; padding: 0 32px 80px;
}
.crumbs {
  font-size: 13px; color: hsl(var(--foreground) / 0.55);
  margin: 24px auto 0; max-width: var(--max); padding: 0 32px;
  display: flex; align-items: center; gap: 8px;
}
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { color: hsl(var(--foreground) / 0.85); }
.crumbs span.sep { opacity: 0.4; }

.sub-head {
  max-width: var(--max);
  margin: 28px auto 32px;
  padding: 0 32px;
}
.sub-title {
  font-family: "General Sans", sans-serif;
  font-weight: 500;
  font-size: 60px; line-height: 1.05; letter-spacing: -0.022em;
  margin: 8px 0 16px; text-wrap: balance;
}
.sub-title .accent {
  background-image: linear-gradient(to left, #2AABEE, #6366f1, #a855f7);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.sub-lead {
  color: hsl(var(--hero-sub));
  font-size: 18px; line-height: 1.6;
  max-width: 720px; opacity: 0.85;
}

/* prose blocks for sub-pages */
.prose { max-width: 760px; }
.prose h2 {
  font-family: "General Sans", sans-serif;
  font-size: 28px; font-weight: 500; letter-spacing: -0.018em;
  margin: 56px 0 12px; scroll-margin-top: 24px;
}
.prose h3 {
  font-family: "General Sans", sans-serif;
  font-size: 19px; font-weight: 500; letter-spacing: -0.01em;
  margin: 28px 0 8px;
}
.prose p, .prose li {
  color: hsl(var(--hero-sub)); font-size: 16px; line-height: 1.7;
  opacity: 0.9;
}
.prose ul, .prose ol { padding-left: 22px; }
.prose b, .prose strong { color: hsl(var(--foreground)); font-weight: 600; }
.prose code {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13.5px;
  padding: 2px 7px; border-radius: 6px;
  background: rgba(255,255,255,0.06); color: #cdd5e0;
  border: 1px solid rgba(255,255,255,0.06);
}
.prose blockquote {
  margin: 24px 0; padding: 14px 20px;
  border-left: 3px solid rgba(99,102,241,0.6);
  background: rgba(99,102,241,0.06);
  border-radius: 0 12px 12px 0;
  color: hsl(var(--foreground) / 0.85);
}
.prose blockquote p { margin: 0; color: inherit; }

/* ---------- KB books index ---------- */
.books-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .books-grid { grid-template-columns: 1fr; } }
.book {
  position: relative;
  display: block; text-decoration: none; color: inherit;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
  overflow: hidden;
}
.book:hover { transform: translateY(-2px); background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.book .spine {
  position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: linear-gradient(180deg, var(--c1, #2AABEE), var(--c2, #6366f1));
}
.book h3 {
  font-family: "General Sans", sans-serif;
  font-size: 20px; font-weight: 500; letter-spacing: -0.012em;
  margin: 0 0 8px;
}
.book .meta {
  font-size: 12px; color: hsl(var(--foreground) / 0.55);
  margin-bottom: 12px; letter-spacing: 0.04em; text-transform: uppercase;
}
.book p {
  color: hsl(var(--hero-sub)); font-size: 14.5px; line-height: 1.55;
  opacity: 0.85; margin: 0 0 14px;
}
.book .arts {
  font-size: 12px; color: hsl(var(--foreground) / 0.6);
  display: inline-flex; align-items: center; gap: 6px;
}

/* article (book) reading layout */
.article-shell {
  max-width: var(--max);
  margin: 0 auto; padding: 0 32px 80px;
  display: grid; grid-template-columns: 240px 1fr 200px; gap: 40px;
}
@media (max-width: 1100px) { .article-shell { grid-template-columns: 220px 1fr; } .article-shell .toc { display: none; } }
@media (max-width: 900px) { .article-shell { grid-template-columns: 1fr; } .article-shell aside { position: static; } }

.article-shell aside, .article-shell .toc {
  position: sticky; top: 24px; align-self: start;
  font-size: 14px;
}
.article-shell aside h4, .article-shell .toc h4 {
  font-size: 11.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: hsl(var(--foreground) / 0.5);
  margin: 22px 0 8px;
}
.article-shell aside a, .article-shell .toc a {
  display: block; padding: 6px 10px; border-radius: 8px;
  color: hsl(var(--foreground) / 0.78); text-decoration: none;
  transition: background 140ms ease, color 140ms ease;
  line-height: 1.4;
}
.article-shell aside a:hover, .article-shell .toc a:hover {
  color: hsl(var(--foreground)); background: rgba(255,255,255,0.04);
}
.article-shell aside a.current {
  color: hsl(var(--foreground)); background: rgba(99,102,241,0.16);
}
.article-shell article h1 {
  font-family: "General Sans", sans-serif;
  font-size: 44px; font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.1; margin: 0 0 12px;
}
.article-shell article .pub-meta {
  font-size: 13px; color: hsl(var(--foreground) / 0.55);
  margin-bottom: 28px;
  display: flex; gap: 16px; align-items: center;
}
.article-shell article .pub-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: 0.6; }
.cta-strip {
  max-width: var(--max); margin: 64px auto 0;
  padding: 36px 32px;
  border-radius: 22px;
  background:
    radial-gradient(60% 100% at 0% 50%, rgba(42,171,238,0.20), transparent 60%),
    radial-gradient(60% 100% at 100% 50%, rgba(168,85,247,0.18), transparent 60%),
    rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cta-strip h3 {
  font-family: "General Sans", sans-serif;
  font-size: 24px; font-weight: 500; margin: 0; letter-spacing: -0.01em;
}
.cta-strip p { color: hsl(var(--hero-sub)); margin: 6px 0 0; font-size: 15px; opacity: 0.85; }
.cta-strip .actions { display: flex; gap: 10px; }
