/* ============================================================
   drsujeeth.com  ·  Design System  ·  Components
   All reusable UI blocks extracted from the Hernia-Page-V2
   prototype. Requires tokens.css + base.css.
   ============================================================ */

/* ============================================================
   1. UTILITY BAR (top dark strip)
   ============================================================ */
.util {
  background: var(--ink);
  color: #b8cee0;
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.util .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.util a { color: #d6e3ed; }
.util a:hover { color: #fff; }
.util .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #2e5876;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}
.util .left  { display: inline-flex; align-items: center; gap: 8px; }
.util .right { display: inline-flex; align-items: center; gap: 14px; }
@media (max-width: 640px) {
  .util .left span:nth-child(3) { display: none; }
}

/* ============================================================
   2. SITE HEADER (frosted sticky nav)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-fixed);
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(160%) var(--blur-lg);
  -webkit-backdrop-filter: saturate(160%) var(--blur-lg);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 16px 6px 6px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--line);
  transition: box-shadow var(--dur-fast) var(--ease);
}
.brand-mark:hover { box-shadow: var(--shadow-sm); }
.brand-mark img {
  width: 44px; height: 44px;
  border-radius: 8px;
  box-shadow: none;
  display: block;
}
.brand-mark .name {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.brand-mark .name small {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 26px; font-size: var(--fs-sm); }
.nav a { color: var(--ink-2); font-weight: 500; position: relative; padding: 4px 0; }
.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-mid) var(--ease);
  border-radius: 2px;
}
.nav a:not(.btn):hover { color: var(--brand); }
.nav a:not(.btn):hover::after { transform: scaleX(1); }
.nav .btn { margin-left: 6px; }
@media (max-width: 880px) { .nav a:not(.btn) { display: none; } }

/* ============================================================
   3. BUTTONS (with shine sweep)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  font-family: var(--font-sans);
  letter-spacing: -0.005em;
  isolation: isolate;
}
.btn svg, .btn i { width: 17px; height: 17px; flex-shrink: 0; position: relative; z-index: 1; font-size: 17px; }
.btn > * { position: relative; z-index: 1; }
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(120%); }
.btn-ghost::after, .btn-call::after {
  background: linear-gradient(120deg, transparent 30%, rgba(15,76,129,.10) 50%, transparent 70%);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 16px rgba(15,76,129,.28), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:hover {
  background: var(--brand-700);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15,76,129,.36), inset 0 1px 0 rgba(255,255,255,.18);
}

.btn-ghost {
  background: #fff;
  color: var(--brand);
  border-color: var(--brand-100);
}
.btn-ghost:hover {
  background: var(--brand-50);
  color: var(--brand-700);
  border-color: var(--brand-300);
  transform: translateY(-1px);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 16px rgba(37,211,102,.25);
}
.btn-wa:hover {
  background: #1ab855;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(37,211,102,.32);
}

.btn-call {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.btn-call:hover {
  background: var(--bg-soft);
  border-color: #d0d8e1;
  transform: translateY(-1px);
}

.btn-light { background: rgba(255,255,255,.94); color: var(--brand); }
.btn-light:hover { background: #fff; color: var(--brand-700); }

.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-lg { padding: 15px 26px; font-size: 16px; }

/* ============================================================
   4. PILL (status badge with live ping)
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--brand-100);
  color: var(--brand);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  box-shadow: var(--shadow-xs);
}
.pill .ping {
  position: relative;
  width: 8px; height: 8px;
}
.pill .ping::before, .pill .ping::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
}
.pill .ping::after {
  animation: ping 1.8s cubic-bezier(0,0,0.2,1) infinite;
  opacity: 0;
}
@keyframes ping {
  0%   { transform: scale(1);   opacity: .55; }
  80%, 100% { transform: scale(2.2); opacity: 0; }
}

/* ============================================================
   5. HERO BLOCK
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 var(--space-20);
  background:
    radial-gradient(1100px 700px at 88% -8%, rgba(15,76,129,.10), transparent 55%),
    radial-gradient(700px 500px at -8% 18%, rgba(6,182,164,.06), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15,76,129,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0;
  opacity: .35;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* .crumb — global utility (also used by interior body sections, not just hero) */
.crumb { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--brand); }
.crumb .sep { margin: 0 8px; color: #b9c8d6; }
.crumb [aria-current="page"] { color: var(--ink); font-weight: 500; }

/* ============================================================
   6. TRUST ROW (hero stat strip)
   ============================================================ */
.trust-row {
  display: flex;
  gap: 24px 28px;
  flex-wrap: wrap;
  margin: 26px 0 30px;
  padding: 18px 22px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  backdrop-filter: var(--blur-sm);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.trust-item strong {
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-serif);
}
.trust-item .lbl {
  font-size: 12.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-weight: 600;
}
.trust-item .sep { width: 1px; height: 28px; background: var(--line); }
.stars { color: var(--gold); letter-spacing: 1.5px; font-size: 13px; }

/* ============================================================
   7. HERO CARD (offer-side panel with gradient hairline)
   ============================================================ */
.hero-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(15,76,129,.4), rgba(6,182,164,.25), rgba(15,76,129,.0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: .6;
}
.hero-ribbon {
  position: absolute;
  top: -14px; right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-700));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 20px rgba(6,182,164,.32), inset 0 1px 0 rgba(255,255,255,.25);
}

/* ============================================================
   8. DOCTOR STRIP (credentials line under hero)
   ============================================================ */
.doc-strip {
  position: relative;
  padding: 36px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.doc-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 200px at 100% 50%, var(--brand-50), transparent 60%),
    radial-gradient(400px 200px at 0% 50%, var(--accent-50), transparent 70%);
  opacity: .6;
  pointer-events: none;
}
.doc-strip .wrap { position: relative; }
.doc-card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 28px;
  align-items: center;
}
@media (max-width: 780px) {
  .doc-card { grid-template-columns: 84px 1fr; }
  .doc-card .doc-cta { grid-column: 1 / -1; }
}
.doc-card img {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
}
@media (max-width: 780px) { .doc-card img { width: 84px; height: 84px; } }
.doc-name {
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.doc-name .badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-700);
  background: var(--accent-50);
  padding: 3px 8px;
  border-radius: var(--r-pill);
  margin-left: 10px;
  vertical-align: middle;
  letter-spacing: var(--tracking-wide);
}
.doc-cred {
  color: var(--brand);
  font-size: 13px;
  margin: 4px 0 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.doc-cred span { display: inline-block; margin-right: 14px; }
.doc-meta {
  display: flex;
  gap: 8px 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-soft);
}
.doc-meta span { display: inline-flex; align-items: center; gap: 6px; }
.doc-meta b { color: var(--ink); font-weight: 700; }
.doc-meta svg { width: 14px; height: 14px; color: var(--muted); }
.doc-cta { display: flex; gap: 8px; }

/* ============================================================
   9. SECTION SHELL + ASIDE
   ============================================================ */
section.body {
  padding: var(--space-20) 0;
  position: relative;
}
section.body.alt  { background: var(--bg-soft); }
section.body.warm { background: var(--bg-warm); }
section.body.alt::before,
section.body.warm::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}
.section-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) {
  .section-grid { grid-template-columns: 1fr; gap: 32px; }
}

.aside-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-sm);
}
.aside-card h4 {
  margin: 0 0 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-sans);
}
.aside-card .stack { display: grid; gap: 11px; }
.aside-card .stack p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.aside-card .stack svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; margin-top: 1px; }
.aside-card .note {
  font-size: 13px;
  color: var(--ink);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.aside-card .note svg { width: 18px; height: 18px; color: var(--danger); flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   10. PULL QUOTE (editorial blockquote)
   ============================================================ */
.pull {
  position: relative;
  margin: 28px 0 0;
  padding: 24px 26px 24px 32px;
  border-left: 3px solid var(--brand);
  background: linear-gradient(90deg, var(--brand-50), transparent 70%);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  font-variation-settings: "opsz" 36, "SOFT" 50;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.pull::before {
  content: '\201C';
  position: absolute;
  top: -8px; left: 16px;
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--brand);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.pull em { font-style: italic; color: var(--brand-700); }

/* ============================================================
   11. CARD GRIDS (types, related, steps)
   ============================================================ */
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
@media (max-width: 920px) { .types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .types-grid { grid-template-columns: 1fr; } }

.type-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  transition: transform var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease),
              border-color var(--dur-mid) var(--ease);
  overflow: hidden;
}
.type-card::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.type-card:hover::before { transform: scaleX(1); }
.type-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--dur-mid) var(--ease);
}
.type-card .icon svg, .type-card .icon i { width: 22px; height: 22px; font-size: 22px; }
.type-card:hover .icon { background: var(--brand); color: #fff; }
.type-card h3 { margin-bottom: 8px; font-size: 17px; }
.type-card p  { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.6; }
.type-card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 14px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

/* ---------- STEPS TIMELINE ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-100), var(--brand), var(--brand-100));
  z-index: 0;
}
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}
.step {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  text-align: center;
  transition: transform var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease);
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step .num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-700));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-brand);
  border: 4px solid #fff;
}
.step h3 { margin-bottom: 8px; font-size: 17px; }
.step p  { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.6; }

/* ---------- BENEFITS LIST (2-col ticks) ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
  margin-top: 26px;
}
@media (max-width: 720px) { .benefits { grid-template-columns: 1fr; } }
.benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.benefit:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 720px) {
  .benefit { border-bottom: 1px solid var(--line); }
  .benefit:last-child { border-bottom: none; }
}
.benefit .check {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  background: var(--accent-50);
  color: var(--accent-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit .check svg { width: 13px; height: 13px; }
.benefit p {
  margin: 0;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.55;
  font-weight: 500;
}

/* ============================================================
   12. VIDEO CARD (16:9 with animated play button)
   ============================================================ */
.video-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(800px 400px at 20% 30%, rgba(15,76,129,.6), transparent 60%),
    linear-gradient(135deg, #0b1e2e 0%, #0f4c81 60%, #1a3a5a 100%);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #cfdce8;
  cursor: pointer;
  transition: transform var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease);
  box-shadow: var(--shadow-md);
}
.video-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .5;
}
.video-card .play {
  position: relative;
  width: 86px; height: 86px;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0,0,0,.32);
  transition: transform var(--dur-mid) var(--ease);
}
.video-card:hover .play { transform: scale(1.08); }
.video-card .play svg { width: 32px; height: 32px; margin-left: 4px; }
.video-card .play::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(.95); opacity: 1; }
  100% { transform: scale(1.4);  opacity: 0; }
}
.video-card .caption {
  position: absolute;
  left: 22px; bottom: 20px; right: 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.video-card .caption .label { font-weight: 600; color: #fff; font-size: 15px; line-height: 1.3; }
.video-card .caption .meta  { font-size: 12px; opacity: .85; margin-top: 4px; }
.video-card .badge-yt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,.6);
  color: #fff;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
}
.video-card .badge-yt::before {
  content: '';
  width: 6px; height: 6px;
  background: #ff4444;
  border-radius: 50%;
}

/* ============================================================
   13. REVIEW CARDS (testimonial grid)
   ============================================================ */
.review-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 920px) { .review-strip { grid-template-columns: 1fr; } }
.review {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease);
  overflow: hidden;
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review .quote-mark {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 700;
  color: var(--brand-50);
  line-height: 1;
  pointer-events: none;
  font-variation-settings: "opsz" 144;
}
.review .stars { font-size: 16px; position: relative; z-index: 1; }
.review blockquote {
  margin: 0;
  font-family: var(--font-serif);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
  position: relative;
  z-index: 1;
  font-variation-settings: "opsz" 36;
}
.review .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.review .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-xs);
}
.review .who-text { line-height: 1.2; }
.review .who-text b {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.review .who-text span {
  font-size: 12px;
  color: var(--accent-700);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.review .who-text span svg { width: 12px; height: 12px; }

/* ============================================================
   14. PRICE TABLE
   ============================================================ */
.price-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.price-shell h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}
.price-shell .sub {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 18px;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  text-align: left;
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  transition: background var(--dur-fast) var(--ease);
}
.price-table th {
  font-weight: 700;
  color: var(--muted);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover td { background: var(--bg-soft); }
.price-table td.amt {
  font-weight: 700;
  color: var(--brand-700);
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: 16px;
  text-align: right;
  letter-spacing: -0.01em;
}
.price-table td.name { color: var(--ink); font-weight: 500; }
.price-foot {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: 12.5px;
  color: var(--muted);
}
.price-foot svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ============================================================
   15. FAQ (accessible details/summary with chevron)
   ============================================================ */
.faq { margin-top: 28px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin-bottom: 12px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq details[open] { border-color: var(--brand-100); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  color: var(--ink);
  font-size: 16px;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-radius: var(--r-lg);
  transition: color var(--dur-fast) var(--ease);
}
.faq summary:hover { color: var(--brand); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  flex: 0 0 32px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-mid) var(--ease), background .25s var(--ease);
}
.faq summary .chev svg { width: 14px; height: 14px; }
.faq details[open] summary .chev {
  transform: rotate(180deg);
  background: var(--brand);
  color: #fff;
}
.faq .ans {
  padding: 0 26px 24px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: var(--lh-relaxed);
}

/* ============================================================
   16. FINAL CTA (deep blue band with dot grid)
   ============================================================ */
.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(255,255,255,.08), transparent 55%),
    radial-gradient(700px 400px at 80% 100%, rgba(6,182,164,.18), transparent 60%),
    linear-gradient(135deg, var(--brand-700) 0%, var(--brand) 55%, #134a7a 100%);
  color: #fff;
  padding: var(--space-20) 0;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .8;
  pointer-events: none;
}
.final-cta .wrap { position: relative; }
.final-cta .kicker { color: rgba(255,255,255,.85); }
.final-cta .kicker::before { background: rgba(255,255,255,.8); }
.final-cta h2 {
  color: #fff;
  max-width: 22ch;
  margin: 0 auto 14px;
  font-size: clamp(28px, 3.6vw, 44px);
}
.final-cta p {
  color: #c8dbed;
  max-width: 58ch;
  margin: 0 auto 28px;
  font-size: 17px;
}
.final-cta .row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.04);
}
.final-cta .btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

/* ============================================================
   17. RELATED GRID (cross-link cards)
   ============================================================ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 920px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
.related-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  transition: all .25s var(--ease);
  display: block;
}
.related-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: transparent;
  text-decoration: none;
}
.related-card .ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--brand-50);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.related-card .ico svg, .related-card .ico i { width: 18px; height: 18px; font-size: 18px; }
.related-card .ttl { font-weight: 600; color: var(--ink); font-size: 15px; letter-spacing: -0.005em; }
.related-card .sub { font-size: 13px; color: var(--muted); margin-top: 3px; }

/* ============================================================
   18. FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  color: #a3bbcf;
  padding: 60px 0 28px;
  font-size: var(--fs-sm);
}
footer h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-kicker);
  font-weight: 700;
}
footer a { color: #a3bbcf; }
footer a:hover { color: #fff; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 780px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.foot-brand img { width: 44px; height: 44px; border-radius: 10px; }
.foot-brand .name { color: #fff; font-weight: 700; font-size: 16px; }
.foot-brand .name small { display: block; font-weight: 500; font-size: 12px; color: #7da0bd; }

/* New canonical footer brand tile (white card pops on dark footer) */
.foot-brand-tile {
  background: #fff;
  padding: 12px;
  border-radius: var(--r-md);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-xs);
}
.foot-brand-tile img {
  width: 56px;
  height: 56px;
  display: block;
  border-radius: 8px;
}
.foot-brand-tile .foot-name {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.2;
  font-weight: 700;
}
.foot-brand-tile .foot-name small {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-meta {
  border-top: 1px solid #1a3349;
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #6c8ba6;
}
.foot-meta a { color: #6c8ba6; }

/* ============================================================
   19. MOBILE STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  background: rgba(255,255,255,.96);
  backdrop-filter: var(--blur-md);
  border-top: 1px solid var(--line);
  padding: 10px 12px;
  display: none;
  box-shadow: 0 -8px 24px rgba(11,30,46,.08);
}
.sticky-cta .row {
  display: flex;
  gap: 8px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.sticky-cta .btn {
  flex: 1;
  justify-content: center;
  padding: 12px 8px;
  font-size: 14px;
}
@media (max-width: 720px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 76px; }
}

/* ============================================================
   20. MOBILE NAV DRAWER (slide-down panel, CSS-only via <details>)
   HTML pattern:
   <details class="nav-mobile">
     <summary aria-label="Open menu"><span class="ham"><span></span></span></summary>
     <div class="nav-drawer">
       <a href="/">Home</a> ... etc
     </div>
   </details>
   ============================================================ */
.nav-mobile { display: none; }
@media (max-width: 880px) {
  .nav > a:not(.btn) { display: none; }
  .nav-mobile {
    display: block;
    position: relative;
  }
  .nav-mobile summary {
    list-style: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    background: var(--bg-soft);
    border: 1px solid var(--line);
    transition: background var(--dur-fast) var(--ease);
  }
  .nav-mobile summary:hover { background: var(--brand-50); }
  .nav-mobile summary::-webkit-details-marker { display: none; }
  .nav-mobile summary::marker { content: ''; }

  .nav-mobile .ham {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
  }
  .nav-mobile .ham::before,
  .nav-mobile .ham > span,
  .nav-mobile .ham::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s var(--ease), top .25s var(--ease), opacity .15s var(--ease);
  }
  .nav-mobile .ham::before { top: 0; }
  .nav-mobile .ham > span { top: 6px; }
  .nav-mobile .ham::after { top: 12px; }

  .nav-mobile[open] .ham::before { top: 6px; transform: rotate(45deg); }
  .nav-mobile[open] .ham::after { top: 6px; transform: rotate(-45deg); }
  .nav-mobile[open] .ham > span { opacity: 0; }

  .nav-drawer {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    background: rgba(255,255,255,.98);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 14px;
    min-width: 240px;
    display: grid;
    gap: 4px;
    animation: drawerSlideDown .28s var(--ease) both;
    z-index: var(--z-fixed);
  }
  @keyframes drawerSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-drawer a {
    padding: 11px 14px;
    border-radius: var(--r-sm);
    color: var(--ink);
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  }
  .nav-drawer a:hover { background: var(--brand-50); color: var(--brand); }
  .nav-drawer a.btn { margin-top: 6px; justify-content: center; }
  .nav-drawer hr {
    border: none;
    height: 1px;
    background: var(--line);
    margin: 6px 4px;
  }
}

/* ============================================================
   21. FEATURE ROW (50/50 text + image, alternating with .flip)
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin: 56px 0;
}
.feature-row .feat-text .kicker { margin-bottom: 12px; }
.feature-row .feat-text h2,
.feature-row .feat-text h3 {
  margin-bottom: 16px;
  letter-spacing: -0.018em;
}
.feature-row .feat-text p {
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 48ch;
}
.feature-row .feat-media {
  position: relative;
}
.feature-row .feat-media img,
.feature-row .feat-media video {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}
.feature-row .feat-media.framed {
  padding: 14px;
  background: linear-gradient(135deg, var(--brand-50), #fff);
  border-radius: var(--r-xl);
}
.feature-row.flip .feat-text { order: 2; }
.feature-row.flip .feat-media { order: 1; }
@media (max-width: 820px) {
  .feature-row,
  .feature-row.flip {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-row.flip .feat-text,
  .feature-row.flip .feat-media { order: initial; }
}

/* ============================================================
   22. STAT GRID (big editorial numerals)
   ============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
@media (max-width: 880px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item {
  text-align: center;
  padding: 28px 18px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  transition: transform var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease);
}
.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.stat-item .num {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  color: var(--brand-700);
  line-height: 1;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 144;
  display: block;
  margin-bottom: 8px;
}
.stat-item .num .unit {
  font-size: 0.55em;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0;
  margin-left: 2px;
}
.stat-item .lbl {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-item .sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

/* ============================================================
   23. COST MATRIX (multi-column pricing: hernia-type x approach)
   ============================================================ */
.cost-matrix-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 24px 8px;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}
.cost-matrix {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.cost-matrix th,
.cost-matrix td {
  text-align: left;
  padding: 14px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  vertical-align: middle;
}
.cost-matrix thead th {
  font-weight: 700;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--bg-soft);
  white-space: nowrap;
}
.cost-matrix thead th:first-child {
  background: transparent;
  text-align: left;
}
.cost-matrix tbody tr:last-child td { border-bottom: none; }
.cost-matrix tbody tr:hover td { background: var(--bg-soft); }
.cost-matrix td.row-head {
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-soft);
  white-space: nowrap;
}
.cost-matrix td.amt {
  font-weight: 700;
  color: var(--brand-700);
  font-family: var(--font-serif);
  font-size: 15px;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.cost-matrix td.unavail {
  color: var(--muted);
  font-style: italic;
}
.cost-matrix td.best {
  position: relative;
}
.cost-matrix td.best::after {
  content: 'Recommended';
  position: absolute;
  top: -6px;
  right: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: var(--r-pill);
}
@media (max-width: 720px) {
  .cost-matrix { font-size: 13px; }
  .cost-matrix th,
  .cost-matrix td { padding: 11px 10px; }
}

/* ============================================================
   24. CALLOUT (inline alert / advisory box)
   Variants: -info -warn -danger -success. Use Phosphor icon inside.
   ============================================================ */
.callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  margin: 24px 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.callout .ico {
  flex-shrink: 0;
  font-size: 22px;
  margin-top: 1px;
}
.callout .body { flex: 1; }
.callout strong { color: var(--ink); font-weight: 600; }
.callout p { margin: 0 0 6px; }
.callout p:last-child { margin-bottom: 0; }
.callout a { font-weight: 600; }

.callout-info {
  background: var(--brand-50);
  border-color: var(--brand-100);
}
.callout-info .ico { color: var(--brand); }

.callout-warn {
  background: var(--warn-50);
  border-color: rgba(245,166,35,.32);
}
.callout-warn .ico { color: var(--gold); }
.callout-warn strong { color: #6b4500; }

.callout-danger {
  background: #fef2f2;
  border-color: rgba(220,38,38,.22);
}
.callout-danger .ico { color: var(--danger); }
.callout-danger strong { color: var(--danger); }

.callout-success {
  background: var(--accent-50);
  border-color: rgba(6,182,164,.24);
}
.callout-success .ico { color: var(--accent-700); }
.callout-success strong { color: var(--accent-700); }

/* ============================================================
   25. TABS (CSS-only, accessible via radio inputs)
   HTML pattern (4 tabs example):
   <div class="tabs">
     <input type="radio" name="t1" id="t1-a" checked><input type="radio" name="t1" id="t1-b">
     <div class="tab-labels"><label for="t1-a">A</label><label for="t1-b">B</label></div>
     <section class="tab-panel">Content A</section>
     <section class="tab-panel">Content B</section>
   </div>
   ============================================================ */
.tabs {
  position: relative;
  margin: 28px 0;
}
.tabs > input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.tabs .tab-labels {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.tabs .tab-labels label {
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  white-space: nowrap;
  font-family: var(--font-sans);
}
.tabs .tab-labels label:hover { color: var(--brand); }
.tabs section.tab-panel { display: none; animation: fadeUp .35s var(--ease) both; }

/* up to 6 tabs supported */
.tabs > input:nth-of-type(1):checked ~ .tab-labels label:nth-child(1),
.tabs > input:nth-of-type(2):checked ~ .tab-labels label:nth-child(2),
.tabs > input:nth-of-type(3):checked ~ .tab-labels label:nth-child(3),
.tabs > input:nth-of-type(4):checked ~ .tab-labels label:nth-child(4),
.tabs > input:nth-of-type(5):checked ~ .tab-labels label:nth-child(5),
.tabs > input:nth-of-type(6):checked ~ .tab-labels label:nth-child(6) {
  color: var(--brand);
  border-color: var(--brand);
}
.tabs > input:nth-of-type(1):checked ~ section.tab-panel:nth-of-type(1),
.tabs > input:nth-of-type(2):checked ~ section.tab-panel:nth-of-type(2),
.tabs > input:nth-of-type(3):checked ~ section.tab-panel:nth-of-type(3),
.tabs > input:nth-of-type(4):checked ~ section.tab-panel:nth-of-type(4),
.tabs > input:nth-of-type(5):checked ~ section.tab-panel:nth-of-type(5),
.tabs > input:nth-of-type(6):checked ~ section.tab-panel:nth-of-type(6) {
  display: block;
}

/* keyboard focus on label = blue ring on the chip */
.tabs > input[type="radio"]:focus-visible ~ .tab-labels label[for] {
  outline: none;
}
.tabs > input:nth-of-type(1):focus-visible ~ .tab-labels label:nth-child(1),
.tabs > input:nth-of-type(2):focus-visible ~ .tab-labels label:nth-child(2),
.tabs > input:nth-of-type(3):focus-visible ~ .tab-labels label:nth-child(3),
.tabs > input:nth-of-type(4):focus-visible ~ .tab-labels label:nth-child(4),
.tabs > input:nth-of-type(5):focus-visible ~ .tab-labels label:nth-child(5),
.tabs > input:nth-of-type(6):focus-visible ~ .tab-labels label:nth-child(6) {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
  border-radius: var(--r-xs);
}

/* ============================================================
   26. FIGURE with caption (anatomical diagrams, image credits)
   ============================================================ */
.figure {
  margin: 28px 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}
.figure img,
.figure video,
.figure svg {
  width: 100%;
  height: auto;
  display: block;
}
.figure figcaption {
  padding: 14px 22px;
  font-size: 13.5px;
  color: var(--muted);
  font-style: italic;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  line-height: 1.55;
}
.figure figcaption strong {
  color: var(--ink);
  font-style: normal;
  font-weight: 600;
}
.figure figcaption .credit {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.figure.bleed {
  margin-left: 0;
  margin-right: 0;
  border-radius: var(--r-md);
}
.figure.diagram {
  background: var(--bg-soft);
}
.figure.diagram img { padding: 16px; background: #fff; }

/* ============================================================
   27. DARK SECTION VARIANT (interlude block on light pages)
   Use: <section class="body dark"> ... </section>
   Inverts colours; works with .stat-grid, .pull, .feature-row.
   ============================================================ */
section.body.dark {
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(255,255,255,.05), transparent 55%),
    radial-gradient(700px 400px at 80% 100%, rgba(6,182,164,.16), transparent 60%),
    linear-gradient(135deg, var(--brand-700) 0%, var(--brand) 60%, #134a7a 100%);
  color: #c8dbed;
  position: relative;
  overflow: hidden;
}
section.body.dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
  opacity: .7;
  pointer-events: none;
  height: auto;
}
section.body.dark .wrap { position: relative; z-index: 1; }
section.body.dark h1,
section.body.dark h2,
section.body.dark h3,
section.body.dark h4 { color: #fff; }
section.body.dark .kicker { color: rgba(255,255,255,.85); }
section.body.dark .kicker::before { background: linear-gradient(90deg, #fff, rgba(255,255,255,.4)); }
section.body.dark .kicker::after { background: var(--accent); }
section.body.dark .lead-p,
section.body.dark p { color: #c8dbed; }
section.body.dark .lede strong { color: #fff; }
section.body.dark a:not(.btn) { color: var(--brand-300); }
section.body.dark a:not(.btn):hover { color: #fff; }

/* dark-mode stat grid */
section.body.dark .stat-item {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  backdrop-filter: var(--blur-sm);
}
section.body.dark .stat-item:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.24);
}
section.body.dark .stat-item .num { color: #fff; }
section.body.dark .stat-item .num .unit { color: var(--brand-300); }
section.body.dark .stat-item .lbl { color: rgba(255,255,255,.78); }
section.body.dark .stat-item .sub { color: rgba(255,255,255,.55); }

/* dark-mode pull-quote */
section.body.dark .pull {
  background: linear-gradient(90deg, rgba(255,255,255,.08), transparent 70%);
  border-left-color: var(--accent);
  color: #fff;
}
section.body.dark .pull::before { color: var(--accent); }
section.body.dark .pull em { color: var(--brand-300); }

/* dark-mode callout */
section.body.dark .callout {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: #c8dbed;
}
section.body.dark .callout strong { color: #fff; }
