/* =========================================================================
   Modern Post Weekly / Presentations & Proposal Support
   Single stylesheet — two design families (pub-theme, offer-theme)
   Mobile-first. Breakpoints: 480 / 768 / 1024.
   ========================================================================= */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
table { border-collapse: collapse; width: 100%; }

:focus-visible {
  outline: 3px solid var(--focus-ring, #1a53ff);
  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;
}

.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: #0b0b0c; color: #fff; padding: 10px 16px; border-radius: 6px;
  transition: top .15s ease;
}
.skip-link:focus { top: 8px; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) { .container { padding-inline: 32px; } }

.narrow { max-width: 760px; }

section { padding-block: 44px; }
@media (min-width: 768px) { section { padding-block: 72px; } }

/* ---------- Buttons ---------- */
.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;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-block { width: 100%; }

/* ---------- htmx-driven nav toggle (shared skeleton) ---------- */
.site-header { position: sticky; top: 0; z-index: 100; }
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
}
.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text { font-weight: 800; font-size: 1.08rem; letter-spacing: -0.01em; }
.logo-sub { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.65; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid currentColor;
  background: transparent;
}
.nav-toggle-bars { position: relative; width: 20px; height: 2px; background: currentColor; }
.nav-toggle-bars::before, .nav-toggle-bars::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.site-nav {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 100%;
  flex-direction: column;
  padding: 8px 20px 20px;
  gap: 4px;
}
.site-header.nav-open .site-nav { display: flex; }
.site-nav a {
  display: block;
  padding: 12px 4px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.site-nav .nav-cta { border-bottom: none; margin-top: 8px; }

@media (min-width: 1024px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .nav-toggle { display: none; }
  .site-nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 28px;
  }
  .site-nav a { border-bottom: none; padding: 0; min-height: auto; }
}

/* =========================================================================
   PUBLICATION THEME — Modern Post Weekly (advertorial + about)
   ========================================================================= */
body.pub-theme {
  --pub-bg: #ffffff;
  --pub-surface: #f4f5f8;
  --pub-ink: #0b0b0e;
  --pub-muted: #55575f;
  --pub-accent: #1a4dff;
  --pub-accent-ink: #ffffff;
  --pub-line: #e1e2e7;
  --pub-ribbon: #0b0b0e;
  --focus-ring: #1a4dff;
  background: var(--pub-bg);
  color: var(--pub-ink);
  font-family: "Inter", Arial, Helvetica, sans-serif;
}
.pub-theme h1, .pub-theme h2, .pub-theme h3, .pub-theme h4 {
  font-family: "Space Grotesk", "Arial Black", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--pub-ink);
}

.pub-theme .disclosure-ribbon {
  background: var(--pub-ribbon);
  color: #fff;
}
.pub-theme .ribbon-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding-block: 8px;
  font-size: 0.72rem;
}
.pub-theme .ribbon-tag {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--pub-accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
}
.pub-theme .ribbon-note { opacity: 0.75; }

.pub-theme .site-header { background: var(--pub-bg); border-bottom: 1px solid var(--pub-line); }
.pub-theme .site-nav { background: var(--pub-bg); border-bottom: 1px solid var(--pub-line); }
.pub-theme .site-nav a:hover, .pub-theme .site-nav a:focus-visible { color: var(--pub-accent); }
.pub-theme .nav-cta {
  background: var(--pub-ink); color: #fff; padding: 10px 18px; border-radius: 999px; font-weight: 700;
}
.pub-theme .nav-cta:hover { background: var(--pub-accent); }

.pub-theme .breadcrumb {
  font-size: 0.82rem;
  color: var(--pub-muted);
  padding-top: 22px;
}
.pub-theme .breadcrumb .sep { margin-inline: 6px; opacity: 0.5; }

.pub-theme .article-head { padding-top: 10px; padding-bottom: 8px; }
.pub-theme .kicker {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pub-accent);
  margin-bottom: 14px;
}
.pub-theme .headline {
  font-size: clamp(1.7rem, 4.6vw + 0.6rem, 3.1rem);
  line-height: 1.08;
  margin-bottom: 18px;
}
.pub-theme .standfirst {
  font-size: clamp(1.05rem, 1.4vw + 0.7rem, 1.3rem);
  color: var(--pub-muted);
  max-width: 62ch;
  margin-bottom: 22px;
}
.pub-theme .byline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.86rem;
  color: var(--pub-muted);
  border-top: 1px solid var(--pub-line);
  border-bottom: 1px solid var(--pub-line);
  padding-block: 14px;
  margin-bottom: 28px;
}
.pub-theme .byline strong { color: var(--pub-ink); }

.pub-theme .hero-media {
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: var(--pub-surface);
  margin-bottom: 8px;
}
.pub-theme .hero-media img, .pub-theme .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.pub-theme .media-caption {
  font-size: 0.8rem;
  color: var(--pub-muted);
  padding-block: 10px 30px;
}

.pub-theme .article-body { padding-top: 6px; }
.pub-theme .article-body > * + * { margin-top: 20px; }
.pub-theme .article-body h2 {
  font-size: clamp(1.4rem, 2vw + 0.8rem, 2rem);
  margin-top: 46px;
  margin-bottom: 4px;
}
.pub-theme .article-body h3 {
  font-size: 1.2rem;
  margin-top: 30px;
}
.pub-theme .article-body p { color: #26272c; font-size: 1.04rem; }
.pub-theme .article-body ul { margin-top: 10px; }
.pub-theme .article-body li {
  position: relative;
  padding-left: 26px;
  margin-top: 10px;
  font-size: 1.02rem;
  color: #26272c;
}
.pub-theme .article-body li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 9px; height: 9px; border-radius: 2px;
  background: var(--pub-accent);
}

.pub-theme .article-figure { margin-top: 10px; }
.pub-theme .article-figure img { border-radius: 4px; }
.pub-theme .article-figure figcaption { font-size: 0.8rem; color: var(--pub-muted); margin-top: 8px; }

.pub-theme .methodology-box {
  background: var(--pub-surface);
  border: 1px solid var(--pub-line);
  border-left: 5px solid var(--pub-accent);
  border-radius: 6px;
  padding: 24px;
}
.pub-theme .box-heading {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.pub-theme .methodology-box ul { margin-top: 4px; }
.pub-theme .methodology-box li {
  position: relative; padding-left: 22px; font-size: 0.98rem; margin-top: 10px; color: #26272c;
}
.pub-theme .methodology-box li::before {
  content: "✓"; position: absolute; left: 0; color: var(--pub-accent); font-weight: 800;
}

.pub-theme .progress-entries { display: flex; flex-direction: column; gap: 18px; }
.pub-theme .entry {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  padding: 18px;
  background: var(--pub-surface);
  border-radius: 6px;
  border: 1px solid var(--pub-line);
}
.pub-theme .entry-date {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--pub-accent);
}
.pub-theme .entry-title { font-weight: 700; margin-bottom: 6px; font-size: 1.02rem; }
.pub-theme .entry-body p { color: #26272c; font-size: 0.98rem; margin: 0; }

.pub-theme .callout {
  background: var(--pub-ink);
  color: #fff;
  border-radius: 10px;
  padding: 28px 24px;
}
.pub-theme .callout .box-heading { color: var(--pub-accent); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.pub-theme .callout h3 { color: #fff; font-size: 1.5rem; margin-top: 8px; margin-bottom: 12px; }
.pub-theme .callout p { color: #d6d8e0; font-size: 1.02rem; margin: 0; }

.pub-theme .score-bars { display: flex; flex-direction: column; gap: 16px; }
.pub-theme .score-row { display: grid; grid-template-columns: 1fr auto; gap: 6px 14px; align-items: center; }
.pub-theme .score-label { font-weight: 600; font-size: 0.96rem; }
.pub-theme .score-value { font-family: "Space Grotesk", Arial, sans-serif; font-weight: 800; color: var(--pub-accent); }
.pub-theme .score-track {
  grid-column: 1 / -1;
  height: 10px;
  background: var(--pub-surface);
  border: 1px solid var(--pub-line);
  border-radius: 999px;
  overflow: hidden;
}
.pub-theme .score-fill { height: 100%; background: var(--pub-accent); border-radius: 999px; }

.pub-theme .table-wrap { overflow-x: auto; border-radius: 6px; border: 1px solid var(--pub-line); }
.pub-theme table { min-width: 480px; }
.pub-theme th, .pub-theme td {
  text-align: left; padding: 13px 16px; font-size: 0.94rem; border-bottom: 1px solid var(--pub-line);
  white-space: normal;
}
.pub-theme thead th {
  background: var(--pub-ink); color: #fff; font-family: "Space Grotesk", Arial, sans-serif; font-size: 0.82rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.pub-theme tbody tr:last-child td { border-bottom: none; }
.pub-theme tbody tr:nth-child(even) { background: var(--pub-surface); }
.pub-theme td.emph { font-weight: 800; color: var(--pub-accent); }

.pub-theme .deliverables-list { display: grid; gap: 16px; grid-template-columns: 1fr; }
.pub-theme .deliverable-item {
  display: grid; grid-template-columns: 40px 1fr; gap: 14px;
  padding: 18px; border: 1px solid var(--pub-line); border-radius: 8px; background: #fff;
}
.pub-theme .deliverable-num {
  font-family: "Space Grotesk", Arial, sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--pub-accent);
}
.pub-theme .deliverable-item h4 { font-size: 1.02rem; margin-bottom: 6px; }
.pub-theme .deliverable-item p { font-size: 0.94rem; color: var(--pub-muted); margin: 0; }

.pub-theme .gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pub-theme .gallery-item { aspect-ratio: 1 / 1; border-radius: 6px; overflow: hidden; }
.pub-theme .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.pub-theme .gallery-item:hover img { transform: scale(1.04); }

.pub-theme .verdict-box {
  border: 2px solid var(--pub-ink);
  border-radius: 10px;
  padding: 28px 24px;
  background: var(--pub-surface);
}
.pub-theme .verdict-heading {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pub-accent);
  margin-bottom: 10px;
}
.pub-theme .verdict-box h3 { font-size: clamp(1.3rem, 2vw + 0.7rem, 1.7rem); margin-bottom: 12px; }
.pub-theme .verdict-box p { color: #26272c; font-size: 1.02rem; margin-bottom: 20px; }
.pub-theme .btn-primary { background: var(--pub-accent); color: #fff; }
.pub-theme .btn-primary:hover { background: #1240d1; }
.pub-theme .btn-secondary { background: transparent; color: var(--pub-ink); border-color: var(--pub-ink); }
.pub-theme .btn-secondary:hover { background: var(--pub-ink); color: #fff; }

.pub-theme .disclaimer-note {
  font-size: 0.84rem; color: var(--pub-muted); border-top: 1px dashed var(--pub-line); padding-top: 14px; margin-top: 20px;
}
.pub-theme .disclaimer-note a { color: var(--pub-accent); text-decoration: underline; }

.pub-theme .article-footer {
  border-top: 1px solid var(--pub-line);
  padding-top: 26px; margin-top: 46px;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
}
.pub-theme .author-box { display: flex; gap: 12px; align-items: center; }
.pub-theme .author-avatar {
  width: 46px; height: 46px; border-radius: 999px; background: var(--pub-ink); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: "Space Grotesk", Arial, sans-serif;
}
.pub-theme .author-box strong { display: block; font-size: 0.94rem; }
.pub-theme .author-box span { font-size: 0.82rem; color: var(--pub-muted); }

/* about page (pub theme) */
.pub-theme .about-hero { padding-top: 40px; }
.pub-theme .about-hero .headline { max-width: 20ch; }
.pub-theme .values-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
.pub-theme .value-card {
  background: var(--pub-surface); border: 1px solid var(--pub-line); border-radius: 8px; padding: 22px;
}
.pub-theme .value-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.pub-theme .value-card p { font-size: 0.96rem; color: var(--pub-muted); margin: 0; }
.pub-theme .standards-list { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.pub-theme .standards-list li {
  position: relative; padding-left: 24px; font-size: 1rem; color: #26272c;
}
.pub-theme .standards-list li::before { content: "—"; position: absolute; left: 0; color: var(--pub-accent); font-weight: 800; }

/* ---------- Publication footer ---------- */
.pub-theme .site-footer { background: var(--pub-ink); color: #d6d8e0; padding-block: 44px 28px; margin-top: 40px; }
.pub-theme .footer-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.pub-theme .footer-col h4 { color: #fff; font-size: 0.86rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.pub-theme .footer-links { display: flex; flex-direction: column; gap: 8px; }
.pub-theme .footer-links a { font-size: 0.92rem; color: #b7b9c4; }
.pub-theme .footer-links a:hover { color: #fff; }
.pub-theme .footer-legal { font-size: 0.78rem; color: #8c8ea0; margin-top: 26px; border-top: 1px solid #26272f; padding-top: 20px; }
.pub-theme .footer-legal p + p { margin-top: 6px; }

@media (min-width: 640px) {
  .pub-theme .deliverables-list { grid-template-columns: 1fr 1fr; }
  .pub-theme .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .pub-theme .entry { grid-template-columns: 110px 1fr; }
  .pub-theme .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .pub-theme .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .pub-theme .deliverables-list { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================================
   OFFER THEME — Presentations & Proposal Support (clinical-clean / serif-news)
   ========================================================================= */
body.offer-theme {
  --offer-bg: #f4f7f7;
  --offer-surface: #ffffff;
  --offer-tint: #eaf1f0;
  --offer-ink: #101c22;
  --offer-muted: #55636a;
  --offer-accent: #0e7c66;
  --offer-accent-ink: #ffffff;
  --offer-navy: #142a3c;
  --offer-line: #dbe4e3;
  --focus-ring: #0e7c66;
  background: var(--offer-bg);
  color: var(--offer-ink);
}
.offer-theme h1, .offer-theme h2, .offer-theme h3, .offer-theme h4 {
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-weight: 700;
  color: var(--offer-ink);
  letter-spacing: -0.01em;
}

.offer-theme .site-header { background: var(--offer-surface); border-bottom: 1px solid var(--offer-line); }
.offer-theme .site-nav { background: var(--offer-surface); border-bottom: 1px solid var(--offer-line); }
.offer-theme .logo-text { font-family: Georgia, serif; }
.offer-theme .site-nav a:hover, .offer-theme .site-nav a:focus-visible { color: var(--offer-accent); }
.offer-theme .nav-cta { background: var(--offer-accent); color: #fff; padding: 10px 18px; border-radius: 999px; font-weight: 700; }
.offer-theme .nav-cta:hover { background: var(--offer-navy); }
.offer-theme .btn-primary { background: var(--offer-accent); color: #fff; }
.offer-theme .btn-primary:hover { background: var(--offer-navy); }
.offer-theme .btn-secondary { background: transparent; border-color: var(--offer-ink); color: var(--offer-ink); }
.offer-theme .btn-secondary:hover { background: var(--offer-ink); color: #fff; }

.offer-theme .section--surface { background: var(--offer-surface); }
.offer-theme .section--tint { background: var(--offer-tint); }
.offer-theme .section--navy { background: var(--offer-navy); color: #eef3f2; }
.offer-theme .section--navy h2, .offer-theme .section--navy h3 { color: #fff; }
.offer-theme .section--navy p { color: #c9d6d3; }

.offer-theme .eyebrow {
  display: inline-block; font-family: "Inter", Arial, sans-serif; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--offer-accent); margin-bottom: 14px;
}
.offer-theme .section-head { max-width: 68ch; margin-bottom: 30px; }
.offer-theme .section-head h2 { font-size: clamp(1.5rem, 2.6vw + 0.8rem, 2.3rem); margin-bottom: 12px; }
.offer-theme .section-head p { font-size: 1.02rem; color: var(--offer-muted); }
.offer-theme .section--navy .section-head p { color: #c9d6d3; }

/* hero */
.offer-theme .offer-hero { padding-top: 40px; padding-bottom: 40px; }
.offer-theme .hero-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
.offer-theme .hero-question {
  font-size: clamp(1.65rem, 4.4vw + 0.5rem, 2.9rem); line-height: 1.12; margin-bottom: 16px;
}
.offer-theme .hero-answer { font-size: clamp(1.02rem, 1vw + 0.8rem, 1.2rem); color: var(--offer-muted); margin-bottom: 24px; max-width: 56ch; }
.offer-theme .hero-h2 {
  font-size: clamp(1.2rem, 1.6vw + 0.8rem, 1.6rem); margin-bottom: 10px; color: var(--offer-accent);
}
.offer-theme .hero-leverage-copy { font-size: 1rem; color: #33424a; max-width: 56ch; margin-bottom: 24px; }
.offer-theme .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.offer-theme .hero-media { aspect-ratio: 4 / 3; border-radius: 18px; overflow: hidden; background: var(--offer-tint); }
.offer-theme .hero-media img, .offer-theme .hero-media video { width: 100%; height: 100%; object-fit: cover; }

.offer-theme .stat-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.offer-theme .stat-chip {
  font-size: 0.84rem; font-weight: 600; background: var(--offer-surface); border: 1px solid var(--offer-line);
  border-radius: 999px; padding: 8px 16px; color: var(--offer-ink);
}

/* cards grid (deliverables) */
.offer-theme .cards-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.offer-theme .deliverable-card {
  background: var(--offer-surface); border-radius: 16px; border: 1px solid var(--offer-line); overflow: hidden;
  box-shadow: 0 1px 2px rgba(16,28,34,0.04);
}
.offer-theme .card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.offer-theme .card-media img { width: 100%; height: 100%; object-fit: cover; }
.offer-theme .card-body { padding: 20px; }
.offer-theme .deliverable-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.offer-theme .deliverable-card p { font-size: 0.94rem; color: var(--offer-muted); margin-bottom: 12px; }
.offer-theme .card-price-tag {
  display: inline-block; font-family: "Inter", Arial, sans-serif; font-weight: 700; font-size: 0.86rem;
  background: var(--offer-tint); color: var(--offer-navy); border-radius: 8px; padding: 6px 12px;
}

/* rate callout */
.offer-theme .rate-callout {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  background: var(--offer-surface); border: 1px solid var(--offer-line); border-radius: 16px; padding: 26px;
}
.offer-theme .rate-figure { text-align: left; }
.offer-theme .rate-figure .amount {
  display: block; font-family: Georgia, serif; font-size: clamp(1.6rem, 3vw + 1rem, 2.2rem); color: var(--offer-accent); font-weight: 700;
}
.offer-theme .rate-figure .label { font-size: 0.86rem; color: var(--offer-muted); }
.offer-theme .table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--offer-line); background: var(--offer-surface); }
.offer-theme table { min-width: 460px; }
.offer-theme th, .offer-theme td { text-align: left; padding: 14px 18px; font-size: 0.94rem; border-bottom: 1px solid var(--offer-line); font-family: "Inter", Arial, sans-serif; }
.offer-theme thead th { background: var(--offer-tint); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.78rem; }
.offer-theme tbody tr:last-child td { border-bottom: none; }
.offer-theme td.emph { font-weight: 800; color: var(--offer-accent); }
.offer-theme .rate-note { font-size: 0.84rem; color: var(--offer-muted); }
.offer-theme .rate-note a { color: var(--offer-accent); text-decoration: underline; }

/* leverage block */
.offer-theme .leverage-block { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
.offer-theme .leverage-steps { display: flex; flex-direction: column; gap: 16px; }
.offer-theme .leverage-step {
  display: grid; grid-template-columns: 40px 1fr; gap: 14px; background: var(--offer-surface);
  border: 1px solid var(--offer-line); border-radius: 12px; padding: 16px 18px;
}
.offer-theme .step-number {
  width: 34px; height: 34px; border-radius: 999px; background: var(--offer-accent); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: "Inter", Arial, sans-serif;
}
.offer-theme .leverage-step h3 { font-size: 1rem; margin-bottom: 4px; font-family: "Inter", Arial, sans-serif; }
.offer-theme .leverage-step p { font-size: 0.92rem; color: var(--offer-muted); margin: 0; }
.offer-theme .loop-frame { aspect-ratio: 16 / 10; border-radius: 16px; overflow: hidden; background: var(--offer-tint); }
.offer-theme .loop-frame video { width: 100%; height: 100%; object-fit: cover; }

/* curriculum */
.offer-theme .curriculum-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.offer-theme .curriculum-list { display: flex; flex-direction: column; gap: 12px; }
.offer-theme .curriculum-list li {
  position: relative; padding-left: 26px; font-size: 0.98rem; color: #2b3a41;
}
.offer-theme .curriculum-list li::before { content: "▸"; position: absolute; left: 0; color: var(--offer-accent); }
.offer-theme .curriculum-col h3 { font-size: 1.05rem; margin-bottom: 14px; font-family: "Inter", Arial, sans-serif; }

/* pricing */
.offer-theme .pricing-grid { display: grid; grid-template-columns: 1fr; gap: 22px; container-type: inline-size; }
.offer-theme .pricing-card {
  background: var(--offer-surface); border: 1px solid var(--offer-line); border-radius: 20px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.offer-theme .pricing-card.is-highlight {
  background: var(--offer-navy); color: #fff; border-color: var(--offer-navy);
  box-shadow: 0 18px 40px rgba(20,42,60,0.28); transform: scale(1.01);
  position: relative;
}
.offer-theme .pricing-card.is-highlight .pricing-hours,
.offer-theme .pricing-card.is-highlight .pricing-list li { color: #d7e2df; }
.offer-theme .highlight-tag {
  position: absolute; top: -14px; left: 24px; background: var(--offer-accent); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.offer-theme .pricing-name { font-size: 1.2rem; }
.offer-theme .pricing-price { font-family: Georgia, serif; font-size: 2.1rem; font-weight: 700; }
.offer-theme .pricing-price span { font-size: 1rem; font-family: "Inter", Arial, sans-serif; font-weight: 500; opacity: 0.7; }
.offer-theme .pricing-hours { font-size: 0.86rem; color: var(--offer-muted); font-family: "Inter", Arial, sans-serif; }
.offer-theme .pricing-list { display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.offer-theme .pricing-list li {
  position: relative; padding-left: 24px; font-size: 0.92rem; font-family: "Inter", Arial, sans-serif; color: #2b3a41;
}
.offer-theme .pricing-list li::before { content: "✓"; position: absolute; left: 0; color: var(--offer-accent); font-weight: 800; }
.offer-theme .pricing-card.is-highlight .pricing-list li::before { color: #6fe3c6; }

/* add-ons */
.offer-theme .addons-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.offer-theme .addon-card {
  background: var(--offer-surface); border: 1px solid var(--offer-line); border-radius: 14px; padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.offer-theme .addon-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.offer-theme .addon-head h3 { font-size: 1.02rem; font-family: "Inter", Arial, sans-serif; }
.offer-theme .addon-price { font-family: Georgia, serif; font-weight: 700; color: var(--offer-accent); font-size: 1.1rem; white-space: nowrap; }
.offer-theme .addon-card p { font-size: 0.92rem; color: var(--offer-muted); margin: 0; }

/* perks */
.offer-theme .perks-stack { display: grid; grid-template-columns: 1fr; gap: 12px; }
.offer-theme .perk-item {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px; background: var(--offer-surface);
  border: 1px solid var(--offer-line); border-radius: 12px; padding: 14px 16px; font-size: 0.94rem;
  align-items: start;
}
.offer-theme .perk-icon { color: var(--offer-accent); font-weight: 800; }

/* arithmetic / value block */
.offer-theme .arithmetic-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.offer-theme .arithmetic-item {
  background: var(--offer-surface); border: 1px solid var(--offer-line); border-radius: 14px; padding: 20px;
}
.offer-theme .arithmetic-item .big { font-family: Georgia, serif; font-size: 1.5rem; color: var(--offer-accent); display: block; margin-bottom: 6px; }
.offer-theme .arithmetic-item p { font-size: 0.92rem; color: var(--offer-muted); margin: 0; }
.offer-theme .waiting-note { margin-top: 18px; font-size: 0.94rem; color: #c9d6d3; }

/* limits */
.offer-theme .limits-list { display: grid; grid-template-columns: 1fr; gap: 14px; }
.offer-theme .limits-list li {
  position: relative; padding-left: 26px; font-size: 0.96rem; color: #2b3a41;
}
.offer-theme .limits-list li::before { content: "•"; position: absolute; left: 4px; color: var(--offer-navy); font-weight: 800; }

/* lead form */
.offer-theme .lead-section { background: var(--offer-navy); color: #eef3f2; }
.offer-theme .lead-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.offer-theme .lead-intro h2 { color: #fff; }
.offer-theme .lead-intro p { color: #c9d6d3; margin-top: 12px; font-size: 0.98rem; }
.offer-theme .lead-intro ul { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.offer-theme .lead-intro li { position: relative; padding-left: 22px; font-size: 0.92rem; color: #c9d6d3; }
.offer-theme .lead-intro li::before { content: "→"; position: absolute; left: 0; color: #6fe3c6; }

.offer-theme .lead-form { background: #fff; border-radius: 20px; padding: 26px; color: var(--offer-ink); }
.offer-theme .form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.offer-theme .field { display: flex; flex-direction: column; gap: 6px; }
.offer-theme .field label { font-size: 0.86rem; font-weight: 700; font-family: "Inter", Arial, sans-serif; }
.offer-theme .field input, .offer-theme .field textarea {
  border: 1px solid var(--offer-line); border-radius: 10px; padding: 13px 14px; font-size: 1rem;
  min-height: 48px; font-family: "Inter", Arial, sans-serif; background: #fbfdfd;
}
.offer-theme .field textarea { min-height: 100px; resize: vertical; }
.offer-theme .field input:focus, .offer-theme .field textarea:focus { border-color: var(--offer-accent); background: #fff; }
.offer-theme .consent-row { display: flex; gap: 10px; align-items: flex-start; font-size: 0.86rem; color: var(--offer-muted); }
.offer-theme .consent-row input { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; }
.offer-theme .consent-row a { color: var(--offer-accent); text-decoration: underline; }
.offer-theme .form-actions { margin-top: 4px; }
.offer-theme .form-note { font-size: 0.78rem; color: var(--offer-muted); margin-top: 14px; }
.offer-theme .form-success {
  background: var(--offer-tint); border: 1px solid var(--offer-accent); border-radius: 12px; padding: 20px; font-size: 0.98rem;
}
.offer-theme .form-success strong { display: block; margin-bottom: 6px; font-family: "Inter", Arial, sans-serif; }
.offer-theme [hidden] { display: none !important; }

/* legal / prose (shared, mostly on offer theme) */
.offer-theme .legal-hero { padding-block: 44px 10px; }
.offer-theme .legal-hero h1 { font-size: clamp(1.7rem, 3.4vw + 0.8rem, 2.6rem); margin-bottom: 14px; }
.offer-theme .legal-hero p { color: var(--offer-muted); max-width: 62ch; font-size: 1.02rem; }
.offer-theme .prose > * + * { margin-top: 18px; }
.offer-theme .prose h2 { font-size: 1.3rem; margin-top: 34px; }
.offer-theme .prose h3 { font-size: 1.08rem; font-family: "Inter", Arial, sans-serif; margin-top: 22px; }
.offer-theme .prose p { font-size: 0.98rem; color: #2b3a41; }
.offer-theme .prose ul { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.offer-theme .prose li { position: relative; padding-left: 22px; font-size: 0.96rem; color: #2b3a41; }
.offer-theme .prose li::before { content: "–"; position: absolute; left: 0; color: var(--offer-accent); }
.offer-theme .company-block {
  background: var(--offer-surface); border: 1px solid var(--offer-line); border-radius: 14px; padding: 20px;
  font-size: 0.92rem; color: var(--offer-muted);
}
.offer-theme .company-block p + p { margin-top: 6px; }
.offer-theme .company-block strong { color: var(--offer-ink); }

/* offer footer */
.offer-theme .site-footer { background: var(--offer-surface); border-top: 1px solid var(--offer-line); padding-block: 40px 26px; margin-top: 20px; }
.offer-theme .footer-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.offer-theme .footer-col h4 { font-size: 0.84rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--offer-ink); margin-bottom: 12px; font-family: "Inter", Arial, sans-serif; }
.offer-theme .footer-links { display: flex; flex-direction: column; gap: 8px; }
.offer-theme .footer-links a { font-size: 0.92rem; color: var(--offer-muted); }
.offer-theme .footer-links a:hover { color: var(--offer-accent); }
.offer-theme .footer-legal { font-size: 0.78rem; color: #7c8a8f; margin-top: 26px; border-top: 1px solid var(--offer-line); padding-top: 20px; }
.offer-theme .footer-legal p + p { margin-top: 6px; }

@media (min-width: 768px) {
  .offer-theme .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
  .offer-theme .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .offer-theme .rate-callout { grid-template-columns: 240px 1fr; }
  .offer-theme .leverage-block { grid-template-columns: 1fr 1fr; }
  .offer-theme .curriculum-grid { grid-template-columns: 1fr 1fr; }
  .offer-theme .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .offer-theme .pricing-card.is-highlight { transform: scale(1.04); }
  .offer-theme .addons-grid { grid-template-columns: 1fr 1fr; }
  .offer-theme .perks-stack { grid-template-columns: 1fr 1fr; }
  .offer-theme .arithmetic-grid { grid-template-columns: repeat(3, 1fr); }
  .offer-theme .limits-list { grid-template-columns: 1fr 1fr; }
  .offer-theme .lead-grid { grid-template-columns: 1fr 1fr; }
  .offer-theme .form-grid { grid-template-columns: 1fr 1fr; }
  .offer-theme .form-grid .field-full { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .offer-theme .pricing-card.is-highlight { transform: scale(1.06); }
}

/* =========================================================================
   Shared media helpers
   ========================================================================= */
.media-credit { font-size: 0.72rem; color: var(--offer-muted, #6b6b6b); }
