:root {
  --ink: #0f1720;
  --ink-soft: #2a3442;
  --muted: #566274;
  --paper: #ffffff;
  --wash: #f4f6fa;
  --line: #d7dde7;
  --teal: #002fa7;
  --copper: #002fa7;
  --gold: #002fa7;
  --accent: #002fa7;
  --accent-soft: #edf3ff;
  --shadow: none;
  --radius: 4px;
  --max: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.62;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

textarea,
select {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(18px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.compact {
  position: sticky;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 10px 30px rgba(15, 23, 32, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--accent);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 19px;
  font-weight: 900;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 16px;
  line-height: 1.2;
}

.brand-text small {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.nav-cta {
  color: var(--paper) !important;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 68svh;
  padding: 118px clamp(18px, 5vw, 70px) 48px;
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 47, 167, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.64));
  background-size: 92px 100%, 100% 100%;
  opacity: 0.72;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.38));
}

.hero-inner,
.section-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-layout {
  display: block;
}

.hero-copy {
  min-width: 0;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.method-section .eyebrow,
.contact-section .eyebrow {
  color: var(--accent);
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.02;
  font-weight: 900;
}

.hero-lead {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.28vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 24px;
  align-items: start;
  margin-top: 40px;
}

.hero-spotlight {
  margin-top: 18px;
}

.hero-spotlight-card {
  width: min(100%, 320px);
  margin-left: auto;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-spotlight-badge {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-spotlight-card img {
  display: block;
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.hero-spotlight-copy {
  margin-top: 14px;
}

.hero-spotlight-copy strong,
.hero-spotlight-copy span,
.hero-spotlight-copy a {
  display: block;
}

.hero-spotlight-copy strong {
  color: var(--ink);
  font-size: 20px;
}

.hero-spotlight-copy span {
  margin-top: 6px;
  color: var(--muted);
}

.hero-spotlight-copy .text-link {
  margin-top: 12px;
}

.btn {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: none;
}

.btn-primary {
  color: var(--paper);
  background: var(--accent);
  border-color: var(--accent);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
}

.btn-secondary.dark {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: none;
  margin: 0;
}

.hero-facts div {
  min-height: 112px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-facts dt {
  color: var(--accent);
  font-size: 28px;
  font-weight: 900;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.hero-brief {
  padding: 18px 18px 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(0, 47, 167, 0.14);
  border-radius: var(--radius);
}

.hero-brief-label {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-brief-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.hero-brief-list li {
  padding-top: 8px;
  color: var(--ink);
  border-top: 1px solid rgba(0, 47, 167, 0.14);
  font-size: 14px;
  font-weight: 700;
}

.signal-strip {
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.signal-inner {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px clamp(18px, 5vw, 70px);
}

.signal-label {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signal-inner span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
}

.section {
  position: relative;
  padding: 74px clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--line);
}

.home-module-flow {
  display: flex;
  flex-direction: column;
  counter-reset: dossier 0;
}

.home-module-wrap {
  order: var(--desktop-order);
}

.home-module-wrap .section {
  counter-increment: dossier;
  background: var(--paper);
}

.home-module-wrap .section::before {
  content: counter(dossier, decimal-leading-zero);
  position: absolute;
  top: 28px;
  right: clamp(18px, 5vw, 56px);
  color: rgba(0, 47, 167, 0.12);
  font-size: clamp(44px, 8vw, 118px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.home-module-positioning .section,
.home-module-cases .section,
.home-module-contact .contact-section {
  background: var(--wash);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 34px;
  max-width: none;
  align-items: start;
}

.section-heading h2,
.method-copy h2,
.contact-section h2,
.article-body h1,
.admin-topbar h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
}

.section-heading p,
.method-copy p,
.contact-section p {
  color: var(--muted);
  max-width: 62ch;
}

.section-heading .eyebrow,
.method-copy .eyebrow,
.contact-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-heading .eyebrow::after,
.method-copy .eyebrow::after,
.contact-section .eyebrow::after {
  content: "";
  width: 52px;
  height: 1px;
  background: currentColor;
}

.pain-grid,
.service-grid,
.proof-grid,
.book-showcase,
.insight-list,
.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pain-grid article,
.service-grid article,
.proof-grid article,
.book-feature,
.insight-list article,
.admin-card,
.admin-metrics article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pain-grid article,
.service-grid article,
.proof-grid article,
.book-feature,
.insight-list article {
  position: relative;
  padding: 22px;
}

.pain-grid article::before,
.service-grid article::before,
.proof-grid article::before,
.book-feature::before,
.insight-list article::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--accent);
}

.service-grid article {
  display: flex;
  flex-direction: column;
}

.pain-grid span,
.insight-list span,
.service-topline,
.book-feature p {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.pain-grid h3,
.service-grid h3,
.proof-grid h3,
.book-feature h3,
.insight-list h3 {
  margin: 10px 0;
  color: var(--ink);
  line-height: 1.25;
}

.pain-grid p,
.service-grid p,
.proof-grid p,
.insight-list p,
.book-feature span,
.article-summary {
  color: var(--muted);
}

.method-section {
  color: var(--ink);
  background: var(--paper) !important;
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.method-copy h2,
.method-copy p {
  color: var(--ink);
}

.method-copy p {
  color: var(--muted);
}

.method-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.method-map article {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.method-map strong,
.method-map span {
  display: block;
}

.method-map strong {
  color: var(--accent);
  font-size: 18px;
}

.method-map span {
  margin-top: 8px;
  color: var(--muted);
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.service-link {
  margin-top: auto;
}

.book-showcase,
.insight-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 850;
  text-decoration: none;
}

.case-badge,
.case-subtitle {
  display: inline-flex;
  width: fit-content;
  margin: 0 8px 8px 0;
  padding: 4px 8px;
  color: var(--paper);
  background: var(--accent);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 850;
}

.case-subtitle {
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(0, 47, 167, 0.14);
}

.contact-section {
  padding: 86px clamp(18px, 5vw, 70px);
  color: var(--ink);
  background: var(--wash);
}

.contact-section h2 {
  color: var(--ink);
}

.contact-section p {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 42px;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-group {
  padding: 18px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-group-header {
  margin-bottom: 16px;
}

.contact-group-header h3,
.contact-group-header p {
  margin: 0;
}

.contact-group-header h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.contact-group-header p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.contact-channel + .contact-channel {
  margin-top: 12px;
}

.contact-direct-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-direct-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.contact-direct-copy strong,
.contact-direct-copy small,
.contact-direct-link {
  display: block;
}

.contact-direct-copy strong {
  color: var(--ink);
  font-size: 18px;
}

.contact-direct-copy small {
  margin-top: 5px;
  color: var(--muted);
}

.contact-direct-link {
  margin-top: 12px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.contact-direct-link:hover,
.contact-direct-link:focus-visible {
  color: var(--accent);
}

.contact-direct-link.is-muted {
  color: var(--muted);
}

.contact-card-action,
.media-platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--accent);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  background: var(--paper);
  border: 1px solid rgba(0, 47, 167, 0.18);
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.contact-card-action:hover,
.contact-card-action:focus-visible,
.media-platform-link:hover,
.media-platform-link:focus-visible {
  background: var(--accent-soft);
  border-color: rgba(0, 47, 167, 0.24);
}

.contact-card-action.is-disabled,
.media-platform-link.is-disabled {
  color: var(--muted);
  background: var(--wash);
  border-color: var(--line);
  cursor: default;
  pointer-events: none;
}

.media-platform-list {
  display: grid;
  gap: 12px;
}

.media-platform-card {
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.media-platform-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.media-platform-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  overflow: hidden;
  color: #fff;
  background: #1f3fa9;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 900;
}

.media-platform-icon img,
img.media-platform-icon {
  object-fit: cover;
  background: transparent;
}

.media-platform-icon[data-platform*="公众号"],
.media-platform-icon[data-platform*="微信"] {
  background: #07c160;
}

.media-platform-icon[data-platform*="视频号"] {
  background: #fa9d3b;
}

.media-platform-icon[data-platform*="知乎"] {
  background: #1772f6;
}

.media-platform-icon[data-platform*="抖音"] {
  background: #111827;
}

.media-platform-icon[data-platform*="小红书"] {
  background: #ff2442;
}

.media-platform-copy {
  min-width: 0;
}

.media-platform-copy strong,
.media-platform-copy small {
  display: block;
}

.media-platform-copy strong {
  color: var(--ink);
  font-size: 17px;
}

.media-platform-copy small {
  margin-top: 4px;
  color: var(--muted);
}

.media-platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.media-platform-link[aria-expanded="true"] {
  background: var(--accent-soft);
  border-color: rgba(0, 47, 167, 0.28);
}

.qr-toggle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 14px;
  color: var(--ink);
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.qr-toggle:hover,
.qr-toggle:focus-visible {
  background: var(--accent-soft);
  border-color: rgba(0, 47, 167, 0.22);
}

.qr-toggle[aria-expanded="true"] {
  background: var(--accent-soft);
  border-color: rgba(0, 47, 167, 0.28);
}

.qr-toggle-copy,
.qr-toggle-title,
.qr-toggle small {
  display: block;
}

.qr-toggle-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.qr-toggle-title {
  font-size: 20px;
  font-weight: 700;
}

.qr-toggle small {
  margin-top: 4px;
  color: var(--muted);
}

.qr-toggle-action {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: var(--accent);
  white-space: nowrap;
  background: var(--paper);
  border: 1px solid rgba(0, 47, 167, 0.18);
  border-radius: 999px;
}

.qr-box {
  margin: 10px 0 0;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.qr-box-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.qr-box-header strong,
.qr-box-header small {
  display: block;
}

.qr-box-header small {
  margin-top: 4px;
  color: var(--muted);
}

.qr-close {
  min-height: 40px;
  padding: 8px 14px;
  color: var(--ink);
  font: inherit;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.qr-box-media {
  max-width: 320px;
  margin: 0 auto;
}

.media-platform-qr {
  margin-top: 14px;
}

.qr-box img,
.book-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.qr-placeholder {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 24px;
  color: var(--muted);
  background: var(--wash);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.site-footer {
  padding: 26px clamp(18px, 5vw, 70px);
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.footer-inner p,
.footer-inner small {
  margin: 0;
}

.footer-inner p {
  color: var(--ink);
  font-weight: 700;
}

.footer-inner small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.footer-notes {
  display: grid;
  gap: 6px;
  text-align: right;
}

.article-page,
.center-page {
  min-height: 80svh;
  padding: 90px clamp(18px, 5vw, 70px);
  background: var(--wash);
}

.article-body,
.center-page section {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-content {
  margin: 34px 0;
  color: var(--ink-soft);
}

.article-cover {
  display: block;
  width: 100%;
  max-height: 360px;
  margin: 26px 0 0;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.article-content h2,
.article-content h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  line-height: 1.25;
}

.article-content p {
  margin: 0 0 14px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.admin-login-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--wash);
}

.admin-login {
  width: min(440px, 100%);
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-login h1 {
  margin: 0;
}

.admin-login label {
  display: block;
  margin: 16px 0;
  color: var(--ink-soft);
  font-weight: 800;
}

.admin-login input {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.error-message {
  margin: 16px 0;
  padding: 10px 12px;
  color: #8f1d1d;
  background: #fff1f1;
  border: 1px solid #ffd4d4;
  border-radius: var(--radius);
}

.success-message {
  margin: 16px 0;
  padding: 10px 12px;
  color: #0f6b45;
  background: #ecfff6;
  border: 1px solid #bcebd3;
  border-radius: var(--radius);
}

.muted-text {
  color: var(--muted);
}

.admin-shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  background: var(--wash);
}

.admin-sidebar {
  padding: 22px;
  background: var(--paper);
  border-right: 1px solid var(--line);
}

.admin-sidebar nav {
  display: grid;
  gap: 6px;
  margin-top: 28px;
}

.admin-sidebar nav a {
  padding: 10px 12px;
  color: var(--muted);
  text-decoration: none;
  border-radius: var(--radius);
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
  color: var(--ink);
  background: var(--wash);
}

.admin-main {
  padding: 28px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}

.admin-card {
  margin-bottom: 18px;
  padding: 22px;
}

.admin-card.narrow-card {
  max-width: 620px;
}

.admin-card h2 {
  margin: 0 0 16px;
}

.admin-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-metrics article {
  padding: 18px;
  box-shadow: none;
}

.admin-metrics strong {
  display: block;
  font-size: 28px;
}

.admin-metrics span {
  color: var(--muted);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.admin-table th {
  color: var(--muted);
  background: var(--wash);
}

.admin-form label {
  display: block;
  margin: 16px 0;
  color: var(--ink-soft);
  font-weight: 800;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-form textarea {
  min-height: 96px;
  resize: vertical;
}

.admin-form select {
  min-height: 48px;
}

.field-hint {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.admin-form button,
.table-actions button,
.inline-admin-form button {
  cursor: pointer;
}

.admin-card.wide-card {
  max-width: 980px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact-grid {
  padding: 12px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.check-line {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin: 14px 0 !important;
}

.check-line input {
  width: 18px !important;
  height: 18px;
  margin: 0 !important;
}

.inline-check {
  white-space: nowrap;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.admin-table small,
.admin-table strong {
  display: block;
}

.admin-table small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.table-actions a,
.table-actions button,
.inline-admin-form button,
.text-danger-button {
  min-height: 32px;
  padding: 0 10px;
  color: var(--ink);
  text-decoration: none;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.table-actions form {
  margin: 0;
}

.danger-link,
.table-actions .danger-link {
  color: #9f1d1d;
  border-color: #ffd4d4;
  background: #fff6f6;
}

.danger-button {
  background: #9f1d1d !important;
}

.text-danger-button {
  color: #9f1d1d;
}

.bordered-form {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.bordered-form + .bordered-form {
  margin-top: 16px;
}

.inline-admin-form {
  display: grid;
  grid-template-columns: minmax(90px, 0.8fr) minmax(90px, 0.8fr) minmax(160px, 1.2fr) minmax(110px, 0.9fr) minmax(150px, 1fr) 82px 86px 72px 72px;
  gap: 10px;
  align-items: center;
  margin: 12px 0;
  padding: 12px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.inline-admin-form input,
.inline-admin-form select {
  min-width: 0;
  margin-top: 0;
}

.helper-box {
  margin: 12px 0 18px;
  padding: 12px;
  color: var(--muted);
  background: var(--wash);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.field-help {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.module-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin: 16px 0 0;
  border: 1px solid var(--line);
}

.order-input {
  width: 76px;
  min-width: 76px;
  margin-top: 0;
  padding: 8px 10px;
}

.table-footer-actions {
  align-items: center;
  margin-top: 18px;
}

.compact-check {
  min-height: auto;
  margin: 0;
}

.order-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.order-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.order-line span {
  min-width: 0;
  font-weight: 700;
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  padding: 10px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

.editor-toolbar button {
  min-height: 34px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.article-editor {
  min-height: 330px;
  padding: 18px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  outline: none;
}

.article-editor:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 117, 111, 0.12);
}

.article-editor h2,
.article-editor h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  line-height: 1.25;
}

.article-editor p {
  margin: 0 0 12px;
}

.article-editor ul,
.article-editor ol {
  margin: 0 0 14px;
  padding-left: 22px;
}

.article-editor img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.upload-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}

.upload-grid article {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.upload-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.upload-grid input {
  width: 100%;
  padding: 9px;
  color: var(--muted);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.module-setting-list {
  display: grid;
  gap: 12px;
}

.module-setting-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px 120px;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.module-setting-row strong,
.module-setting-row small {
  display: block;
}

.module-setting-row small {
  margin-top: 4px;
  color: var(--muted);
}

.preview-frame {
  overflow: hidden;
  background: #dfe6f0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.preview-frame iframe {
  display: block;
  width: 100%;
  height: 680px;
  background: var(--paper);
  border: 0;
}

.mobile-preview {
  width: min(390px, 100%);
  margin: 0 auto;
}

.mobile-preview iframe {
  height: 720px;
}

.desktop-preview iframe {
  height: 620px;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-bottom,
  .signal-inner,
  .hero-spotlight-card {
    grid-template-columns: 1fr;
  }

  .hero-spotlight-card {
    width: min(100%, 360px);
    margin-left: 0;
  }

  .hero-facts,
  .pain-grid,
  .service-grid,
  .proof-grid,
  .book-showcase,
  .insight-list,
  .method-layout,
  .contact-layout,
  .section-heading.split,
  .admin-shell,
  .form-grid.two,
  .module-setting-row {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .admin-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-card {
    overflow-x: auto;
  }

  .admin-table {
    min-width: 760px;
  }

  .inline-admin-form {
    grid-template-columns: 1fr;
  }

  .qr-toggle,
  .qr-box-header {
    flex-direction: column;
  }

  .contact-direct-card,
  .media-platform-head {
    align-items: flex-start;
  }

  .media-platform-actions {
    flex-direction: column;
  }

  .qr-toggle-action,
  .qr-close,
  .contact-card-action,
  .media-platform-link {
    width: 100%;
    text-align: center;
  }

  .method-map,
  .admin-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-module-wrap .section::before {
    top: 20px;
    right: 18px;
    font-size: 64px;
  }

  .home-module-signals {
    order: 1;
  }

  .home-module-positioning {
    order: 2;
  }

  .home-module-method {
    order: 3;
  }

  .home-module-books {
    order: 4;
  }

  .home-module-services {
    order: 5;
  }

  .home-module-cases {
    order: 6;
  }

  .home-module-insights {
    order: 7;
  }

  .home-module-contact {
    order: 8;
  }

  .footer-inner,
  .admin-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-notes {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 64px;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-meta-row {
    gap: 8px;
  }

  .hero-meta-row span {
    width: 100%;
    justify-content: center;
  }

  .hero-lead {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-facts,
  .method-map,
  .admin-metrics {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    margin-top: 0;
  }

  .signal-inner {
    gap: 12px;
  }

  .signal-list {
    gap: 8px;
  }

  .contact-panel,
  .contact-group,
  .media-platform-card,
  .qr-box {
    padding: 16px;
  }

  .contact-group-header h3 {
    font-size: 20px;
  }

  .section,
  .contact-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .home-module-wrap .section::before {
    top: 18px;
    right: 18px;
    font-size: 42px;
  }

  .section-heading h2,
  .method-copy h2,
  .contact-section h2,
  .article-body h1,
  .admin-topbar h1 {
    font-size: 28px;
  }

  .article-page {
    padding-top: 28px;
  }

  .article-body {
    padding: 22px;
  }

  .admin-main,
  .admin-sidebar {
    padding: 18px;
  }
}

@media (min-width: 981px) {
  .hero-layout.has-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: center;
  }

  .hero-layout.has-spotlight .hero-copy h1,
  .hero-layout.has-spotlight .hero-lead {
    max-width: none;
  }

  .hero-layout.has-spotlight .hero-spotlight {
    margin-top: 0;
  }
}

/* Front-end refresh: Swiss dossier system */
:root {
  --ink: #111827;
  --ink-soft: #243247;
  --muted: #5f6b7b;
  --paper: #ffffff;
  --wash: #f7f7f8;
  --line: #d9dde5;
  --accent: #002fa7;
  --accent-soft: #edf3ff;
  --radius: 3px;
  --max: 1280px;
}

body {
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.site-header {
  height: 68px;
  padding: 0 clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.04);
}

.brand {
  gap: 10px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  font-size: 18px;
}

.brand-text strong {
  font-size: 15px;
}

.brand-text small {
  font-size: 10px;
  letter-spacing: 0.09em;
}

.site-nav {
  gap: 18px;
  font-size: 12px;
}

.nav-cta,
.btn {
  min-height: 44px;
  border-radius: 2px;
}

.nav-cta,
.btn-primary {
  box-shadow: inset 0 -2px 0 rgba(17, 24, 39, 0.12);
}

.btn-secondary {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 47, 167, 0.2);
}

.hero {
  min-height: 60svh;
  padding: 92px clamp(18px, 4vw, 56px) 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.hero-overlay {
  background:
    linear-gradient(rgba(0, 47, 167, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.028) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.54;
}

.hero-layout {
  display: grid;
  gap: 32px;
  align-items: start;
}

.hero-copy {
  max-width: 860px;
}

.hero-meta-row {
  gap: 8px;
  margin-bottom: 14px;
  font-size: 10px;
  letter-spacing: 0.09em;
}

.hero-meta-row span {
  min-height: 28px;
  padding: 0 9px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 0;
}

.hero h1 {
  max-width: 17ch;
  font-size: clamp(24px, 2.6vw, 42px);
  line-height: 1.02;
}

.hero-lead {
  max-width: 60ch;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: clamp(13.5px, 0.95vw, 16px);
  line-height: 1.78;
}

.hero-actions {
  gap: 12px;
  margin-top: 20px;
  align-items: center;
}

.hero-actions .btn {
  min-height: 42px;
  padding: 0 16px;
}

.hero-actions .btn-secondary {
  padding: 0 2px;
  color: var(--accent);
  background: transparent;
  border-color: transparent;
  box-shadow: inset 0 -1px 0 rgba(0, 47, 167, 0.34);
}

.hero-bottom {
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 16px;
  margin-top: 22px;
  align-items: stretch;
}

.hero-facts div {
  min-height: 76px;
  padding: 12px 12px 14px;
  background: rgba(255, 255, 255, 0.78);
  border-top: 2px solid var(--accent);
  border-radius: 2px;
}

.hero-facts dt {
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1;
}

.hero-facts dd {
  max-width: 18ch;
  font-size: 12px;
  line-height: 1.45;
}

.hero-brief {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 14px 14px 12px;
  background: rgba(255, 255, 255, 0.78);
  border-top: 1px solid var(--accent);
  border-radius: 0;
}

.hero-brief-label {
  font-size: 10px;
}

.hero-brief-list {
  gap: 8px;
  margin-top: 12px;
}

.hero-brief-list li {
  padding-top: 8px;
  font-size: 12px;
  line-height: 1.45;
}

.hero-spotlight-card {
  width: 100%;
  max-width: 268px;
  padding: 14px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
}

.hero-spotlight-badge {
  font-size: 11px;
}

.hero-spotlight-card img {
  aspect-ratio: 0.72;
  object-fit: cover;
  background: var(--wash);
  border-radius: 0;
}

.hero-spotlight-copy strong {
  font-size: 16px;
  line-height: 1.24;
}

.text-link {
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

.signal-strip {
  background: var(--wash);
}

.signal-inner {
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 16px;
  padding: 12px clamp(18px, 4vw, 56px);
}

.signal-label {
  color: var(--ink);
  font-size: 11px;
}

.signal-list {
  gap: 8px;
}

.signal-inner span {
  padding: 6px 9px;
  background: var(--paper);
  border-color: rgba(17, 24, 39, 0.1);
  font-size: 11px;
  font-weight: 700;
}

.section {
  padding: 56px clamp(18px, 4vw, 56px);
}

.home-module-wrap .section::before {
  top: 22px;
  right: clamp(18px, 4vw, 48px);
  color: rgba(0, 47, 167, 0.045);
  font-size: clamp(28px, 4.8vw, 60px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 24px;
}

.section-heading.split {
  gap: 24px;
  align-items: start;
}

.section-heading h2,
.method-copy h2,
.contact-section h2,
.article-body h1,
.admin-topbar h1 {
  font-size: clamp(20px, 1.85vw, 30px);
  line-height: 1.16;
}

.section-heading p,
.method-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.section-heading .eyebrow,
.method-copy .eyebrow,
.contact-section .eyebrow {
  margin-bottom: 12px;
  font-size: 11px;
}

.pain-grid,
.service-grid,
.proof-grid,
.book-showcase,
.insight-list {
  gap: 16px;
}

.pain-grid article,
.service-grid article,
.proof-grid article,
.book-feature,
.insight-list article {
  padding: 18px;
  border-radius: 2px;
}

.pain-grid article::before,
.service-grid article::before,
.proof-grid article::before,
.book-feature::before,
.insight-list article::before {
  width: 36px;
  height: 1px;
  margin-bottom: 16px;
}

.pain-grid span,
.service-topline,
.book-feature p,
.insight-meta span {
  font-size: 11px;
  letter-spacing: 0.08em;
}

.book-feature p {
  margin: 0;
}

.pain-grid h3,
.service-grid h3,
.proof-grid h3,
.book-feature h3,
.insight-list h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.18;
}

.pain-grid p,
.service-grid p,
.proof-grid p,
.insight-list p,
.book-feature span {
  font-size: 13px;
  line-height: 1.68;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-grid ul {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.service-grid li + li {
  margin-top: 8px;
}

.method-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: start;
}

.method-copy {
  padding-right: 20px;
}

.method-map {
  gap: 12px;
}

.method-map article {
  min-height: 98px;
  padding: 16px;
  border-top: 2px solid var(--accent);
  border-radius: 2px;
}

.method-map strong {
  font-size: 15px;
}

.book-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.book-feature {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.book-feature::before {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.book-feature.no-cover {
  grid-template-columns: 1fr;
}

.book-cover-wrap {
  max-width: 132px;
}

.book-cover-wrap img,
.book-feature img {
  aspect-ratio: 0.72;
  object-fit: cover;
  background: var(--paper);
  border-radius: 0;
}

.book-copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.book-copy .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-badge,
.case-subtitle {
  border-radius: 2px;
  font-size: 11px;
}

.insight-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-list article {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.insight-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 4px;
}

.insight-date {
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.insight-list h3 a {
  text-decoration: none;
}

.insight-list h3 a:hover,
.insight-list h3 a:focus-visible {
  color: var(--accent);
}

.contact-section {
  padding: 72px clamp(18px, 4vw, 56px);
}

.contact-layout {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 30px;
  align-items: start;
}

.contact-panel {
  gap: 14px;
  padding: 0;
  background: transparent;
  border: 0;
}

.contact-group {
  padding: 18px;
  background: var(--paper);
  border-radius: 2px;
}

.contact-group-header {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-group-header h3 {
  font-size: 18px;
}

.contact-direct-card,
.media-platform-card,
.qr-toggle,
.qr-box {
  border-radius: 2px;
}

.contact-direct-card {
  align-items: flex-start;
  padding: 16px;
}

.contact-direct-copy strong {
  font-size: 17px;
}

.contact-card-action,
.media-platform-link,
.qr-toggle-action,
.qr-close {
  min-height: 40px;
  border-radius: 2px;
  white-space: normal;
}

.qr-toggle {
  padding: 16px;
}

.qr-toggle-title {
  font-size: 18px;
}

.media-platform-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.media-platform-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.media-platform-icon {
  width: 40px;
  height: 40px;
  border-radius: 2px;
}

.media-platform-actions {
  margin-top: auto;
  padding-top: 14px;
}

.site-footer {
  padding: 20px clamp(18px, 4vw, 56px) 24px;
}

@media (max-width: 1200px) {
  .proof-grid,
  .insight-list,
  .media-platform-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-nav {
    inset: 68px 0 auto;
    padding: 16px 18px 18px;
    gap: 10px;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 26px;
  }

  .hero-layout.has-spotlight,
  .hero-bottom,
  .method-layout,
  .service-grid,
  .book-showcase,
  .proof-grid,
  .insight-list,
  .contact-layout,
  .media-platform-list,
  .order-panel-grid,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero h1,
  .hero-lead,
  .hero-layout.has-spotlight .hero-copy h1,
  .hero-layout.has-spotlight .hero-lead {
    max-width: none;
  }

  .hero-spotlight-card {
    max-width: 340px;
    margin-left: 0;
  }

  .method-copy {
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 64px;
  }

  .site-nav {
    inset: 64px 0 auto;
  }

  .hero {
    padding-top: 88px;
    padding-bottom: 18px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-meta-row {
    gap: 8px;
  }

  .hero-meta-row span {
    width: auto;
    justify-content: flex-start;
  }

  .hero-lead {
    display: block;
    font-size: 13px;
  }

  .section-heading h2,
  .method-copy h2,
  .contact-section h2,
  .article-body h1,
  .admin-topbar h1 {
    font-size: 22px;
    line-height: 1.18;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-facts,
  .method-map,
  .admin-metrics,
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .book-feature {
    grid-template-columns: 1fr;
  }

  .book-cover-wrap {
    max-width: 164px;
  }

  .contact-panel,
  .contact-group,
  .media-platform-card,
  .qr-box {
    padding: 16px;
  }

  .section,
  .contact-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

@media (min-width: 981px) {
  .hero-layout.has-spotlight {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 32px;
    align-items: start;
  }
}
