:root {
  color-scheme: light;
  --ink: #1f2528;
  --ink-strong: #0f1416;
  --muted: #5e686f;
  --line: #d9e1e4;
  --paper: #ffffff;
  --wash: #f5f7f6;
  --soft: #eef5f2;
  --accent: #07836f;
  --accent-dark: #055f52;
  --gold: #d99a18;
  --coral: #b75743;
  --blue: #245d7d;
  --shadow: 0 24px 70px rgba(15, 20, 22, 0.13);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: 76px; padding: 0 34px;
  background: rgba(255,255,255,.95); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px);
}
.brand img { width: clamp(226px, 20vw, 306px); max-height: 52px; object-fit: contain; }
nav { display: flex; align-items: center; gap: 20px; font-size: .94rem; font-weight: 800; }
nav a { color: var(--muted); text-decoration: none; }
nav a:hover, nav a[aria-current="page"] { color: var(--accent-dark); }
.nav-cta { min-height: 40px; padding: 9px 14px; color: #fff; background: var(--ink-strong); border-radius: 6px; }
.hero, .page-hero {
  position: relative; isolation: isolate; overflow: hidden; border-bottom: 1px solid var(--line);
}
.hero { min-height: calc(100vh - 76px); }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { z-index: -2; object-fit: cover; object-position: 70% center; }
.hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(255,255,255,.99), rgba(255,255,255,.92) 38%, rgba(255,255,255,.46) 68%, rgba(255,255,255,.08)); }
.hero-inner, .section-inner, .site-footer, .cta-band, .page-hero {
  width: min(1180px, calc(100% - 48px)); margin: 0 auto;
}
.hero-inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr); gap: 52px; align-items: center;
  min-height: calc(100vh - 76px); padding: 72px 0;
}
.page-hero { padding: 82px 0 58px; }
.page-hero.compact { max-width: none; }
.hero-copy { max-width: 760px; }
.eyebrow { margin: 0 0 12px; color: var(--accent-dark); font-size: .76rem; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
h1, h2, h3, p, ul { margin-top: 0; }
h1 { margin-bottom: 22px; color: var(--ink-strong); font-size: clamp(2.45rem, 5.8vw, 5.45rem); line-height: .98; letter-spacing: 0; }
h2 { margin-bottom: 14px; color: var(--ink-strong); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.08; letter-spacing: 0; }
h3 { margin-bottom: 9px; color: var(--ink-strong); font-size: 1.08rem; }
.lead { max-width: 720px; margin-bottom: 28px; color: var(--muted); font-size: 1.2rem; }
.action-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px;
  border: 1px solid transparent; border-radius: 6px; font-weight: 900; text-decoration: none;
}
.button.primary { color: #fff; background: var(--accent); }
.button.primary:hover { background: var(--accent-dark); }
.button.secondary { background: var(--paper); border-color: var(--line); }
.hero-panel, .info-panel, .article-card, .proof-grid article, .lane-grid article {
  background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 12px 35px rgba(15,20,22,.07);
}
.hero-panel { padding: 28px; backdrop-filter: blur(12px); box-shadow: var(--shadow); }
.panel-kicker { color: var(--ink-strong); font-size: 1.08rem; font-weight: 900; }
.check-list, .plain-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li, .plain-list li { position: relative; padding-left: 24px; font-weight: 750; }
.check-list li::before, .plain-list li::before { content: ""; position: absolute; top: .58em; left: 0; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; }
.trust-strip {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-bottom: 1px solid var(--line);
}
.trust-strip div { padding: 20px 28px; border-right: 1px solid var(--line); background: var(--soft); }
.trust-strip strong { display: block; color: var(--ink-strong); font-size: 1.3rem; }
.trust-strip span { color: var(--muted); font-weight: 750; }
.section-inner { padding: 78px 0; }
.section-heading { max-width: 840px; margin-bottom: 30px; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; max-width: none; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-grid.all-products { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-card { display: flex; flex-direction: column; overflow: hidden; min-height: 100%; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); transition: .18s ease; }
.product-media { position: relative; display: block; background: var(--wash); text-decoration: none; border-bottom: 1px solid var(--line); }
.product-media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.status-pill { position: absolute; top: 12px; left: 12px; padding: 7px 10px; color: #fff; background: var(--accent); border-radius: 6px; font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.product-copy { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 20px; }
.product-copy p { color: var(--muted); }
.product-copy h3 a, .article-card h2 a { text-decoration: none; }
.meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 18px; }
.meta-row span { padding: 6px 8px; color: var(--muted); background: var(--wash); border: 1px solid var(--line); border-radius: 6px; font-size: .78rem; font-weight: 850; }
.text-link { margin-top: auto; color: var(--accent-dark); font-weight: 900; }
.band { background: var(--wash); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid, .lane-grid, .article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.lane-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.proof-grid article, .lane-grid article, .article-card { padding: 22px; }
.cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 74px; padding: 34px;
  color: #fff; background: var(--ink-strong); border-radius: 8px;
}
.cta-band h2, .cta-band .eyebrow { color: #fff; }
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.filter-row button {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font: inherit;
  font-size: .92rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.filter-row button:hover,
.filter-row button:focus-visible {
  color: #0c0f11;
  border-color: rgba(0,125,105,.3);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(12,15,17,.08);
}
.filter-row button.active {
  color: #fff;
  background: #0c0f11;
  border-color: #0c0f11;
}
.product-page { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 70px 0; display: grid; grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr); gap: 52px; align-items: start; }
.product-visual { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--wash); box-shadow: var(--shadow); }
.product-visual img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.price-card { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 24px 0; padding: 18px; background: var(--soft); border: 1px solid var(--line); border-radius: 8px; }
.price { display: block; color: var(--ink-strong); font-size: 2rem; font-weight: 950; }
.price-card p { margin: 0; color: var(--muted); font-weight: 800; }
.two-column { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr); gap: 44px; }
.info-panel { padding: 24px; }
.article-page { width: min(820px, calc(100% - 48px)); margin: 0 auto; padding: 82px 0; }
.article-page h1 { font-size: clamp(2.2rem, 4.5vw, 4.2rem); }
.article-date { color: var(--muted); font-weight: 850; }
.article-card span { color: var(--muted); font-weight: 850; }
.site-footer {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: start; padding: 34px 0; color: var(--muted); border-top: 1px solid var(--line);
}
.site-footer img { width: 226px; margin-bottom: 10px; }
.footer-links { display: flex; gap: 16px; font-weight: 850; }
.footer-links a { text-decoration: none; }
.fine-print { text-align: right; font-size: .88rem; }
@media (max-width: 1040px) {
  .product-grid, .product-grid.all-products, .proof-grid, .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lane-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-inner, .product-page, .two-column { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; padding: 16px 20px; }
  nav { flex-wrap: wrap; gap: 12px; }
  .hero, .hero-inner { min-height: auto; }
  .hero-inner, .section-inner, .site-footer, .cta-band, .page-hero, .product-page, .article-page { width: min(100% - 32px, 1180px); }
  .hero-inner { padding: 58px 0; }
  .hero-shade { background: rgba(255,255,255,.9); }
  .trust-strip, .product-grid, .product-grid.all-products, .proof-grid, .lane-grid, .article-grid, .site-footer { grid-template-columns: 1fr; }
  .split-heading, .cta-band, .price-card { align-items: flex-start; flex-direction: column; }
  .fine-print { text-align: left; }
}

/* Premium product-story redesign */
body { background: #f5f5f7; }
.site-header {
  min-height: 54px;
  padding: 0 42px;
  background: rgba(245,245,247,.82);
  border-bottom: 0;
}
.brand img { width: 214px; max-height: 40px; }
nav { gap: 22px; font-size: .82rem; }
.nav-cta { min-height: 34px; padding: 7px 13px; border-radius: 999px; background: #0c0f11; }
.hero-command {
  min-height: calc(100vh - 54px);
  background: #f5f5f7;
  border-bottom: 12px solid #fff;
}
.hero-command .hero-image { opacity: .18; object-position: center; filter: saturate(.72); }
.hero-command .hero-shade {
  background:
    radial-gradient(circle at 75% 34%, rgba(5, 131, 111, .12), transparent 28%),
    linear-gradient(180deg, rgba(245,245,247,.92), rgba(245,245,247,.78) 48%, rgba(245,245,247,.98));
}
.hero-command .hero-inner {
  min-height: calc(100vh - 54px);
  grid-template-columns: minmax(0, .92fr) minmax(420px, .8fr);
  padding: 92px 0 78px;
}
.hero-command h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 7vw, 7.6rem);
  line-height: .9;
  letter-spacing: 0;
}
.hero-command .lead {
  max-width: 610px;
  color: #4f575d;
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
}
.button { border-radius: 999px; min-height: 44px; padding: 0 21px; }
.button.primary { background: #007d69; }
.button.secondary.ghost {
  color: #0c0f11;
  background: rgba(255,255,255,.46);
  border-color: rgba(12,15,17,.12);
  backdrop-filter: blur(16px);
}
.command-device {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(232,236,235,.58));
  box-shadow: 0 40px 110px rgba(12,15,17,.18);
}
.device-top {
  display: flex;
  gap: 8px;
  padding: 13px 15px 11px;
}
.device-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #0d806f;
}
.device-top span:nth-child(2) { background: #d99a18; }
.device-top span:nth-child(3) { background: #4f8f97; }
.device-screen {
  min-height: 450px;
  padding: 34px;
  color: #eaf8f4;
  border-radius: 24px;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    radial-gradient(circle at 85% 15%, rgba(0,219,173,.22), transparent 32%),
    #081012;
  background-size: 28px 28px, 28px 28px, auto, auto;
  border: 1px solid rgba(255,255,255,.08);
}
.device-label {
  margin-bottom: 18px;
  color: #61e8cc;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .75rem;
  text-transform: uppercase;
}
.device-screen h2 {
  max-width: 360px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: .98;
}
.progress-stack { display: grid; gap: 14px; margin: 34px 0; }
.progress-stack span {
  position: relative;
  overflow: hidden;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  color: #d7e7e3;
  background: rgba(255,255,255,.055);
  font-weight: 800;
}
.progress-stack span::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  width: var(--w);
  height: 3px;
  background: #00caa8;
}
.command-line {
  padding: 15px 16px;
  color: #eaf8f4;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(97,232,204,.18);
  border-radius: 14px;
  font-size: .95rem;
  font-weight: 850;
}
.trust-strip {
  width: min(1180px, calc(100% - 48px));
  margin: -42px auto 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(12,15,17,.08);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(12,15,17,.08);
}
.trust-strip div { background: rgba(255,255,255,.92); }
.showcase {
  width: min(1180px, calc(100% - 48px));
  margin: 18px auto;
  padding: clamp(38px, 6vw, 76px);
  border-radius: 32px;
}
.dark-showcase {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
  color: #fff;
  background: radial-gradient(circle at 75% 12%, rgba(0,202,168,.2), transparent 34%), #05080a;
}
.dark-showcase h2, .dark-showcase .eyebrow { color: #fff; }
.dark-showcase p { color: #b7c2c5; }
.showcase-copy p { max-width: 600px; font-size: 1.15rem; }
.system-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.system-card {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
}
.system-card.active { background: rgba(0,202,168,.16); border-color: rgba(0,202,168,.34); }
.system-card span, .premium-lanes span {
  display: block;
  margin-bottom: 28px;
  color: #00caa8;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}
.system-card strong { display: block; margin-bottom: 8px; font-size: 1.25rem; }
.light-showcase {
  background: #fff;
  box-shadow: 0 18px 60px rgba(12,15,17,.06);
}
.centered { max-width: 780px; margin: 0 auto 32px; text-align: center; }
.centered p { margin-left: auto; margin-right: auto; }
.trust-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.trust-panels article {
  min-height: 180px;
  padding: 24px;
  border-radius: 24px;
  background: #f5f5f7;
}
.trust-panels strong { display: block; margin-bottom: 60px; color: #0c0f11; font-size: 1.6rem; }
.trust-panels span { color: #5f666b; font-weight: 750; }
.issue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.all-issues { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.issue-module {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(12,15,17,.055);
  transform: translateY(0) scale(1);
  transition: transform .34s cubic-bezier(.2,.8,.2,1), box-shadow .34s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.issue-module::before {
  content: "";
  position: absolute;
  inset: auto -50px -90px auto;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(0,202,168,.12);
  transition: transform .34s cubic-bezier(.2,.8,.2,1), opacity .34s ease;
}
.issue-module:hover,
.issue-module:focus-within {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 34px 90px rgba(12,15,17,.14);
}
.issue-module:hover::before,
.issue-module:focus-within::before {
  transform: translate(-10px, -10px) scale(1.18);
  opacity: .86;
}
.issue-module h3 { font-size: clamp(1.45rem, 2.1vw, 2rem); line-height: 1.04; }
.issue-module p { color: #5f666b; }
.issue-visual {
  position: relative;
  display: block;
  min-height: 270px;
  aspect-ratio: 16 / 9.6;
  overflow: hidden;
  text-decoration: none;
  background: #f5f5f7;
}
.issue-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .34s ease;
}
.image-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,16,19,.05), rgba(7,16,19,.52)),
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.2), transparent 32%);
  pointer-events: none;
}
.issue-module:hover .issue-visual img,
.issue-module:focus-within .issue-visual img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}
.issue-price {
  position: absolute;
  right: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: #0c0f11;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(12,15,17,.18);
  font-size: 1.05rem;
  font-weight: 950;
  transform: translateY(0);
  transition: transform .34s cubic-bezier(.2,.8,.2,1), background .34s ease, color .34s ease;
}
.issue-module:hover .issue-price,
.issue-module:focus-within .issue-price {
  color: #fff;
  background: #007d69;
  transform: translateY(-4px);
}
.issue-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 5px;
  max-width: 390px;
  padding: 16px 17px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  background: rgba(7,16,19,.72);
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  transition: transform .34s cubic-bezier(.2,.8,.2,1), background .34s ease;
}
.issue-overlay small {
  color: #7ff4dc;
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}
.issue-overlay strong {
  color: #fff;
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
  line-height: 1.02;
}
.issue-overlay em {
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  font-style: normal;
  font-weight: 750;
}
.issue-module:hover .issue-overlay,
.issue-module:focus-within .issue-overlay {
  background: rgba(7,16,19,.82);
  transform: translateY(-4px);
}
.issue-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}
.issue-meta-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  margin-bottom: 8px;
}
.issue-meta-line .eyebrow { margin-bottom: 0; }
.issue-meta-line strong {
  color: #0c0f11;
  font-size: 1.05rem;
  font-weight: 950;
}
.kit-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 20px;
}
.kit-includes span {
  padding: 7px 9px;
  color: #4f575d;
  background: #f5f5f7;
  border: 1px solid rgba(12,15,17,.08);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 850;
  transition: border-color .24s ease, background .24s ease, color .24s ease;
}
.issue-module:hover .kit-includes span,
.issue-module:focus-within .kit-includes span {
  color: #0c0f11;
  background: #fff;
  border-color: rgba(0,125,105,.22);
}
.module-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #007d69;
  font-weight: 900;
  text-decoration: none;
}
.module-link::after {
  content: ">";
  transform: translateX(0);
  transition: transform .24s ease;
}
.issue-module:hover .module-link::after,
.issue-module:focus-within .module-link::after {
  transform: translateX(5px);
}
@media (prefers-reduced-motion: reduce) {
  .issue-module,
  .issue-module::before,
  .issue-visual img,
  .issue-price,
  .issue-overlay,
  .kit-includes span,
  .module-link::after {
    transition: none;
  }
  .issue-module:hover,
  .issue-module:focus-within,
  .issue-module:hover .issue-visual img,
  .issue-module:focus-within .issue-visual img,
  .issue-module:hover .issue-overlay,
  .issue-module:focus-within .issue-overlay {
    transform: none;
  }
}
.diagnostic-card {
  position: relative;
  display: block;
  overflow: hidden;
  color: #eaf8f4;
  text-decoration: none;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    radial-gradient(circle at 88% 16%, rgba(0,202,168,.25), transparent 33%),
    #071013;
  background-size: 24px 24px, 24px 24px, auto, auto;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
.diagnostic-card.mini {
  align-self: stretch;
  min-height: 278px;
  padding: 18px;
}
.diag-top { display: flex; gap: 8px; margin-bottom: 26px; }
.diag-top span { width: 10px; height: 10px; border-radius: 999px; background: #00a88d; }
.diag-top span:nth-child(2) { background: #d99a18; }
.diag-top span:nth-child(3) { background: #7bd4c7; }
.diag-label {
  margin-bottom: 12px;
  color: #61e8cc;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.diagnostic-card strong {
  display: block;
  max-width: 220px;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.02;
}
.diagnostic-card small {
  display: block;
  color: #a7bbb8;
  font-weight: 750;
}
.diag-bars { display: grid; gap: 9px; margin: 28px 0; }
.diag-bars i {
  display: block;
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.diag-bars i::before {
  content: "";
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #00caa8;
}
.diag-bars i:nth-child(1)::before { width: 88%; }
.diag-bars i:nth-child(2)::before { width: 66%; background: #d99a18; }
.diag-bars i:nth-child(3)::before { width: 78%; background: #7bd4c7; }
.diagnostic-card em {
  display: inline-flex;
  padding: 9px 11px;
  color: #081012;
  background: #7ff4dc;
  border-radius: 999px;
  font-size: .74rem;
  font-style: normal;
  font-weight: 950;
}
.module-terminal {
  align-self: end;
  display: grid;
  gap: 8px;
  padding: 13px;
  border-radius: 18px;
  color: #9ef7df;
  background: #071013;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .72rem;
}
.module-terminal span {
  padding: 8px;
  border: 1px solid rgba(158,247,223,.14);
  border-radius: 10px;
}
.premium-lanes article {
  min-height: 300px;
  padding: 28px;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(12,15,17,.055);
}
.premium-product {
  min-height: auto;
  align-items: center;
  grid-template-columns: minmax(420px, .95fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  padding: clamp(54px, 7vw, 92px) 0 clamp(46px, 6vw, 78px);
}
.premium-product .product-visual {
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 32px;
  background: transparent;
  box-shadow: 0 32px 90px rgba(12,15,17,.14);
}
.premium-product .product-detail {
  min-width: 0;
  max-width: 640px;
}
.premium-product h1 {
  max-width: 660px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 5.1vw, 5.15rem);
  line-height: .96;
  letter-spacing: 0;
  text-wrap: balance;
  hyphens: none;
}
.premium-product .lead {
  max-width: 590px;
  font-size: clamp(1.05rem, 1.5vw, 1.26rem);
}
.product-diagnostic {
  width: 100%;
  max-width: 100%;
  min-height: 560px;
  padding: clamp(22px, 3.2vw, 36px);
  color: #fff;
  border-radius: 32px;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    radial-gradient(circle at 82% 10%, rgba(0,202,168,.27), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(217,154,24,.16), transparent 30%),
    #070b0d;
  background-size: 30px 30px, 30px 30px, auto, auto;
  border: 1px solid rgba(255,255,255,.08);
}
.diagnostic-head {
  max-width: 520px;
  margin: 42px 0 28px;
}
.diagnostic-head h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(2.15rem, 4vw, 4.6rem);
  line-height: .94;
  text-wrap: balance;
  hyphens: none;
}
.diagnostic-head p { color: #b8c8c5; font-weight: 800; }
.search-surface {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(97,232,204,.18);
  border-radius: 24px;
  background: rgba(255,255,255,.072);
  backdrop-filter: blur(14px);
}
.search-surface span,
.outcome-strip span {
  color: #61e8cc;
  font-size: .74rem;
  font-weight: 950;
  text-transform: uppercase;
}
.search-surface strong {
  display: block;
  color: #fff;
  font-size: clamp(1.03rem, 1.55vw, 1.22rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.resolution-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.resolution-path article {
  min-height: 132px;
  padding: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
}
.resolution-path span {
  display: block;
  margin-bottom: 22px;
  color: #d99a18;
  font-size: .78rem;
  font-weight: 950;
}
.resolution-path strong {
  display: block;
  color: #fff;
  font-size: 1.03rem;
}
.resolution-path p {
  margin: 7px 0 0;
  color: #aebfbc;
  font-size: .92rem;
  line-height: 1.35;
}
.outcome-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(0,202,168,.15);
  border: 1px solid rgba(0,202,168,.28);
}
.outcome-strip strong {
  color: #fff;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  text-align: right;
}
.product-command-art {
  min-height: 560px;
  padding: 44px;
  color: #dcebe8;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    radial-gradient(circle at 80% 18%, rgba(0,202,168,.2), transparent 35%),
    #05080a;
  background-size: 30px 30px, 30px 30px, auto, auto;
}
.product-command-art p {
  color: #61e8cc;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  text-transform: uppercase;
}
.product-command-art h2 {
  max-width: 520px;
  color: #fff;
  font-size: clamp(2.3rem, 4vw, 4.8rem);
  line-height: .92;
}
.terminal-lines {
  display: grid;
  gap: 12px;
  margin-top: 80px;
}
.terminal-lines span {
  width: min(100%, 390px);
  padding: 15px 17px;
  border: 1px solid rgba(97,232,204,.14);
  border-radius: 15px;
  background: rgba(255,255,255,.055);
  color: #9ef7df;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}
.price-card {
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(12,15,17,.065);
}
.filter-row button { border-radius: 999px; background: #fff; }
.filter-row button.active { background: #0c0f11; }
.page-hero.compact {
  padding: clamp(46px, 6vw, 72px) 0 clamp(34px, 4vw, 50px);
}
.page-hero.compact h1 {
  max-width: 960px;
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  line-height: .96;
}
.page-hero.compact .lead { max-width: 700px; }
.issue-grid,
.issue-grid.all-issues {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
.issue-module {
  grid-template-columns: minmax(0, 1fr) !important;
  min-height: 100%;
}
.issue-copy {
  min-height: 310px;
}
.diagnostic-card.mini {
  width: 100%;
  min-height: 300px;
}
.diagnostic-card strong {
  max-width: 100%;
}
.blog-feature {
  min-height: 360px;
  margin-bottom: 18px;
  padding: clamp(32px, 5vw, 64px);
  color: #fff;
  border-radius: 32px;
  background: radial-gradient(circle at 80% 15%, rgba(0,202,168,.24), transparent 34%), #071013;
}
.blog-feature h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: .96;
}
.blog-feature p { max-width: 660px; color: #b7c2c5; font-size: 1.15rem; }
.article-grid { gap: 18px; }
.article-card {
  min-height: 310px;
  padding: 30px;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(12,15,17,.055);
}
.article-card h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  line-height: 1;
}
.article-card p { color: #5f666b; }
.article-page {
  width: min(940px, calc(100% - 48px));
  padding: 96px 0;
}
.article-page h1 {
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: .92;
}
.article-page h2 {
  margin-top: 58px;
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
}
.article-page p {
  color: #41494f;
  font-size: 1.15rem;
}
.article-drop {
  margin-top: 34px;
  color: #1f2528 !important;
  font-size: 1.34rem !important;
  line-height: 1.48;
}
.article-list {
  display: grid;
  gap: 11px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}
.article-list li {
  position: relative;
  padding-left: 28px;
  color: #41494f;
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.45;
}
.article-list li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #d99a18;
}
.article-callout {
  margin: 34px 0;
  padding: 24px 26px;
  color: #123531;
  background: #e8f7f3;
  border: 1px solid rgba(0,125,105,.16);
  border-radius: 24px;
  font-size: 1.12rem;
  line-height: 1.5;
}
.article-callout strong { color: #007d69; }
.article-visual {
  margin: 34px 0;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(12,15,17,.075);
}
.hero-visual {
  min-height: 360px;
  padding: clamp(28px, 4vw, 48px);
  color: #eaf8f4;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    radial-gradient(circle at 86% 18%, rgba(0,202,168,.28), transparent 34%),
    radial-gradient(circle at 8% 88%, rgba(217,154,24,.14), transparent 30%),
    #071013;
  background-size: 28px 28px, 28px 28px, auto, auto;
}
.hero-visual h2 {
  max-width: 720px;
  margin: 8px 0 34px !important;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4rem) !important;
  line-height: .95;
}
.hero-visual figcaption {
  max-width: 650px;
  color: #b7c2c5;
  font-size: 1rem;
  font-weight: 750;
}
.visual-kicker,
.visual-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: #61e8cc;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.timeline-visual,
.flow-visual,
.ladder-visual {
  display: grid;
  align-items: center;
  gap: 10px;
  margin: 22px 0 28px;
}
.timeline-visual { grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto; }
.timeline-visual.compact span { min-width: 0; }
.timeline-visual span,
.flow-visual span,
.ladder-visual span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 13px;
  color: #071013;
  background: #7ff4dc;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 950;
  text-align: center;
}
.timeline-visual i {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: rgba(127,244,220,.38);
}
.flow-visual { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.flow-visual span { border-radius: 18px; min-height: 90px; }
.ladder-visual { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: end; }
.ladder-visual span { border-radius: 18px 18px 0 0; }
.ladder-visual span:nth-child(1) { min-height: 74px; }
.ladder-visual span:nth-child(2) { min-height: 104px; background: #9ee8dc; }
.ladder-visual span:nth-child(3) { min-height: 134px; background: #f0c66a; }
.ladder-visual span:nth-child(4) { min-height: 164px; background: #df8a76; }
.split-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}
.split-visual div { padding: 26px; }
.split-visual div + div { border-left: 1px solid rgba(12,15,17,.08); }
.split-visual p,
.script-visual p {
  margin: 0;
  color: #1f2528;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.45;
}
.visual-label.bad { color: #b75743; }
.visual-label.good { color: #007d69; }
.script-visual {
  padding: 28px;
  border-left: 8px solid #007d69;
}
.article-gridlet {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 34px;
}
.article-gridlet.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.article-gridlet article {
  min-height: 150px;
  padding: 22px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(12,15,17,.055);
}
.article-gridlet strong {
  display: block;
  margin-bottom: 34px;
  color: #0c0f11;
  font-size: 1.08rem;
}
.article-gridlet span {
  color: #5f666b;
  font-weight: 750;
  line-height: 1.4;
}
.script-card {
  margin: 24px 0 30px;
  padding: 28px;
  color: #dcebe8;
  background: #071013;
  border-radius: 24px;
}
.script-card p {
  margin: 0;
  color: #eaf8f4;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 1rem;
}
.article-table {
  width: 100%;
  margin: 24px 0 36px;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(12,15,17,.055);
}
.article-table th,
.article-table td {
  padding: 17px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(12,15,17,.08);
}
.article-table th {
  color: #0c0f11;
  background: #e8f7f3;
  font-size: .86rem;
  text-transform: uppercase;
}
.article-table td {
  color: #41494f;
  font-weight: 750;
  line-height: 1.4;
}
.detail-intro {
  max-width: 720px;
  color: #41494f;
  font-size: 1.15rem;
}
.detail-panel {
  background: #fff;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(12,15,17,.06);
}
.product-deep-dive {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 88px;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.detail-grid article {
  min-height: 420px;
  padding: 26px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(12,15,17,.055);
}
.detail-grid article > span {
  display: block;
  margin-bottom: 42px;
  color: #007d69;
  font-size: .82rem;
  font-weight: 950;
}
.detail-grid h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
  line-height: 1.08;
}
.detail-grid .plain-list {
  gap: 13px;
}
.detail-grid .plain-list li {
  color: #41494f;
  font-weight: 700;
  line-height: 1.42;
}
@media (max-width: 1040px) {
  .hero-command .hero-inner, .dark-showcase { grid-template-columns: 1fr; }
  .issue-grid, .all-issues, .trust-panels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-grid { grid-template-columns: 1fr; }
  .issue-module { grid-template-columns: 1fr; }
  .premium-product { grid-template-columns: 1fr; min-height: auto; align-items: start; }
  .command-device { max-width: 620px; }
}
@media (max-width: 760px) {
  .site-header { min-height: auto; background: #f5f5f7; }
  .brand img { width: min(214px, calc(100vw - 40px)); }
  .hero-command .hero-inner { padding: 58px 0; }
  .hero-command h1 { font-size: clamp(2.35rem, 10vw, 3.25rem); line-height: .96; }
  .hero-command .lead { max-width: 330px; font-size: 1rem; }
  .command-device { border-radius: 24px; padding: 10px; }
  .device-screen, .product-command-art { min-height: 430px; padding: 24px; }
  .trust-strip { width: min(100% - 32px, 1180px); margin-top: -20px; grid-template-columns: 1fr; }
  .showcase { width: min(100% - 32px, 1180px); border-radius: 24px; }
  .issue-grid, .all-issues, .trust-panels, .system-board { grid-template-columns: 1fr !important; }
  .issue-module { grid-template-columns: minmax(0, 1fr); min-height: auto; }
  .issue-copy { min-height: auto; }
  .issue-module > * { min-width: 0; }
  .issue-module h3 { font-size: 1.55rem; overflow-wrap: anywhere; }
  .issue-visual { min-height: 190px; aspect-ratio: 16 / 9.5; }
  .issue-copy { min-height: auto; padding: 20px; }
  .module-terminal { max-width: 240px; }
  .page-hero h1 { font-size: clamp(2.35rem, 10vw, 3.35rem); line-height: .98; overflow-wrap: anywhere; }
  .page-hero .lead { max-width: 330px; }
  .product-deep-dive { width: min(100% - 32px, 1180px); padding: 44px 0 58px; }
  .detail-grid article { min-height: auto; padding: 22px; border-radius: 22px; }
  .detail-grid article > span { margin-bottom: 24px; }
  .product-page.premium-product { width: calc(100vw - 64px) !important; padding: 28px 0 54px; gap: 30px; }
  .product-page.premium-product > * { min-width: 0; }
  .premium-product h1 { font-size: clamp(2.25rem, 10vw, 3.15rem); line-height: .98; }
  .premium-product .product-visual { border-radius: 24px; }
  .premium-product .product-visual,
  .product-diagnostic { max-width: 100%; }
  .product-diagnostic { min-height: auto; border-radius: 24px; overflow: hidden; }
  .product-diagnostic * { min-width: 0; }
  .diagnostic-head { margin: 30px 0 22px; }
  .diagnostic-head h2 { font-size: clamp(2rem, 9vw, 2.7rem); }
  .search-surface { padding: 18px; }
  .resolution-path { grid-template-columns: 1fr; }
  .resolution-path article { min-height: auto; }
  .outcome-strip { align-items: flex-start; flex-direction: column; }
  .outcome-strip strong { text-align: left; }
  .section-inner { overflow: hidden; }
  .article-page { padding: 58px 0; }
  .article-page h1 { font-size: clamp(2.25rem, 10vw, 3.15rem); line-height: .98; }
  .timeline-visual,
  .flow-visual,
  .ladder-visual,
  .split-visual,
  .article-gridlet,
  .article-gridlet.four {
    grid-template-columns: 1fr;
  }
  .timeline-visual i { display: none; }
  .split-visual div + div { border-left: 0; border-top: 1px solid rgba(12,15,17,.08); }
  .article-table { display: block; overflow-x: auto; }
}
