/* =========================================================
   First Signal Desk / Studio Web IA — shared stylesheet
   Base: Pico.css (classless) via CDN, overridden here.
   ========================================================= */

/* ---------- 1. Base reset & shared tokens ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
.container {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .container { padding-inline: 32px; }
}
button, input, textarea, select { font-family: inherit; font-size: 16px; }
:focus-visible {
  outline: 3px solid #ffb703;
  outline-offset: 2px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Buttons shared shape, themed colours below */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-block { width: 100%; }

/* Media frame for images and video with fixed ratio */
.media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  background: #10121c;
}
.media-frame img, .media-frame video {
  width: 100%; height: 100%; object-fit: cover;
}
.media-frame--wide { aspect-ratio: 16 / 9; }
figure.figure { margin: 0; }
figure.figure figcaption {
  font-size: .85rem;
  margin-top: 8px;
  opacity: .75;
}

/* ---------- 2. Page section rhythm ---------- */
.section { padding-block: 48px; }
@media (min-width: 768px) { .section { padding-block: 76px; } }
.section-tight { padding-block: 32px; }

/* =========================================================
   PUBLICATION THEME (advertorial + about) — dark, bold grotesk
   ========================================================= */
body[data-theme="publication"] {
  background: #0a0c14;
  color: #f2f4fa;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
:where(body[data-theme="publication"]) h1,
:where(body[data-theme="publication"]) h2,
:where(body[data-theme="publication"]) h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
}
:where(body[data-theme="publication"]) a { color: #6f93ff; }
body[data-theme="publication"] .pub-header {
  border-bottom: 1px solid #1c2131;
  padding-block: 18px;
}
.pub-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pub-header__brand {
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pub-header__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: #171b29;
  color: #cfd6ee;
  font-weight: 600;
  font-size: .92rem;
  border: 1px solid #262c40;
}
.pub-header__nav a:hover { background: #202638; color: #fff; }

.ribbon {
  background: #12151f;
  border-bottom: 1px solid #1c2131;
  text-align: center;
  padding: 10px 16px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9aa1c0;
}

.pub-hero { text-align: center; padding-block: 40px 24px; }
@media (min-width: 768px) { .pub-hero { padding-block: 64px 32px; } }
.pub-hero h1 {
  font-size: clamp(1.8rem, 5.4vw + 0.6rem, 3.1rem);
  max-width: 880px;
  margin: 0 auto 20px;
}
.pub-hero h1 mark {
  background: none;
  color: #5b82ff;
}
.pub-hero__subhead {
  max-width: 680px;
  margin: 0 auto 22px;
  color: #b7bdd6;
  font-size: clamp(1rem, 1.1vw + .8rem, 1.2rem);
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 8px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #141926;
  border: 1px solid #262c40;
  color: #cfd6ee;
  font-size: .85rem;
  font-weight: 600;
}

.byline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: center;
  color: #97a0b8;
  font-size: .9rem;
  margin-bottom: 4px;
}
.stars { color: #ffb703; letter-spacing: 2px; font-size: 1rem; }

.pub-lede {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #d7dbee;
}
.pub-lede p + p { margin-top: 16px; }

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 32px;
}
@media (min-width: 640px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}
.card {
  background: linear-gradient(180deg, #151a29, #10131e);
  border: 1px solid #232840;
  border-radius: 18px;
  padding: 24px;
}
.card h3 { font-size: 1.15rem; margin: 12px 0 8px; }
.card p { color: #aab1cb; margin: 0; line-height: 1.6; }
.card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #232c4d;
  color: #9db2ff;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 8px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.split__panel {
  background: #12151f;
  border: 1px solid #1f2436;
  border-radius: 18px;
  padding: 26px;
}
.split__panel h2, .split__panel h3 { margin-top: 0; }
.kicker {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7d9bff;
  font-weight: 700;
  margin-bottom: 10px;
}
.rate-aside {
  border: 1px dashed #3a4568;
  border-radius: 14px;
  padding: 18px 20px;
  background: #0d101a;
}
.rate-aside__label {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #97a0b8;
  font-weight: 700;
  margin: 0 0 10px;
}
.rate-aside ul { margin: 0; padding-left: 1.1em; }
.rate-aside li { margin-bottom: 8px; color: #d7dbee; line-height: 1.5; }
.rate-aside li strong { color: #fff; }
.rate-aside .fine {
  font-size: .78rem;
  color: #7d84a0;
  margin: 12px 0 0;
}

.steps {
  counter-reset: step;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 18px 20px 18px 64px;
  background: #12151f;
  border: 1px solid #1f2436;
  border-radius: 14px;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #2f4bff;
  color: #eef1ff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.steps h3 { margin: 0 0 4px; font-size: 1.02rem; }
.steps p { margin: 0; color: #aab1cb; font-size: .95rem; }

.offer-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.offer-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #12151f;
  border: 1px solid #1f2436;
  border-radius: 12px;
  color: #d7dbee;
}
.offer-list li::before {
  content: "✓";
  color: #5b82ff;
  font-weight: 800;
  flex-shrink: 0;
}

.reassure {
  background: #101324;
  border: 1px solid #232c4d;
  border-radius: 18px;
  padding: 26px;
  margin-top: 8px;
}
.reassure p { color: #cfd6ee; line-height: 1.6; }
.price-line {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin: 6px 0 0;
}
.price-line small { font-size: .8rem; font-weight: 600; color: #97a0b8; }

.cta-band {
  text-align: center;
  padding-block: 20px;
}
.cta-band p { color: #b7bdd6; margin-bottom: 18px; }
.btn-pub {
  background: #3b63f6;
  color: #0b1020;
  box-shadow: 0 10px 30px -10px rgba(59,99,246,.7);
}
.btn-pub:hover { background: #5578ff; }

hr.pub-rule { border: none; border-top: 1px solid #1c2131; margin: 8px 0; }

/* about (publication family, no hero media) */
.pub-article {
  max-width: 720px;
  margin: 0 auto;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}
.pub-article p { line-height: 1.75; color: #d7dbee; }
.pub-article h2 { margin-top: 40px; }

/* =========================================================
   OFFER THEME (training + legal/contact pages) — light SaaS
   ========================================================= */
body[data-theme="offer"] {
  background: #ffffff;
  color: #14162b;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
:where(body[data-theme="offer"]) h1, :where(body[data-theme="offer"]) h2, :where(body[data-theme="offer"]) h3 {
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #10112a;
}
:where(body[data-theme="offer"]) a { color: #3350ff; }

.offer-header {
  border-bottom: 1px solid #eceefb;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.offer-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 14px;
}
.offer-header__brand {
  font-weight: 800;
  font-size: 1.05rem;
  color: #10112a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.offer-header__nav {
  display: none;
  gap: 22px;
  font-weight: 600;
  font-size: .95rem;
}
.offer-header__nav a { color: #4b4f6b; }
.offer-header__nav a:hover { color: #10112a; }
@media (min-width: 768px) {
  .offer-header__nav { display: flex; }
}
.btn-offer {
  background: #10112a;
  color: #fff;
}
.btn-offer:hover { background: #262a4d; }
.btn-offer-alt {
  background: #3350ff;
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(51,80,255,.55);
}
.btn-offer-alt:hover { background: #253dd8; }

.offer-hero {
  background: #0d1130;
  color: #eef0ff;
  padding-block: 44px;
}
@media (min-width: 768px) { .offer-hero { padding-block: 72px; } }
.offer-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .offer-hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
}
.offer-hero__kicker {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9db2ff;
  font-weight: 700;
  margin-bottom: 14px;
}
.offer-hero h1 {
  color: #ffffff;
  font-size: clamp(1.85rem, 5vw + 0.6rem, 2.9rem);
  margin: 0 0 18px;
}
.offer-hero__lead {
  color: #c4c9ee;
  font-size: clamp(1rem, 1vw + .85rem, 1.15rem);
  max-width: 46ch;
  margin: 0 0 26px;
  line-height: 1.6;
}
.offer-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.offer-hero__note {
  border: 1px solid #262c56;
  background: #12163a;
  border-radius: 14px;
  padding: 16px 18px;
  color: #c4c9ee;
  font-size: .92rem;
  max-width: 46ch;
}
.offer-hero__note strong { color: #fff; }
.offer-hero__media { position: relative; }
.offer-hero__chip {
  position: absolute;
  left: 16px;
  bottom: -16px;
  background: #fff;
  color: #10112a;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: .88rem;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.45);
}

.stat-band {
  background: #f5f6fb;
  padding-block: 40px;
  border-bottom: 1px solid #eceefb;
}
.stat-band h2 {
  text-align: center;
  font-size: clamp(1.3rem, 2vw + .8rem, 1.7rem);
  max-width: 62ch;
  margin: 0 auto 8px;
}
.stat-band__intro {
  text-align: center;
  color: #5a5f7a;
  max-width: 56ch;
  margin: 0 auto 30px;
}
.stat-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .stat-band__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.stat {
  text-align: center;
  background: #fff;
  border: 1px solid #e3e5f2;
  border-radius: 16px;
  padding: 22px 12px;
}
.stat__figure {
  font-size: clamp(1.3rem, 2.4vw + .6rem, 1.9rem);
  font-weight: 800;
  color: #10112a;
  display: block;
}
.stat__label {
  font-size: .82rem;
  color: #5a5f7a;
  margin-top: 6px;
  display: block;
}
.stat-band__fine {
  text-align: center;
  color: #7c8098;
  font-size: .82rem;
  max-width: 60ch;
  margin: 22px auto 0;
}

.leverage-section { padding-block: 48px; }
@media (min-width: 768px) { .leverage-section { padding-block: 76px; } }
.leverage-section__kicker {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #3350ff;
  font-weight: 700;
  margin-bottom: 10px;
}
.leverage-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .leverage-section__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.workflow-list {
  counter-reset: wf;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.workflow-list li {
  counter-increment: wf;
  position: relative;
  padding: 14px 16px 14px 54px;
  background: #f5f6fb;
  border-radius: 12px;
  border: 1px solid #e3e5f2;
}
.workflow-list li::before {
  content: counter(wf);
  position: absolute;
  left: 14px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #3350ff;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .85rem;
}
.workflow-list strong { display: block; color: #10112a; }
.workflow-list span { color: #5a5f7a; font-size: .92rem; }

.deliverables-band { background: #f5f6fb; padding-block: 48px; }
@media (min-width: 768px) { .deliverables-band { padding-block: 72px; } }
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 28px;
}
@media (min-width: 768px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}
.feature-card {
  background: #fff;
  border: 1px solid #e3e5f2;
  border-radius: 16px;
  padding: 24px;
}
.feature-card h3 { margin: 4px 0 8px; font-size: 1.05rem; }
.feature-card p { color: #5a5f7a; margin: 0; line-height: 1.6; font-size: .95rem; }
.feature-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #e8ecff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.pricing-section { padding-block: 48px; }
@media (min-width: 768px) { .pricing-section { padding-block: 76px; } }
.pricing-spotlight {
  background: linear-gradient(160deg, #10112a, #1c2361);
  color: #fff;
  border-radius: 24px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .pricing-spotlight { padding: 44px 48px; } }
.pricing-spotlight__badge {
  display: inline-block;
  background: #3350ff;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.pricing-spotlight h3 { color: #fff; font-size: clamp(1.4rem, 2.4vw + .8rem, 2rem); margin: 0 0 6px; }
.pricing-spotlight__price {
  font-size: clamp(2rem, 4vw + .8rem, 2.8rem);
  font-weight: 800;
  margin: 6px 0 18px;
}
.pricing-spotlight__price span { font-size: 1rem; font-weight: 600; color: #c4c9ee; }
.pricing-spotlight ul {
  list-style: none; margin: 0 0 24px; padding: 0;
  display: grid; gap: 10px;
}
.pricing-spotlight ul li {
  padding-left: 28px;
  position: relative;
  color: #dfe2fb;
  line-height: 1.5;
}
.pricing-spotlight ul li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: #8ea2ff; font-weight: 800;
}
.addon-list {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}
@media (min-width: 640px) { .addon-list { grid-template-columns: 1fr 1fr; } }
.addon {
  border: 1px solid #e3e5f2;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}
.addon h4 { margin: 0 0 4px; font-size: .98rem; }
.addon p { margin: 0; font-size: .88rem; color: #5a5f7a; }
.addon__price { font-weight: 800; white-space: nowrap; color: #10112a; }

.perk-band { background: #f5f6fb; padding-block: 44px; }
@media (min-width: 768px) { .perk-band { padding-block: 64px; } }
.perk-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) { .perk-list { grid-template-columns: 1fr 1fr; } }
.perk-list li {
  background: #fff;
  border: 1px solid #e3e5f2;
  border-radius: 12px;
  padding: 14px 16px 14px 44px;
  position: relative;
  color: #2c2f4a;
}
.perk-list li::before {
  content: "★";
  position: absolute; left: 14px; top: 14px;
  color: #f5a623;
}

.limits-box {
  border: 1px solid #e3e5f2;
  background: #fffdf7;
  border-left: 4px solid #f5a623;
  border-radius: 12px;
  padding: 22px 24px;
  margin-top: 24px;
}
.limits-box h3 { margin-top: 0; }
.limits-box ul { margin: 12px 0 0; padding-left: 1.1em; color: #4b4f6b; line-height: 1.6; }

.faq-section { padding-block: 48px; }
@media (min-width: 768px) { .faq-section { padding-block: 72px; } }
.faq-list { margin-top: 24px; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid #e3e5f2;
  border-radius: 14px;
  padding: 4px 20px;
  background: #fff;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: #3350ff;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0 0 16px; color: #4b4f6b; line-height: 1.6; }

.lead-section { background: #0d1130; color: #eef0ff; padding-block: 48px; }
@media (min-width: 768px) { .lead-section { padding-block: 72px; } }
.lead-section h2 { color: #fff; }
.lead-section__intro { color: #c4c9ee; max-width: 60ch; margin: 0 0 28px; line-height: 1.6; }
.lead-form {
  background: #fff;
  color: #14162b;
  border-radius: 20px;
  padding: 26px;
  max-width: 620px;
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) { .lead-form { padding: 36px; } }
.lead-form__row { display: grid; gap: 16px; }
@media (min-width: 560px) { .lead-form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: .92rem; }
.field input, .field textarea {
  border: 1px solid #d7d9ec;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 1rem;
  width: 100%;
  min-height: 48px;
  background: #fbfbfe;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 3px solid #3350ff; outline-offset: 1px; }
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: #4b4f6b;
}
.consent-row input { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.lead-form__success {
  display: none;
  background: #eef7ee;
  border: 1px solid #bfe3bf;
  color: #1e4620;
  border-radius: 12px;
  padding: 18px 20px;
  font-weight: 600;
}
#success:target .lead-form__success { display: block; }
#success:target .lead-form__fields { display: none; }

/* simple pages (contact/legal) reuse offer theme but plainer */
.legal-article { max-width: 720px; margin: 0 auto; padding-block: 44px; }
@media (min-width: 768px) { .legal-article { padding-block: 64px; } }
.legal-article h1 { margin-bottom: 8px; }
.legal-article__updated { color: #5a5f7a; font-size: .9rem; margin-bottom: 28px; }
.legal-article h2 { margin-top: 32px; }
.legal-article p, .legal-article li { line-height: 1.7; color: #33354f; }
.legal-article ul { padding-left: 1.2em; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-block: 44px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; padding-block: 64px; } }
.contact-info {
  background: #f5f6fb;
  border: 1px solid #e3e5f2;
  border-radius: 18px;
  padding: 26px;
}
.contact-info h2 { margin-top: 0; }
.contact-info address { font-style: normal; line-height: 1.7; color: #33354f; }

/* ---------- Sticky CTA (mobile, offer family) ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: #0d1130;
  border-top: 1px solid #262c56;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  justify-content: center;
  transform: translateY(120%);
  transition: transform .25s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta a { width: 100%; max-width: 420px; }
body.has-sticky-cta { padding-bottom: 74px; }
@media (min-width: 1024px) {
  .sticky-cta { display: none; }
  body.has-sticky-cta { padding-bottom: 0; }
}

/* ---------- Disclaimer & footer (shared, both themes) ---------- */
.site-disclaimer {
  display: block;
  padding: 24px 20px;
  font-size: .92rem;
  line-height: 1.6;
}
body[data-theme="publication"] .site-disclaimer {
  background: #0d101a;
  color: #97a0b8;
  border-top: 1px solid #1c2131;
}
body[data-theme="offer"] .site-disclaimer {
  background: #f5f6fb;
  color: #4b4f6b;
  border-top: 1px solid #e3e5f2;
}
.site-disclaimer .container { max-width: 860px; }
.site-disclaimer a { font-weight: 700; }

.site-footer { padding: 32px 20px 40px; }
body[data-theme="publication"] .site-footer { background: #060810; color: #7d84a0; }
body[data-theme="offer"] .site-footer { background: #10112a; color: #b6b9d6; }
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (min-width: 768px) {
  .site-footer__inner { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
.site-footer__company p { margin: 0; font-size: .88rem; line-height: 1.7; }
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: .9rem;
}
body[data-theme="publication"] .site-footer__links a { color: #b7bdd6; }
body[data-theme="offer"] .site-footer__links a { color: #d7d9f5; }
.site-footer__links a:hover { text-decoration: underline; }
