/* =========================================================================
   TEVEL MARKETING WORLD LTD — site.css
   Handwritten CSS, BEM, CSS custom properties. Mobile-first, 3 breakpoints.
   ========================================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; overflow-x: hidden; }

/* ---------- Design tokens ---------- */
:root {
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-pub-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-offer-head: "Sora", "Inter", sans-serif;

  --fs-h1: clamp(1.75rem, 1.15rem + 2.6vw, 3rem);
  --fs-h2: clamp(1.4rem, 1.1rem + 1.4vw, 2.1rem);
  --fs-h3: clamp(1.15rem, 1rem + 0.7vw, 1.45rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-lede: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);

  --space-1: 0.5rem;
  --space-2: 0.875rem;
  --space-3: 1.5rem;
  --space-4: 2.25rem;
  --space-5: 3.5rem;
  --space-6: 5rem;

  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;
  --container-w: 1180px;

  /* Publication family palette */
  --pub-bg: #eef1f2;
  --pub-surface: #ffffff;
  --pub-ink: #17222a;
  --pub-muted: #55636c;
  --pub-line: #dbe1e4;
  --pub-masthead: #0d3b44;
  --pub-masthead-ink: #f4f8f7;
  --pub-accent: #1f7a5c;
  --pub-accent-ink: #ffffff;
  --pub-callout-bg: #eaf3ee;
  --pub-callout-border: #bfe0cd;
  --pub-band-bg: #0d3b44;
  --pub-band-ink: #f4f8f7;

  /* Offer family palette */
  --offer-bg: #0a0e18;
  --offer-bg-soft: #0f1524;
  --offer-surface: #131a2b;
  --offer-surface-2: #182036;
  --offer-border: #262f47;
  --offer-ink: #f4f6fb;
  --offer-muted: #9aa5bf;
  --offer-accent: #3f6bff;
  --offer-accent-ink: #ffffff;
  --offer-accent-soft: #1c2947;
  --offer-highlight: #ffb648;

  /* Legal-on-offer content card */
  --legal-card-bg: #ffffff;
  --legal-ink: #1c2434;
  --legal-muted: #545e75;
}

body { font-family: var(--font-body); font-size: var(--fs-body); line-height: 1.6; }

.container { width: 100%; max-width: var(--container-w); margin: 0 auto; padding: 0 var(--space-3); }

@media (max-width: 479px) {
  .container { padding: 0 1rem; }
}

.section { padding: var(--space-5) 0; }
@media (max-width: 767px) { .section { padding: var(--space-4) 0; } }

.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;
}

.skip-link {
  position: absolute; left: -999px; top: 0; background: #000; color: #fff;
  padding: 0.75rem 1rem; z-index: 200;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* =========================================================================
   PUBLICATION FAMILY (advertorial, about)
   ========================================================================= */
.page--pub { background: var(--pub-bg); color: var(--pub-ink); }

.pub-header {
  background: var(--pub-masthead); color: var(--pub-masthead-ink);
  padding: var(--space-2) 0;
}
.pub-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-2);
}
.pub-header__brand {
  font-family: var(--font-pub-head); font-weight: 700; font-size: 1.2rem; letter-spacing: 0.01em;
}
.pub-header__tag {
  font-size: var(--fs-small); letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85;
}

.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center;
  font-size: var(--fs-small); color: var(--pub-muted); padding: var(--space-3) 0 0;
}
.breadcrumb a:hover, .breadcrumb a:focus-visible { color: var(--pub-accent); text-decoration: underline; }
.breadcrumb__sep { opacity: 0.6; }

.article-head { padding: var(--space-3) 0 var(--space-2); }
.article-head__kicker {
  display: inline-block; color: var(--pub-accent); font-weight: 700;
  font-size: var(--fs-small); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}
.article-head__title {
  font-family: var(--font-pub-head); font-size: var(--fs-h1); line-height: 1.14;
  font-weight: 700; color: var(--pub-ink); margin-bottom: var(--space-2);
}
.article-head__dek {
  font-size: var(--fs-lede); color: var(--pub-muted); max-width: 46ch; margin-bottom: var(--space-3);
}

.byline {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--space-2); border-top: 1px solid var(--pub-line); border-bottom: 1px solid var(--pub-line);
  padding: var(--space-2) 0; margin-bottom: var(--space-3); font-size: var(--fs-small); color: var(--pub-muted);
}
.byline__meta { display: flex; flex-direction: column; gap: 0.15rem; }
.byline__name { color: var(--pub-ink); font-weight: 700; }

.share-row { display: flex; gap: 0.5rem; }
.share-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--pub-line);
  background: var(--pub-surface); color: var(--pub-accent); display: flex; align-items: center;
  justify-content: center; font-size: 0.85rem; font-weight: 700; transition: background 0.2s, color 0.2s, transform 0.2s;
}
.share-btn:hover, .share-btn:focus-visible { background: var(--pub-accent); color: #fff; transform: translateY(-2px); outline: none; }

.article-hero { margin-bottom: var(--space-4); }
.article-hero__media {
  width: 100%; aspect-ratio: 16/10; border-radius: var(--radius-m); overflow: hidden;
  background: var(--pub-line);
}
.article-hero__media img, .article-hero__media video { width: 100%; height: 100%; object-fit: cover; }
.article-hero__caption { font-size: var(--fs-small); color: var(--pub-muted); padding-top: 0.5rem; }

.article-layout {
  display: grid; grid-template-columns: 1fr; gap: var(--space-5);
}
@media (min-width: 1024px) {
  .article-layout { grid-template-columns: minmax(0, 1fr) 320px; align-items: start; }
}

.article-main { min-width: 0; }
.article-main > * + * { margin-top: var(--space-3); }
.article-main p { color: var(--pub-ink); }
.article-main h2 {
  font-family: var(--font-pub-head); font-size: var(--fs-h2); font-weight: 700;
  margin-top: var(--space-4); line-height: 1.2;
}
.article-main h3 { font-size: var(--fs-h3); font-weight: 700; margin-top: var(--space-3); }
.article-main strong { color: var(--pub-ink); }
.article-main figure { margin: 0; }
.article-main figure img { border-radius: var(--radius-m); width: 100%; }
.article-main figcaption { font-size: var(--fs-small); color: var(--pub-muted); margin-top: 0.5rem; }

.lede { font-size: var(--fs-lede); color: var(--pub-ink); }

.callout {
  background: var(--pub-callout-bg); border: 1px solid var(--pub-callout-border);
  border-left: 5px solid var(--pub-accent); border-radius: var(--radius-m);
  padding: var(--space-3); margin: var(--space-4) 0;
}
.callout--quote { font-family: var(--font-pub-head); font-size: var(--fs-h3); line-height: 1.35; color: var(--pub-ink); }
.callout__attribution { display: block; font-family: var(--font-body); font-size: var(--fs-small);
  color: var(--pub-muted); margin-top: var(--space-2); font-weight: 600; }

.rate-strip {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-2);
  margin: var(--space-3) 0;
}
@media (min-width: 480px) { .rate-strip { grid-template-columns: repeat(3, 1fr); } }
.rate-strip__item {
  background: var(--pub-surface); border: 1px solid var(--pub-line); border-radius: var(--radius-m);
  padding: var(--space-2); text-align: center;
}
.rate-strip__value { font-family: var(--font-pub-head); font-size: 1.35rem; font-weight: 700; color: var(--pub-accent); display: block; }
.rate-strip__label { font-size: 0.78rem; color: var(--pub-muted); }

.leverage-band {
  background: var(--pub-band-bg); color: var(--pub-band-ink);
  border-radius: var(--radius-l); padding: var(--space-4); margin: var(--space-5) 0;
}
.leverage-band__kicker {
  color: var(--pub-highlight, #7fd8b0); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: var(--fs-small); display: block; margin-bottom: 0.6rem;
}
.leverage-band__title { font-family: var(--font-pub-head); font-size: var(--fs-h2); margin-bottom: 0.8rem; }
.leverage-band__text { max-width: 62ch; opacity: 0.92; }
.leverage-band__media { margin-top: var(--space-3); border-radius: var(--radius-m); overflow: hidden; aspect-ratio: 16/9; background: #052026; }
.leverage-band__media video { width: 100%; height: 100%; object-fit: cover; }

.offer-checklist { display: grid; gap: 0.75rem; }
.offer-checklist__item {
  display: flex; gap: 0.75rem; align-items: flex-start; background: var(--pub-surface);
  border: 1px solid var(--pub-line); border-radius: var(--radius-m); padding: var(--space-2);
}
.offer-checklist__mark {
  flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--pub-accent);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700;
}

.pub-cta-band {
  text-align: center; background: var(--pub-surface); border: 1px solid var(--pub-line);
  border-radius: var(--radius-l); padding: var(--space-4); margin: var(--space-5) 0;
}
.pub-cta-band h2 { font-family: var(--font-pub-head); font-size: var(--fs-h2); margin-bottom: 0.6rem; }
.pub-cta-band p { color: var(--pub-muted); max-width: 52ch; margin: 0 auto var(--space-3); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.6rem; border-radius: 999px; font-weight: 700; font-size: 1rem;
  border: 2px solid transparent; min-height: 44px; transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn:focus-visible { outline: 3px solid currentColor; outline-offset: 2px; }
.btn--pub {
  background: var(--pub-accent); color: var(--pub-accent-ink);
}
.btn--pub:hover, .btn--pub:focus-visible { background: #175e46; transform: translateY(-2px); }
.btn--pub-ghost { background: transparent; border-color: var(--pub-accent); color: var(--pub-accent); }
.btn--pub-ghost:hover { background: var(--pub-accent); color: #fff; }

.btn--offer { background: var(--offer-accent); color: var(--offer-accent-ink); box-shadow: 0 10px 24px -12px rgba(63,107,255,0.7); }
.btn--offer:hover, .btn--offer:focus-visible { background: #2f57e0; transform: translateY(-2px); }
.btn--offer-ghost { background: transparent; border-color: var(--offer-border); color: var(--offer-ink); }
.btn--offer-ghost:hover { border-color: var(--offer-accent); color: var(--offer-accent); }
.btn--block { width: 100%; }

/* Sidebar */
.article-sidebar { display: grid; gap: var(--space-3); align-content: start; }
@media (min-width: 1024px) { .article-sidebar { position: sticky; top: var(--space-3); } }

.toc {
  background: var(--pub-surface); border: 1px solid var(--pub-line); border-radius: var(--radius-m);
  padding: var(--space-3);
}
.toc__title { font-size: var(--fs-small); text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--pub-muted); font-weight: 700; margin-bottom: 0.75rem; }
.toc__list { display: grid; gap: 0.55rem; }
.toc__link {
  display: block; font-size: 0.92rem; color: var(--pub-ink); padding: 0.3rem 0.4rem;
  border-radius: var(--radius-s); border-left: 3px solid transparent;
}
.toc__link:hover, .toc__link:focus-visible { border-left-color: var(--pub-accent); background: var(--pub-callout-bg); outline: none; }

.cta-card {
  background: var(--pub-masthead); color: var(--pub-masthead-ink); border-radius: var(--radius-m);
  padding: var(--space-3); text-align: center;
}
.cta-card__title { font-family: var(--font-pub-head); font-size: 1.3rem; margin-bottom: 0.5rem; }
.cta-card__text { font-size: var(--fs-small); opacity: 0.88; margin-bottom: var(--space-2); }

.sidebar-card {
  background: var(--pub-surface); border: 1px solid var(--pub-line); border-radius: var(--radius-m);
  overflow: hidden;
}
.sidebar-card__media { aspect-ratio: 4/3; overflow: hidden; }
.sidebar-card__media img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-card__body { padding: var(--space-2); }
.sidebar-card__body p { font-size: 0.92rem; color: var(--pub-muted); }

.site-disclaimer {
  display: block; max-width: var(--container-w); margin: var(--space-5) auto 0; padding: var(--space-3);
  font-size: 0.9rem; line-height: 1.6;
}
.page--pub .site-disclaimer {
  background: var(--pub-surface); border: 1px solid var(--pub-line); color: var(--pub-muted);
  margin-left: var(--space-3); margin-right: var(--space-3);
}
@media (min-width: 1220px) { .page--pub .site-disclaimer { margin-left: auto; margin-right: auto; } }
.page--offer .site-disclaimer, .page--legal .site-disclaimer {
  background: var(--offer-surface); border: 1px solid var(--offer-border); color: var(--offer-muted);
}
.site-disclaimer a { color: var(--pub-accent); text-decoration: underline; }
.page--offer .site-disclaimer a, .page--legal .site-disclaimer a { color: var(--offer-accent); }
.site-disclaimer p + p { margin-top: 0.5rem; }

/* =========================================================================
   FOOTER (shared, dark, every page)
   ========================================================================= */
.site-footer { background: #05070d; color: #cfd4e2; padding: var(--space-4) 0 var(--space-4); margin-top: var(--space-3); }
.site-footer__inner { max-width: var(--container-w); margin: 0 auto; padding: 0 var(--space-3);
  display: grid; gap: var(--space-3); }
.site-footer__company { font-size: 0.9rem; line-height: 1.7; white-space: pre-line; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; padding-top: var(--space-2);
  border-top: 1px solid #232a3d; }
.site-footer__links a { font-size: 0.9rem; color: #cfd4e2; }
.site-footer__links a:hover, .site-footer__links a:focus-visible { color: #ffffff; text-decoration: underline; }

/* =========================================================================
   OFFER FAMILY (join page)
   ========================================================================= */
.page--offer { background: var(--offer-bg); color: var(--offer-ink); }

.offer-header { background: rgba(10,14,24,0.92); backdrop-filter: blur(6px); padding: var(--space-2) 0;
  position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--offer-border); }
.offer-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); position: relative; }
.offer-header__brand { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-offer-head);
  font-weight: 700; font-size: 1.05rem; }
.offer-header__brand-mark { width: 28px; height: 28px; border-radius: 8px; background: var(--offer-accent);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.offer-header__toggle {
  display: flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--offer-border); border-radius: var(--radius-s);
  color: var(--offer-ink); font-size: 1.1rem;
}
@media (min-width: 768px) { .offer-header__toggle { display: none; } }

.offer-header__nav {
  display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column;
  gap: 0; background: var(--offer-bg-soft); border-bottom: 1px solid var(--offer-border);
  padding: var(--space-1) var(--space-3) var(--space-2);
}
.offer-header__nav.is-open { display: flex; }
.offer-header__nav a { display: block; padding: 0.75rem 0; font-size: 0.98rem; color: var(--offer-muted);
  border-bottom: 1px solid var(--offer-border); min-height: 44px; }
.offer-header__nav a:last-child { border-bottom: none; }
.offer-header__nav a:hover, .offer-header__nav a:focus-visible { color: var(--offer-ink); }

@media (min-width: 768px) {
  .offer-header__nav {
    display: flex; position: static; flex-direction: row; gap: var(--space-3); background: transparent;
    border: none; padding: 0;
  }
  .offer-header__nav a { padding: 0; border-bottom: none; min-height: auto; }
}

.offer-hero { padding: var(--space-6) 0 var(--space-4); text-align: center; }
.offer-hero__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin: var(--space-3) 0; }
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem; background: var(--offer-surface);
  border: 1px solid var(--offer-border); color: var(--offer-muted); font-size: 0.82rem; font-weight: 600;
  padding: 0.45rem 0.9rem; border-radius: 999px;
}
.offer-hero__title {
  font-family: var(--font-offer-head); font-size: var(--fs-h1); font-weight: 800; line-height: 1.1;
  max-width: 20ch; margin: 0 auto var(--space-2);
}
.offer-hero__title-accent { color: var(--offer-accent); }
.offer-hero__subhead { max-width: 56ch; margin: 0 auto var(--space-3); color: var(--offer-muted); font-size: var(--fs-lede); }
.offer-hero__cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-top: var(--space-3); }

.trust-row {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin: var(--space-3) auto 0;
  max-width: 34rem; background: var(--offer-surface); border: 1px solid var(--offer-border);
  border-radius: 999px; padding: 0.6rem 1.1rem;
}
.trust-row__avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--offer-accent-soft);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex: none; }
.trust-row__text { text-align: left; font-size: 0.82rem; color: var(--offer-muted); line-height: 1.4; }
.trust-row__text strong { color: var(--offer-ink); }

.deal-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-2); margin-top: var(--space-4); }
@media (min-width: 640px) { .deal-grid { grid-template-columns: 1fr 1fr; } }
.deal-card {
  background: var(--offer-surface); border: 1px solid var(--offer-border); border-radius: var(--radius-l);
  padding: var(--space-3); text-align: left; transition: border-color 0.2s, transform 0.2s;
}
.deal-card:hover { border-color: var(--offer-accent); transform: translateY(-3px); }
.deal-card__icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.deal-card__title { font-family: var(--font-offer-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; }
.deal-card__text { color: var(--offer-muted); font-size: 0.9rem; margin-bottom: var(--space-2); }
.deal-card__cta {
  display: flex; align-items: center; justify-content: space-between; background: var(--offer-accent);
  color: #fff; font-weight: 700; border-radius: var(--radius-m); padding: 0.75rem 1rem; font-size: 0.95rem;
}

.offer-section { padding: var(--space-5) 0; border-top: 1px solid var(--offer-border); }
.offer-section--tight { padding: var(--space-4) 0; }
.offer-section__kicker { color: var(--offer-accent); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: var(--fs-small); display: block; margin-bottom: 0.6rem; }
.offer-section__title { font-family: var(--font-offer-head); font-size: var(--fs-h2); font-weight: 800; margin-bottom: 0.75rem; }
.offer-section__lede { color: var(--offer-muted); max-width: 62ch; font-size: var(--fs-lede); margin-bottom: var(--space-3); }
.offer-section--center { text-align: center; }
.offer-section--center .offer-section__lede { margin-left: auto; margin-right: auto; }

.stat-band { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); text-align: center; }
@media (min-width: 640px) { .stat-band { grid-template-columns: repeat(4, 1fr); } }
.stat-band__figure { font-family: var(--font-offer-head); font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  font-weight: 800; color: var(--offer-ink); }
.stat-band__figure span { color: var(--offer-accent); }
.stat-band__label { font-size: 0.82rem; color: var(--offer-muted); margin-top: 0.35rem; }
.stat-band__note { grid-column: 1 / -1; font-size: 0.85rem; color: var(--offer-muted); margin-top: var(--space-2);
  border-top: 1px dashed var(--offer-border); padding-top: var(--space-2); }

.workflow-layout { display: grid; gap: var(--space-4); }
@media (min-width: 900px) { .workflow-layout { grid-template-columns: 1.1fr 1fr; align-items: center; } }
.workflow-media { border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 4/3; background: var(--offer-surface); }
.workflow-media video { width: 100%; height: 100%; object-fit: cover; }

.steps { display: grid; gap: var(--space-2); }
.steps__item { display: flex; gap: 1rem; background: var(--offer-surface); border: 1px solid var(--offer-border);
  border-radius: var(--radius-m); padding: var(--space-2); }
.steps__num { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--offer-accent-soft);
  color: var(--offer-accent); display: flex; align-items: center; justify-content: center; font-weight: 800; }
.steps__title { font-weight: 700; margin-bottom: 0.2rem; }
.steps__text { font-size: 0.9rem; color: var(--offer-muted); }

.price-table-wrap { overflow-x: auto; margin-top: var(--space-3); border-radius: var(--radius-l);
  border: 1px solid var(--offer-border); }
.price-table { width: 100%; min-width: 640px; border-collapse: collapse; background: var(--offer-surface); }
.price-table th, .price-table td { padding: 1rem 1.1rem; text-align: left; border-bottom: 1px solid var(--offer-border); font-size: 0.92rem; }
.price-table thead th { background: var(--offer-surface-2); font-family: var(--font-offer-head); font-size: 1rem; }
.price-table tbody th { color: var(--offer-muted); font-weight: 600; width: 34%; }
.price-table tr:last-child td, .price-table tr:last-child th { border-bottom: none; }
.price-table td.is-yes { color: #6ee7a8; font-weight: 700; }
.price-table td.is-no { color: #55607c; }
.price-table .price-table__col--highlight { background: rgba(63,107,255,0.1); position: relative; }
.price-table thead th.price-table__col--highlight { color: var(--offer-accent); }
.price-table__price { font-family: var(--font-offer-head); font-size: 1.3rem; font-weight: 800; display: block; }
.price-table__hours { font-size: 0.78rem; color: var(--offer-muted); }
.price-table__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--offer-highlight); color: #241a00; font-size: 0.7rem; font-weight: 800;
  padding: 0.2rem 0.6rem; border-radius: 999px; white-space: nowrap; }

.addon-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-2); margin-top: var(--space-3); }
@media (min-width: 640px) { .addon-grid { grid-template-columns: repeat(3, 1fr); } }
.addon-card { background: var(--offer-surface); border: 1px solid var(--offer-border); border-radius: var(--radius-m);
  padding: var(--space-2); display: flex; flex-direction: column; gap: 0.4rem; }
.addon-card__price { font-family: var(--font-offer-head); font-weight: 800; color: var(--offer-accent); font-size: 1.15rem; }
.addon-card__text { font-size: 0.88rem; color: var(--offer-muted); }

.perks { display: grid; grid-template-columns: 1fr; gap: 0.6rem; margin-top: var(--space-3); }
@media (min-width: 640px) { .perks { grid-template-columns: 1fr 1fr; } }
.perks__item { display: flex; gap: 0.7rem; align-items: flex-start; background: var(--offer-surface-2);
  border-radius: var(--radius-m); padding: 0.85rem 1rem; font-size: 0.92rem; }
.perks__mark { flex: none; color: var(--offer-highlight); font-weight: 800; }

.limits-block { background: var(--offer-surface); border: 1px solid var(--offer-border); border-radius: var(--radius-l);
  padding: var(--space-3); }
.limits-block ul { display: grid; gap: 0.6rem; margin-top: var(--space-2); }
.limits-block li { display: flex; gap: 0.6rem; font-size: 0.92rem; color: var(--offer-muted); }
.limits-block li::before { content: "—"; color: var(--offer-accent); flex: none; }

.lead-panel { display: grid; gap: var(--space-4); }
@media (min-width: 900px) { .lead-panel { grid-template-columns: 1fr 1.1fr; align-items: start; } }
.lead-panel__media { border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 4/3; }
.lead-panel__media img { width: 100%; height: 100%; object-fit: cover; }
.lead-panel__list { display: grid; gap: 0.6rem; margin-top: var(--space-3); }
.lead-panel__list li { font-size: 0.92rem; color: var(--offer-muted); display: flex; gap: 0.6rem; }
.lead-panel__list li::before { content: "✓"; color: #6ee7a8; flex: none; font-weight: 800; }

.lead-form { background: var(--offer-surface); border: 1px solid var(--offer-border); border-radius: var(--radius-l);
  padding: var(--space-3); display: grid; gap: var(--space-2); }
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--space-2); }
@media (min-width: 560px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.form-field { display: grid; gap: 0.4rem; }
.form-field label { font-size: 0.88rem; font-weight: 600; color: var(--offer-ink); }
.form-field input, .form-field textarea {
  border: 1px solid var(--offer-border); background: var(--offer-bg-soft); color: var(--offer-ink);
  border-radius: var(--radius-s); padding: 0.85rem 0.9rem; font-size: 1rem; min-height: 44px; width: 100%;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus-visible, .form-field textarea:focus-visible { outline: 2px solid var(--offer-accent); outline-offset: 1px; }
.form-field__error { font-size: 0.8rem; color: #ff8b8b; min-height: 1em; }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.88rem; color: var(--offer-muted); }
.form-consent input { width: 20px; height: 20px; flex: none; margin-top: 0.15rem; }
.form-consent a { color: var(--offer-accent); text-decoration: underline; }
.form-note { font-size: 0.8rem; color: var(--offer-muted); }
.form-success {
  display: none; background: var(--offer-accent-soft); border: 1px solid var(--offer-accent);
  color: var(--offer-ink); border-radius: var(--radius-m); padding: var(--space-2); font-size: 0.92rem;
}
.form-success.is-visible { display: block; }
.lead-form.is-hidden { display: none; }

/* =========================================================================
   LEGAL / ABOUT-ON-OFFER PAGES (contact, cookies, data-rights, earnings,
   privacy, terms) — offer chrome + readable light content card
   ========================================================================= */
.page--legal { background: var(--offer-bg); color: var(--offer-ink); }
.legal-hero { padding: var(--space-4) 0 var(--space-2); text-align: left; }
.legal-hero__kicker { color: var(--offer-accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: var(--fs-small); display: block; margin-bottom: 0.5rem; }
.legal-hero__title { font-family: var(--font-offer-head); font-size: var(--fs-h1); font-weight: 800; }
.legal-hero__updated { color: var(--offer-muted); font-size: 0.9rem; margin-top: 0.5rem; }

.legal-card {
  background: var(--legal-card-bg); color: var(--legal-ink); border-radius: var(--radius-l);
  padding: var(--space-4); margin: var(--space-3) 0 var(--space-5);
}
.legal-card h2 { font-family: var(--font-offer-head); font-size: var(--fs-h3); margin-top: var(--space-3); margin-bottom: 0.6rem; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: var(--legal-muted); font-size: 0.96rem; }
.legal-card ul { display: grid; gap: 0.5rem; margin-top: 0.5rem; }
.legal-card li { padding-left: 1.1rem; position: relative; }
.legal-card li::before { content: "•"; position: absolute; left: 0; color: var(--offer-accent); }
.legal-card > * + * { margin-top: 0.85rem; }
.legal-card address { font-style: normal; }

.contact-grid { display: grid; gap: var(--space-3); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.contact-info { display: grid; gap: 0.9rem; }
.contact-info__item { background: var(--offer-surface); border: 1px solid var(--offer-border); border-radius: var(--radius-m);
  padding: var(--space-2); }
.contact-info__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--offer-muted); }
.contact-info__value { font-size: 1rem; font-weight: 600; margin-top: 0.25rem; }
.contact-info__value a:hover { color: var(--offer-accent); }

/* About page (publication family) */
.about-hero { padding: var(--space-4) 0 var(--space-2); }
.about-hero__title { font-family: var(--font-pub-head); font-size: var(--fs-h1); font-weight: 700; }
.about-body { max-width: 68ch; display: grid; gap: var(--space-3); padding-bottom: var(--space-4); }
.about-body h2 { font-family: var(--font-pub-head); font-size: var(--fs-h2); }
.about-body p { color: var(--pub-ink); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-2); margin: var(--space-3) 0; }
@media (min-width: 640px) { .about-grid { grid-template-columns: repeat(3, 1fr); } }
.about-grid__item { background: var(--pub-surface); border: 1px solid var(--pub-line); border-radius: var(--radius-m);
  padding: var(--space-2); }
.about-grid__item h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.about-grid__item p { font-size: 0.92rem; color: var(--pub-muted); }

/* Mobile-safe: nothing 100vw, tables scroll, media contained already handled above */
