/* Wspolny styl publicznego contentu tranqo (blog + kalkulatory).
 * Tokeny 1:1 z brandu landingu (frontend/src/styles.css, zrodlo prawdy: BRAND.md):
 * czern #0a0a0b, limonkowy akcent #c6f432, font Geist. */


:root {
  color-scheme: dark;
  --accent: #c6f432;
  --accent-ink: #0a0a0a;
  --bg: #0a0a0b;
  --bg-2: #0f1011;
  --surface: #141517;
  --surface-2: #1a1c1f;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.12);
  --ink: #f4f4f5;
  --ink-2: #c2c2c8;
  --ink-3: #8e8e96;
  --warn: #f5b54a;
  --font-sans: "Geist", "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  font-feature-settings: "ss01", "cv11", "cv03";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }

.ct-page {
  min-height: 100vh;
  background:
    radial-gradient(900px 500px at 80% -100px, rgba(198, 244, 50, 0.08), transparent 60%),
    radial-gradient(700px 500px at -200px 600px, rgba(198, 244, 50, 0.04), transparent 60%),
    var(--bg);
}

/* --- Nav (jak lp-nav landingu) --- */
.ct-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.ct-nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 28px; max-width: 1140px; margin: 0 auto;
}
.ct-wordmark { font-size: 19px; font-weight: 600; letter-spacing: -0.03em; color: var(--ink); }
.ct-wordmark i { color: var(--accent); font-style: normal; }
.ct-tagline {
  margin-left: 12px; padding-left: 12px; border-left: 1px solid var(--line);
  font-size: 12px; color: var(--ink-3);
}
.ct-nav-links { display: flex; gap: 4px; flex-wrap: wrap; justify-content: flex-end; }
.ct-nav-links a { padding: 6px 12px; border-radius: 7px; font-size: 13px; color: var(--ink-2); white-space: nowrap; }
.ct-nav-links a:hover { background: var(--surface); color: var(--ink); }

@media (max-width: 640px) {
  .ct-nav-inner { padding: 12px 16px; }
  .ct-tagline { display: none; }
  .ct-nav-links a { padding: 6px 8px; font-size: 12.5px; }
  .ct-main { padding: 0 20px 44px; }
  .ct-footer--narrow { padding-left: 20px; padding-right: 20px; }
  .ct-cta .ct-btn { flex: 1 1 100%; }
  /* Naglowki tabel moga sie zawijac - tabela miesci sie na ekranie zamiast scrollowac. */
  .ct-prose th { white-space: normal; }
}

/* --- Przyciski (jak lp-btn) --- */
.ct-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 20px; border: 0; border-radius: 11px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.005em;
  cursor: pointer; white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.ct-btn-primary { background: var(--accent); color: var(--accent-ink); }
.ct-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -8px var(--accent); }
.ct-btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.ct-btn-ghost:hover { background: var(--surface); }

/* --- Layouty stron --- */
.ct-main { max-width: 1080px; margin: 0 auto; padding: 0 24px 56px; position: relative; }
/* Kolumna long-form: 720px = ~75-80 znakow w wierszu przy 17px (redesign 2026-08-27) */
.ct-main--narrow { max-width: 720px; }

.ct-hero { margin: 30px 0 20px; }
.ct-hero h1 { margin: 0 0 8px; font-size: clamp(25px, 4vw, 36px); line-height: 1.15; letter-spacing: -0.02em; }
.ct-trust { color: var(--ink-3); font-size: 13.5px; margin: 0; }

/* --- Sekcje tresci / typografia artykulu --- */
.ct-prose { color: var(--ink-2); max-width: 780px; }
.ct-prose h2 { color: var(--ink); font-size: 21px; margin: 32px 0 10px; letter-spacing: -0.015em; line-height: 1.3; }
.ct-prose h3 { color: var(--ink); font-size: 16.5px; margin: 20px 0 8px; }
.ct-prose p, .ct-prose li { font-size: 15px; line-height: 1.7; }
.ct-prose a { color: var(--accent); }
.ct-prose a:hover { text-decoration: underline; }
/* FIX 2026-08-27: przyciski w CTA wewnatrz .ct-prose dziedziczyly limonkowy kolor
   linku -> limonkowy tekst na limonkowym tle (niewidoczny "Zostaw kontakt") */
.ct-prose a.ct-btn-primary { color: var(--accent-ink); }
.ct-prose a.ct-btn-primary:hover, .ct-prose a.ct-btn-ghost:hover { text-decoration: none; }
.ct-prose a.ct-btn-ghost { color: var(--ink); }
.ct-prose strong { color: var(--ink); }
.ct-prose blockquote { border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 10px; margin: 16px 0; padding: 12px 18px; color: var(--ink-2); }
.ct-prose blockquote p { margin: 0; }
.ct-prose code { background: var(--surface); border-radius: 4px; padding: 1px 5px; font-family: var(--font-mono); font-size: 88%; }
.ct-prose table { width: 100%; border-collapse: collapse; font-size: 13.5px; margin: 14px 0; display: block; overflow-x: auto;
  /* Affordance scrolla na telefonie: krawedzie wygaszaja sie w tlo, dopoki jest co scrollowac
     (covers: local, jada z trescia; hints: scroll, stoja na krawedzi). */
  background:
    linear-gradient(to right, var(--bg) 40%, rgba(10, 10, 11, 0)),
    linear-gradient(to left, var(--bg) 40%, rgba(10, 10, 11, 0)) 100% 0,
    linear-gradient(to right, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0)),
    linear-gradient(to left, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0)) 100% 0;
  background-repeat: no-repeat;
  background-size: 44px 100%, 44px 100%, 12px 100%, 12px 100%;
  background-attachment: local, local, scroll, scroll; }
.ct-prose th, .ct-prose td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); }
.ct-prose th { color: var(--ink-3); font-weight: 500; white-space: nowrap; }
.ct-prose td { font-variant-numeric: tabular-nums; }
/* prosta 2-kolumnowa tabela (cennik): normalny table layout zamiast scrolla */
.ct-prose table.ct-table--flat { display: table; }

.ct-meta { color: var(--ink-3); font-size: 13px; margin: 28px 0 6px; }
.ct-main--narrow h1 { color: var(--ink); font-size: clamp(26px, 4vw, 34px); line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 14px; }

/* Typografia artykulu (tylko waska kolumna bloga - kalkulatory zostaja na 15px) */
.ct-main--narrow.ct-prose p, .ct-main--narrow.ct-prose li { font-size: 17px; line-height: 1.7; }
.ct-main--narrow.ct-prose h2 { font-size: 24px; margin: 36px 0 12px; }
.ct-main--narrow.ct-prose h3 { font-size: 18.5px; }
.ct-main--narrow.ct-prose table { font-size: 14.5px; }
.ct-main--narrow.ct-prose .ct-faq summary { font-size: 16px; }
.ct-main--narrow.ct-prose p.ct-lead { font-size: 19px; line-height: 1.6; color: var(--ink-2); }

/* --- Klocki artykulu (kanwa "Artykul tranqo", wdrozenie 2026-08-27) --- */
.ct-tldr {
  display: flex; flex-direction: column; gap: 8px;
  background: linear-gradient(135deg, rgba(198, 244, 50, 0.07), rgba(198, 244, 50, 0.01));
  border: 1px solid rgba(198, 244, 50, 0.22); border-radius: 14px;
  padding: 18px 24px; margin: 6px 0 4px;
}
.ct-tldr-label, .ct-toc-label {
  font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--accent); font-weight: 600;
}
.ct-toc-label { color: var(--ink-3); }
.ct-tldr ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.ct-main--narrow.ct-prose .ct-tldr li { font-size: 15.5px; line-height: 1.55; color: var(--ink-2); padding-left: 18px; position: relative; }
.ct-tldr li::before { content: "•"; color: var(--accent); position: absolute; left: 2px; }
.ct-tldr strong { color: var(--ink); }

.ct-toc {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 24px; margin: 4px 0;
}
.ct-toc ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.ct-main--narrow.ct-prose .ct-toc li { font-size: 14.5px; line-height: 1.4; }

.ct-myth { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin: 14px 0; }
.ct-myth-row { display: flex; gap: 10px; align-items: flex-start; padding: 14px 18px; }
.ct-myth-row svg { flex: none; margin-top: 4px; }
.ct-myth-row span { font-size: 15.5px; line-height: 1.6; color: var(--ink-2); }
.ct-myth-row strong { color: var(--ink); }
.ct-myth-row--mit { background: var(--surface); }
.ct-myth-row--fakt { border-top: 1px solid rgba(255, 255, 255, 0.05); background: rgba(198, 244, 50, 0.04); }

/* --- CTA box --- */
.ct-cta {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 14px; padding: 18px 20px; margin: 28px 0;
}
.ct-cta p { margin: 0; flex: 1 1 300px; font-size: 14.5px; color: var(--ink-2); }
.ct-cta p strong { color: var(--ink); }

/* --- FAQ --- */
.ct-faq details { border-bottom: 1px solid var(--line); padding: 12px 0; }
.ct-faq summary { cursor: pointer; color: var(--ink); font-weight: 600; font-size: 15px; }
.ct-faq summary:hover { color: var(--accent); }
.ct-faq p { margin: 8px 0 0; }

.ct-disclaimer {
  color: var(--ink-3); font-size: 12.5px;
  border-top: 1px solid var(--line); padding-top: 14px; margin-top: 42px;
}
.ct-srcwrap { max-height: 220px; overflow-y: auto; border: 1px solid var(--line); border-radius: 10px; }

/* --- Parametry/zrodla jako footnote (koniec strony, mala typografia) --- */
.ct-sources { margin-top: 36px; color: var(--ink-3); }
.ct-sources h2, .ct-sources > span {
  font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-3); font-weight: 600; margin: 0 0 8px;
}
.ct-sources p, .ct-sources li { font-size: 12.5px; line-height: 1.55; color: var(--ink-3); margin: 8px 0 0; }
.ct-sources ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.ct-sources table { width: 100%; border-collapse: collapse; font-size: 12px; }
.ct-sources th, .ct-sources td { text-align: left; padding: 6px 10px; border-bottom: 1px solid var(--line); color: var(--ink-3); }
.ct-sources th { font-weight: 500; white-space: nowrap; }
.ct-sources a { color: var(--ink-2); }
.ct-sources a:hover { color: var(--accent); }
/* nadpisanie typografii artykulu (17px) wewnatrz footnote'a */
.ct-main--narrow.ct-prose .ct-sources p, .ct-main--narrow.ct-prose .ct-sources li { font-size: 12.5px; line-height: 1.55; }
.ct-footer {
  max-width: 1140px; margin: 0 auto; padding: 20px 28px 32px;
  color: var(--ink-3); font-size: 12.5px; border-top: 1px solid var(--line);
}
/* Waskie strony (blog): stopka na tej samej kolumnie co tresc - wspolna lewa krawedz */
.ct-footer--narrow { max-width: 720px; padding-left: 24px; padding-right: 24px; }
.ct-footer a { color: var(--ink-2); }
.ct-footer a:hover { color: var(--accent); }

/* --- Lista wpisow bloga (redesign 2026-08-27: featured + wiersze + promo) --- */
.ct-bloglist { display: flex; flex-direction: column; gap: 28px; }
.ct-bloglist .ct-hero { margin: 34px 0 0; }
.ct-bloglist .ct-hero h1 { font-size: clamp(30px, 5vw, 40px); line-height: 1.1; letter-spacing: -0.025em; margin: 0 0 10px; }
.ct-dot { color: var(--accent); }

.ct-featured {
  display: flex; flex-direction: column; gap: 12px;
  background: linear-gradient(135deg, rgba(198, 244, 50, 0.07), rgba(198, 244, 50, 0.01));
  border: 1px solid rgba(198, 244, 50, 0.22); border-radius: 16px; padding: 26px 28px;
}
.ct-featured:hover { border-color: rgba(198, 244, 50, 0.4); }
.ct-featured-meta { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--ink-3); }
.ct-tagchip { border: 1px solid rgba(198, 244, 50, 0.35); color: var(--accent); border-radius: 999px; padding: 3px 10px; font-size: 12px; }
.ct-featured-title { font-size: 24px; font-weight: 600; line-height: 1.25; letter-spacing: -0.015em; color: var(--ink); }
.ct-featured-desc { color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.ct-featured-cta { display: flex; align-items: center; gap: 7px; color: var(--accent); font-size: 14px; font-weight: 500; }

.ct-postrow {
  display: grid; grid-template-columns: 168px minmax(0, 1fr) 24px; gap: 0 18px;
  align-items: center; padding: 20px 0; border-top: 1px solid var(--line);
}
.ct-postrow:last-of-type { border-bottom: 1px solid var(--line); }
.ct-postrow-meta { display: flex; flex-direction: column; gap: 3px; font-size: 12.5px; color: var(--ink-3); }
.ct-postrow-meta span { color: #6d6d74; }
.ct-postrow-body { display: flex; flex-direction: column; gap: 5px; }
.ct-postrow-title { font-size: 18px; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; color: var(--ink); }
.ct-postrow:hover .ct-postrow-title { color: var(--accent); }
.ct-postrow-desc { color: var(--ink-2); font-size: 14px; line-height: 1.55; }
.ct-postrow-chev { color: var(--ink-3); }

.ct-calcpromo {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px;
}
.ct-calcpromo-lead { display: flex; flex-direction: column; gap: 3px; }
.ct-calcpromo-lead strong { font-size: 15px; color: var(--ink); }
.ct-calcpromo-lead span { font-size: 13px; color: var(--ink-3); }
.ct-calcpromo-links { display: flex; gap: 8px; flex-wrap: wrap; }
.ct-calcpromo-links a { border: 1px solid var(--line-2); color: var(--ink-2); border-radius: 999px; padding: 7px 14px; font-size: 13px; }
.ct-calcpromo-links a:hover { border-color: var(--accent); color: var(--ink); }

@media (max-width: 640px) {
  .ct-featured { padding: 20px; }
  .ct-featured-title { font-size: 19px; }
  .ct-postrow { grid-template-columns: 1fr; gap: 6px 0; }
  .ct-postrow-chev { display: none; }
  .ct-postrow-meta { flex-direction: row; gap: 8px; }
}

/* --- Widget IKZE (artykul) --- */
.ikze-widget {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 14px;
  padding: 18px 20px; margin: 20px 0;
}
.ikze-widget > strong { color: var(--ink); }
.ikze-widget label { display: block; font-size: 13px; color: var(--ink-3); margin: 12px 0 4px; }
.ikze-widget input, .ikze-widget select {
  width: 100%; max-width: 320px; background: var(--bg-2);
  border: 1px solid var(--line-2); color: var(--ink); border-radius: 9px;
  padding: 9px 11px; font-size: 16px; font-family: inherit; /* >=16px - bez iOS zoom */
}
/* Dlugi label CTA widzetu moze sie zawijac - nowrap wypychal przycisk poza viewport 360px. */
.ikze-widget .ct-btn { white-space: normal; height: auto; min-height: 44px; padding: 10px 20px; }
.ikze-widget input:focus, .ikze-widget select:focus { outline: 1px solid var(--accent); border-color: transparent; }
.ikze-widget output { display: block; margin-top: 14px; font-size: 16px; color: var(--ink-2); }
.ikze-widget output strong { font-size: 24px; color: var(--accent); }
.ikze-widget small { color: var(--ink-3); }

/* --- Artykul-lead generator (kanwa "faktura w KSeF za darmo", wdrozenie 2026-08-29):
   panel boczny CTA (desktop), pasek CTA (mobile), karty, stepper, kroki ze zrzutami,
   mocne CTA po krokach, blok "dwie drogi". Wlaczane per wpis: front-matter `promo:`. --- */
.ct-layout--rail {
  display: grid; grid-template-columns: minmax(0, 720px) 300px; gap: 56px;
  justify-content: center; max-width: 1140px; margin: 0 auto; padding: 0 24px;
}
.ct-layout--rail > .ct-main { margin: 0; padding-left: 0; padding-right: 0; max-width: none; min-width: 0; }
.ct-layout--rail > aside { min-width: 0; }
.ct-rail {
  position: sticky; top: 84px; margin-top: 28px;
  display: flex; flex-direction: column; gap: 14px;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 16px; padding: 20px 20px 18px;
}
.ct-rail-label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); font-weight: 600; }
.ct-rail-title { font-size: 18px; line-height: 1.3; letter-spacing: -0.01em; color: var(--ink); }
.ct-rail ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ct-rail li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.ct-rail li svg { flex: none; margin-top: 2px; }
.ct-rail .ct-btn { width: 100%; }
.ct-rail-note { font-size: 12.5px; line-height: 1.5; color: var(--ink-3); }
.ct-rail-more { border-top: 1px solid var(--line); padding-top: 12px; display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: var(--ink-2); }
.ct-rail-more a { color: var(--accent); font-weight: 500; }
.ct-rail-more a:hover { text-decoration: underline; }

.ct-ctabar { display: none; }

@media (max-width: 1099px) {
  .ct-layout--rail { display: block; max-width: none; padding: 0; }
  .ct-layout--rail > .ct-main { margin: 0 auto; padding: 0 24px 56px; max-width: 720px; }
  .ct-layout--rail > aside { display: none; }
  .ct-ctabar {
    position: sticky; bottom: 0; z-index: 40;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 12px 16px; border-top: 1px solid var(--line-2);
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  }
  .ct-ctabar-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
  .ct-ctabar-text strong { font-size: 14px; color: var(--ink); }
  .ct-ctabar-text span { font-size: 12px; color: var(--ink-3); }
  .ct-ctabar .ct-btn { height: 44px; padding: 0 18px; flex: none; }
}

.ct-herocta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin: 0 0 8px; }
.ct-herocta-note { font-size: 13px; color: var(--ink-3); margin-left: 4px; }
.ct-meta .ct-tagchip { margin-right: 4px; }
@media (max-width: 640px) {
  .ct-herocta { flex-direction: column; align-items: stretch; gap: 8px; }
  .ct-herocta .ct-btn { width: 100%; }
  .ct-herocta .ct-btn-ghost { display: none; }
  .ct-herocta-note { text-align: center; margin: 0; font-size: 12.5px; }
}

.ct-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 6px 0 16px; }
.ct-card { display: flex; flex-direction: column; gap: 8px; background: var(--surface); border: 1px solid var(--line-2); border-radius: 14px; padding: 18px 20px; }
.ct-card--accent { border-color: rgba(198, 244, 50, 0.35); }
.ct-card-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ct-card-head strong { font-size: 16px; color: var(--ink); }
.ct-chip { border: 1px solid var(--line-2); color: var(--ink-2); border-radius: 999px; padding: 3px 10px; font-size: 12px; white-space: nowrap; }
.ct-chip--accent { border-color: rgba(198, 244, 50, 0.35); color: var(--accent); }
.ct-main--narrow.ct-prose .ct-card p { font-size: 14.5px; line-height: 1.55; margin: 0; }
.ct-card-note { font-size: 13px; color: var(--ink-3); }
@media (max-width: 640px) { .ct-cards { grid-template-columns: 1fr; } }

.ct-stepper { list-style: none; margin: 8px 0 12px; padding: 0; counter-reset: step; }
/* li ma mieszana tresc (tekst + <strong>), wiec numer jako ::before pozycjonowany absolutnie,
   nie grid (grid rozbija anonimowe runy tekstu na osobne komorki) */
.ct-main--narrow.ct-prose .ct-stepper li {
  position: relative; padding: 2px 0 18px 42px;
  counter-increment: step; font-size: 16px; line-height: 1.6;
}
.ct-stepper li::before {
  position: absolute; left: 0; top: 0;
  content: counter(step); width: 28px; height: 28px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.ct-main--narrow.ct-prose .ct-stepper li:last-child { padding-bottom: 0; }

.ct-errlist { list-style: none; margin: 8px 0 0; padding: 0; counter-reset: err; display: flex; flex-direction: column; gap: 12px; }
.ct-main--narrow.ct-prose .ct-errlist li {
  position: relative; padding: 0 0 0 38px;
  counter-increment: err; font-size: 16px; line-height: 1.6;
}
.ct-errlist li::before {
  position: absolute; left: 0; top: 0;
  content: counter(err); width: 26px; height: 26px; border-radius: 8px;
  background: rgba(245, 181, 74, 0.16); color: var(--warn); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.ct-steps { display: flex; flex-direction: column; gap: 14px; margin: 6px 0 4px; }
.ct-step {
  display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 20px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px;
}
.ct-step--noshot { grid-template-columns: 1fr; }
.ct-step-body { display: flex; flex-direction: column; gap: 6px; }
.ct-step-label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); font-weight: 600; }
.ct-step-title { font-size: 18px; color: var(--ink); }
.ct-main--narrow.ct-prose .ct-step-body p { font-size: 15.5px; line-height: 1.6; margin: 0; }
.ct-step-shot {
  display: flex; align-items: center; justify-content: center; align-self: start;
  border: 1px solid var(--line-2); border-radius: 10px; overflow: hidden; background: var(--bg-2); min-height: 150px;
}
.ct-step-shot img { display: block; width: 100%; height: auto; }
.ct-step-shot--empty {
  border: 1px dashed rgba(255, 255, 255, 0.18); padding: 12px; text-align: center;
  font-family: var(--font-mono); font-size: 12px; line-height: 1.5; color: var(--ink-3);
}
@media (max-width: 640px) {
  .ct-step { grid-template-columns: 1fr; padding: 16px 18px; }
  .ct-step-shot { min-height: 120px; }
}

.ct-cta--strong {
  flex-direction: column; align-items: stretch; gap: 14px;
  background: linear-gradient(135deg, rgba(198, 244, 50, 0.10), rgba(198, 244, 50, 0.02));
  border-color: rgba(198, 244, 50, 0.35); border-radius: 16px; padding: 24px 26px;
}
.ct-cta-title { display: block; font-size: 20px; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 6px; }
.ct-cta--strong p { flex: none; font-size: 15px; line-height: 1.6; }
.ct-cta-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.ct-cta-hint { font-size: 13px; color: var(--ink-3); }

.ct-twoways { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 24px 0 8px; }
.ct-way { display: flex; flex-direction: column; gap: 10px; border-radius: 16px; padding: 22px 24px; background: var(--surface); border: 1px solid var(--line-2); }
.ct-way--accent { background: var(--accent); color: var(--accent-ink); border-color: transparent; }
.ct-way-label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; color: var(--ink-3); }
.ct-way--accent .ct-way-label { color: inherit; opacity: 0.7; }
.ct-way-title { font-size: 20px; letter-spacing: -0.01em; line-height: 1.25; color: var(--ink); }
.ct-way--accent .ct-way-title { color: inherit; }
.ct-main--narrow.ct-prose .ct-way p { font-size: 14.5px; line-height: 1.55; margin: 0; color: var(--ink-2); }
.ct-main--narrow.ct-prose .ct-way--accent p { color: inherit; opacity: 0.85; }
.ct-way .ct-btn { align-self: flex-start; margin-top: 4px; }
.ct-btn-dark { background: var(--accent-ink); color: var(--accent); }
.ct-prose a.ct-btn-dark { color: var(--accent); }
.ct-btn-dark:hover { transform: translateY(-1px); }
@media (max-width: 640px) {
  .ct-twoways { grid-template-columns: 1fr; }
  .ct-way .ct-btn { align-self: stretch; }
}
