:root {
  --ink: #082323;
  --ink-soft: #30494a;
  --forest: #0a3331;
  --forest-2: #11524b;
  --teal: #0aa187;
  --teal-dark: #087866;
  --lime: #c7f464;
  --lime-soft: #ecffc4;
  --paper: #f4f6f1;
  --surface: #ffffff;
  --surface-soft: #e9efea;
  --line: #d3ddd7;
  --muted: #637574;
  --warning: #f7ad45;
  --danger: #c64444;
  --shadow-sm: 0 8px 24px rgba(8, 35, 35, 0.08);
  --shadow-lg: 0 28px 80px rgba(8, 35, 35, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --content: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a,
input,
select,
textarea,
summary {
  outline-offset: 4px;
}

:focus-visible {
  outline: 3px solid rgba(10, 161, 135, 0.45);
}

img,
svg {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.announcement {
  padding: 8px 20px;
  color: #dce8e3;
  background: #041a1a;
  font-size: 13px;
  text-align: center;
}

.announcement strong {
  color: var(--lime);
  font-weight: 650;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(211, 221, 215, 0.75);
  background: rgba(244, 246, 241, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  color: var(--lime);
  background: var(--forest);
}

.brand-mark svg {
  width: 22px;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
}

.nav-wrap,
.site-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.nav-wrap {
  flex: 1;
  justify-content: flex-end;
  gap: 28px;
}

.site-nav {
  gap: 26px;
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 9px 24px rgba(145, 198, 37, 0.23);
}

.button--primary:hover {
  background: #d3fa7f;
  box-shadow: 0 12px 28px rgba(145, 198, 37, 0.3);
}

.button--dark {
  color: white;
  background: var(--forest);
}

.button--dark:hover {
  background: var(--forest-2);
}

.button--outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.button--outline:hover {
  border-color: var(--teal);
  background: white;
}

.button--text {
  min-height: auto;
  padding: 7px 0;
  color: var(--teal-dark);
  background: transparent;
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 68px;
  color: white;
  background:
    radial-gradient(circle at 78% 12%, rgba(199, 244, 100, 0.16), transparent 31%),
    radial-gradient(circle at 4% 88%, rgba(10, 161, 135, 0.2), transparent 28%),
    var(--forest);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to right, transparent, black 55%, black);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6.1vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: #c7d9d4;
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero .button--outline,
.page-hero .button--outline {
  border-color: rgba(255,255,255,.25);
  color: white;
  background: rgba(255,255,255,.06);
}

.hero .button--outline:hover,
.page-hero .button--outline:hover {
  border-color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.11);
}

.microcopy {
  margin: 18px 0 0;
  color: #94aca8;
  font-size: 12px;
}

.security-console {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  background: rgba(3, 23, 23, 0.68);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.console-head strong {
  font-size: 14px;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b9cbc7;
  font-size: 11px;
}

.live-status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(199,244,100,.12);
  content: "";
}

.console-orbit {
  position: relative;
  display: grid;
  place-items: center;
  height: 250px;
  margin: 12px 0;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(199,244,100,.18);
  border-radius: 50%;
}

.orbit-ring--one {
  width: 210px;
  height: 210px;
}

.orbit-ring--two {
  width: 148px;
  height: 148px;
  border-style: dashed;
}

.orbit-ring--three {
  width: 82px;
  height: 82px;
  background: rgba(199,244,100,.06);
}

.shield-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 66px;
  color: var(--forest);
  background: var(--lime);
  clip-path: polygon(50% 0, 92% 16%, 86% 68%, 50% 100%, 14% 68%, 8% 16%);
}

.shield-core svg {
  width: 24px;
}

.orbit-node {
  position: absolute;
  z-index: 3;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  color: #e6f0ed;
  background: #103c39;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .04em;
}

.orbit-node:nth-of-type(4) { top: 18px; left: 28px; }
.orbit-node:nth-of-type(5) { top: 70px; right: 14px; }
.orbit-node:nth-of-type(6) { right: 38px; bottom: 24px; }
.orbit-node:nth-of-type(7) { bottom: 36px; left: 15px; }

.console-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.console-metric {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.055);
}

.console-metric b,
.console-metric span {
  display: block;
}

.console-metric b {
  color: var(--lime);
  font-size: 13px;
}

.console-metric span {
  margin-top: 3px;
  color: #8fa8a4;
  font-size: 10px;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: white;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 74px;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.trust-list li:last-child {
  border-right: 0;
}

.check-dot {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--forest);
  background: var(--lime-soft);
  font-size: 12px;
  font-weight: 900;
}

.section {
  padding: 104px 0;
}

.section--compact {
  padding: 70px 0;
}

.section--white {
  background: white;
}

.section--dark {
  color: white;
  background: var(--forest);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.section-heading p {
  max-width: 480px;
  margin-bottom: 4px;
  color: var(--muted);
}

.section--dark .section-heading p {
  color: #a8bfba;
}

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

.need-card,
.product-card,
.article-card,
.service-card,
.info-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.need-card:hover,
.product-card:hover,
.article-card:hover,
.service-card:hover {
  border-color: #a9c6bc;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.need-card {
  display: flex;
  min-height: 235px;
  padding: 25px;
  flex-direction: column;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 13px;
  color: var(--teal-dark);
  background: #e5f4ef;
}

.icon-box svg {
  width: 22px;
  height: 22px;
}

.need-card h3,
.product-card h3,
.service-card h3,
.article-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.need-card p,
.product-card p,
.service-card p,
.article-card p {
  color: var(--muted);
}

.need-card .text-link {
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.portfolio-banner {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  margin-top: 22px;
  padding: 42px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 95% 10%, rgba(199,244,100,.2), transparent 32%),
    var(--forest);
}

.portfolio-banner h3 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.14;
  letter-spacing: -.035em;
}

.portfolio-banner p {
  max-width: 650px;
  color: #b4c9c5;
}

.capability-cloud {
  display: flex;
  align-content: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 9px;
}

.capability-cloud span,
.capability-cloud a,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
}

.capability-cloud span,
.capability-cloud a {
  border: 1px solid rgba(255,255,255,.15);
  color: #dfeae7;
  background: rgba(255,255,255,.06);
}

.capability-cloud a:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.selector-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
}

.selector-copy {
  padding: 42px;
  border-radius: var(--radius-lg);
  color: white;
  background: var(--forest);
}

.selector-copy h2 {
  margin-bottom: 15px;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -.045em;
}

.selector-copy p {
  color: #b9ccc8;
}

.selector-copy ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.selector-copy li {
  display: flex;
  gap: 10px;
  margin-top: 13px;
  color: #e4eeeb;
  font-size: 14px;
}

.selector-panel {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
}

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

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea,
.search-input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cbd7d0;
  border-radius: 11px;
  color: var(--ink);
  background: #fbfcfa;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.search-input:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 4px rgba(10,161,135,.1);
}

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

.option-card {
  position: relative;
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card span {
  display: flex;
  min-height: 52px;
  padding: 11px 13px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink-soft);
  background: #fbfcfa;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease;
}

.option-card input:checked + span {
  border-color: var(--teal);
  color: var(--forest);
  background: #e9f8f2;
  box-shadow: inset 0 0 0 1px var(--teal);
}

.option-card input:focus-visible + span {
  outline: 3px solid rgba(10,161,135,.28);
  outline-offset: 3px;
}

.selector-result {
  display: none;
  margin-top: 22px;
  padding: 19px;
  border-left: 4px solid var(--teal);
  border-radius: 4px 13px 13px 4px;
  background: #ebf7f2;
}

.selector-result.is-visible {
  display: block;
  animation: rise 220ms ease both;
}

.selector-result strong,
.selector-result span {
  display: block;
}

.selector-result .button {
  margin-top: 14px;
}

.selector-result span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 14px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  counter-reset: flow;
}

.flow-step {
  position: relative;
  min-height: 220px;
  padding: 24px 22px;
  border-top: 1px solid rgba(255,255,255,.18);
  counter-increment: flow;
}

.flow-step::before {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-top: -42px;
  border: 5px solid var(--forest);
  border-radius: 50%;
  color: var(--forest);
  background: var(--lime);
  content: counter(flow, decimal-leading-zero);
  font-size: 10px;
  font-weight: 900;
}

.flow-step h3 {
  margin: 27px 0 8px;
  font-size: 18px;
}

.flow-step p {
  margin-bottom: 0;
  color: #a8bfba;
  font-size: 13px;
}

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

.article-card {
  display: flex;
  min-height: 285px;
  padding: 25px;
  flex-direction: column;
}

.article-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.article-card .text-link {
  margin-top: auto;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  padding: 50px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 5% 100%, rgba(199,244,100,.16), transparent 35%),
    var(--forest);
}

.cta-panel h2 {
  margin-bottom: 15px;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.cta-panel p {
  color: #b6cac6;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.contact-trust {
  display: grid;
  gap: 7px;
  margin-top: 26px;
  padding: 17px 18px;
  border: 1px solid rgba(199, 244, 100, .24);
  border-radius: 14px;
  color: #b9cbc7;
  background: rgba(255,255,255,.04);
  font-size: 12px;
}

.contact-trust strong {
  color: var(--lime);
  font-size: 13px;
}

.noscript-contact {
  padding: 18px;
  border: 1px solid rgba(199, 244, 100, .35);
  border-radius: 14px;
  color: #e5efec;
  background: rgba(199, 244, 100, .08);
}

.noscript-contact a {
  color: var(--lime);
  text-decoration: underline;
}

.section--white .noscript-contact {
  color: var(--ink-soft);
  background: var(--lime-soft);
}

.section--white .noscript-contact a {
  color: var(--teal-dark);
}

.no-js #selector-form,
.no-js #lead-form {
  display: none;
}

.lead-form {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.07);
}

.lead-form .field label,
.lead-form .field-label {
  color: #e5efec;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  border-color: rgba(255,255,255,.18);
  color: white;
  background: rgba(0,0,0,.13);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #88a39e;
}

.lead-form option {
  color: var(--ink);
  background: white;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  margin-top: 2px;
  color: #b9cbc7;
  font-size: 12px;
}

.checkbox-row input {
  width: 17px;
  height: 17px;
  min-height: auto;
  margin-top: 2px;
  accent-color: var(--lime);
}

.checkbox-row a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: #dce8e4;
  font-size: 12px;
}

.form-status.is-error {
  color: #ffb7ad;
}

.form-status.is-success {
  color: var(--lime);
}

.incident-fields,
.project-fields {
  width: 100%;
  min-width: 0;
  margin: 4px 0;
  padding: 20px;
  border: 1px solid rgba(199, 244, 100, .35);
  border-radius: 14px;
  background: rgba(199, 244, 100, .06);
}

.incident-fields[hidden],
.project-fields[hidden] {
  display: none;
}

.incident-fields legend,
.project-fields legend {
  padding: 0 8px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 800;
}

.incident-fields > p,
.project-fields > p {
  margin: 0 0 16px;
  color: #aebfbb;
  font-size: 12px;
}

.incident-fields .form-grid,
.project-fields .form-grid {
  gap: 14px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-footer {
  padding: 58px 0 30px;
  color: #a9bfba;
  background: #041a1a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, .7fr);
  gap: 40px;
}

.footer-brand p {
  max-width: 380px;
  margin-top: 18px;
  font-size: 13px;
}

.site-footer .brand-name,
.site-footer h3 {
  color: white;
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 13px;
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 11px;
}

.page-hero {
  padding: 82px 0 68px;
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(199,244,100,.16), transparent 29%),
    var(--forest);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(40px, 5.4vw, 66px);
}

.page-hero p {
  max-width: 750px;
  margin-bottom: 26px;
  color: #bfd0cc;
  font-size: 18px;
}

.page-hero .eyebrow {
  color: var(--lime);
}

.page-hero .editorial-meta {
  border-top-color: rgba(255, 255, 255, .2);
  color: #b8cbc6;
}

.breadcrumb {
  margin-bottom: 25px;
  color: #9fb5b0;
  font-size: 12px;
}

.breadcrumb a:hover {
  color: var(--lime);
}

.toolbar {
  position: sticky;
  top: 72px;
  z-index: 40;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(244,246,241,.94);
  backdrop-filter: blur(16px);
}

.toolbar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-wrap {
  position: relative;
  flex: 1;
}

.search-wrap svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 18px;
  color: var(--muted);
  transform: translateY(-50%);
}

.search-wrap .search-input {
  padding-left: 43px;
  background: white;
}

.filter-tabs {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-button {
  min-width: max-content;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-soft);
  background: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--forest);
  color: white;
  background: var(--forest);
}

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

.product-card {
  display: flex;
  min-height: 310px;
  padding: 25px;
  flex-direction: column;
}

.product-card[hidden] {
  display: none;
}

.product-kicker {
  margin-bottom: 17px;
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0 22px;
}

.tag {
  min-height: 27px;
  color: var(--ink-soft);
  background: var(--surface-soft);
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
}

.disclaimer {
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid #e4d2ad;
  border-radius: 13px;
  color: #695333;
  background: #fff9ec;
  font-size: 12px;
}

.no-results {
  display: none;
  padding: 40px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  color: var(--muted);
  text-align: center;
}

.no-results.is-visible {
  display: block;
}

.emergency-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: -34px;
  padding: 23px 25px;
  border: 1px solid #ead3aa;
  border-radius: var(--radius-md);
  background: #fff9ec;
  box-shadow: var(--shadow-sm);
}

.emergency-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 13px;
  color: #7c4d07;
  background: #ffe8bd;
  font-size: 20px;
  font-weight: 900;
}

.emergency-banner strong,
.emergency-banner span {
  display: block;
}

.emergency-banner span {
  margin-top: 3px;
  color: #705c3c;
  font-size: 13px;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.symptom-chip {
  display: flex;
  min-height: 54px;
  padding: 12px 15px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink-soft);
  background: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.symptom-chip::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.symptom-chip:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

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

.threat-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.threat-card[hidden] {
  display: none;
}

.threat-card:hover {
  border-color: #adc8bf;
  box-shadow: var(--shadow-sm);
}

.threat-card-head {
  padding: 24px 24px 18px;
}

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

.threat-kind {
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.risk-pill {
  display: inline-flex;
  min-height: 26px;
  padding: 5px 9px;
  align-items: center;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
}

.risk-pill--high {
  color: #812d20;
  background: #ffe6df;
}

.risk-pill--context {
  color: #635321;
  background: #fff3c8;
}

.risk-pill--history {
  color: #425b63;
  background: #e7eff1;
}

.threat-card h2 {
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.threat-alias {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
}

.threat-summary {
  margin-bottom: 15px;
  color: var(--ink-soft);
  font-size: 14px;
}

.threat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.threat-card details {
  border-top: 1px solid var(--line);
}

.threat-card details > summary {
  position: relative;
  display: flex;
  min-height: 54px;
  padding: 14px 48px 14px 24px;
  align-items: center;
  color: var(--teal-dark);
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 850;
}

.threat-card details > summary::-webkit-details-marker {
  display: none;
}

.threat-card details > summary::after {
  position: absolute;
  right: 24px;
  content: "+";
  font-size: 20px;
  font-weight: 450;
}

.threat-card details[open] > summary::after {
  content: "–";
}

.threat-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 24px 24px;
}

.threat-detail-block h3 {
  margin-bottom: 7px;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.threat-detail-block p,
.threat-detail-block ul {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.threat-detail-block ul {
  padding-left: 17px;
}

.threat-review {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  padding-top: 13px;
  border-top: 1px dashed var(--line);
  color: var(--muted);
  font-size: 11px;
}

.source-panel {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 40px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.source-panel h2 {
  margin-bottom: 10px;
  font-size: 25px;
}

.source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.source-list a {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--teal-dark);
  background: white;
  font-size: 12px;
  font-weight: 750;
}

.source-list a:hover {
  border-color: var(--teal);
}

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

.resource-card {
  display: flex;
  min-height: 185px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  flex-direction: column;
  background: var(--surface);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.resource-card:hover {
  border-color: #adc8bf;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.resource-card .eyebrow {
  margin-bottom: 10px;
}

.resource-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.25;
}

.resource-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.resource-card .text-link {
  margin-top: auto;
}

.editorial-meta {
  display: flex;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(211, 221, 215, .7);
  flex-wrap: wrap;
  gap: 8px 20px;
  color: var(--muted);
  font-size: 12px;
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 58px;
  color: white;
  background:
    radial-gradient(circle at 78% 16%, rgba(199, 244, 100, .15), transparent 30%),
    linear-gradient(135deg, #071f1f, #0d3d39);
}

.article-hero::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(199, 244, 100, .18);
  border-radius: 50%;
  content: "";
}

.article-hero-inner {
  position: relative;
  z-index: 1;
}

.article-hero .breadcrumb,
.article-hero .breadcrumb a,
.article-hero .editorial-meta {
  color: #b8cbc6;
}

.article-hero .eyebrow {
  color: var(--lime);
}

.article-hero h1 {
  max-width: 880px;
  margin: 18px 0 20px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.article-deck {
  max-width: 760px;
  color: #d7e3df;
  font-size: 19px;
}

.article-hero .button--outline {
  border-color: rgba(255, 255, 255, .35);
  color: white;
  background: transparent;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 54px;
  align-items: start;
}

.article-prose {
  min-width: 0;
}

.article-prose > section {
  margin-top: 46px;
  padding-top: 2px;
}

.article-prose > section:first-of-type {
  margin-top: 34px;
}

.article-prose h2 {
  margin-bottom: 16px;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.article-prose h3 {
  margin: 25px 0 8px;
  font-size: 18px;
}

.article-prose p,
.article-prose li {
  color: var(--ink-soft);
}

.article-prose li + li {
  margin-top: 7px;
}

.article-callout {
  padding: 24px 26px;
  border: 1px solid #c7ddd5;
  border-left: 5px solid var(--teal);
  border-radius: 14px;
  background: #eff9f6;
}

.article-callout--danger {
  border-color: #ead3aa;
  border-left-color: var(--warning);
  background: #fff9ec;
}

.article-callout strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
}

.article-callout p {
  margin: 0;
}

.article-aside {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 14px;
}

.article-toc,
.aside-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
}

.article-toc strong,
.aside-card strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.article-toc a {
  padding: 6px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.article-toc a:hover {
  color: var(--teal-dark);
}

.aside-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.timeline-label {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--lime-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
}

.checklist {
  display: grid;
  gap: 10px;
}

.checklist-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  cursor: pointer;
}

.checklist-item input {
  width: 19px;
  height: 19px;
  margin-top: 3px;
  accent-color: var(--teal-dark);
}

.checklist-item span {
  color: var(--ink-soft);
  font-size: 14px;
}

.checklist-item strong {
  color: var(--ink);
}

.do-not-grid,
.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.do-not-grid > div,
.fact-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}

.do-not-grid strong,
.do-not-grid span,
.fact-card strong,
.fact-card span {
  display: block;
}

.do-not-grid strong,
.fact-card strong {
  margin-bottom: 5px;
  font-size: 14px;
}

.do-not-grid span,
.fact-card span {
  color: var(--muted);
  font-size: 12px;
}

.article-sources {
  padding-top: 30px !important;
  border-top: 1px solid var(--line);
}

.article-sources a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(8, 120, 102, .3);
  text-underline-offset: 3px;
}

.source-note {
  padding: 15px 17px;
  border-radius: 10px;
  background: var(--surface-soft);
  font-size: 12px;
}

.threat-full-link {
  display: inline-flex;
  margin-top: 15px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  color: var(--muted);
  background: #edf1ed;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.compare-table td:first-child {
  color: var(--teal-dark);
  font-weight: 800;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.kb-layout {
  display: grid;
  grid-template-columns: minmax(220px, .28fr) minmax(0, .72fr);
  gap: 30px;
  align-items: start;
}

.kb-sidebar {
  position: sticky;
  top: 156px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.kb-sidebar h2 {
  margin-bottom: 13px;
  font-size: 15px;
}

.kb-sidebar nav {
  display: grid;
  gap: 5px;
}

.kb-sidebar a {
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.kb-sidebar a:hover {
  color: var(--teal-dark);
  background: #edf7f3;
}

.faq-group {
  margin-bottom: 48px;
}

.faq-group h2 {
  margin-bottom: 18px;
  font-size: 28px;
  letter-spacing: -.025em;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.faq-item[hidden] {
  display: none;
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 62px;
  padding: 16px 52px 16px 18px;
  align-items: center;
  list-style: none;
  cursor: pointer;
  font-weight: 750;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  right: 20px;
  color: var(--teal-dark);
  content: "+";
  font-size: 22px;
  font-weight: 450;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  padding: 0 18px 20px;
  color: var(--ink-soft);
  font-size: 14px;
}

.faq-answer p:last-child,
.legal-content p:last-child {
  margin-bottom: 0;
}

.faq-answer ol,
.faq-answer ul {
  padding-left: 20px;
}

.answer-note {
  padding: 12px 14px;
  border-left: 3px solid var(--teal);
  border-radius: 4px 10px 10px 4px;
  background: #edf7f3;
  font-size: 12px;
}

.legal-content {
  max-width: 840px;
  margin-inline: auto;
}

.legal-content h2 {
  margin: 40px 0 12px;
  font-size: 24px;
}

.legal-content h3 {
  margin: 27px 0 9px;
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content a {
  color: var(--teal-dark);
  text-decoration: underline;
}

.legal-meta {
  margin-bottom: 28px;
  padding: 15px 18px;
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 13px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #185846;
  background: #e2f8ee;
  font-size: 11px;
  font-weight: 800;
}

.status-pill::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.product-count {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.empty-note {
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--muted);
  text-align: center;
}

.error-page {
  display: grid;
  min-height: 100vh;
  padding: 30px;
  place-items: center;
  background: var(--forest);
}

.error-card {
  width: min(100%, 560px);
  padding: 48px;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.error-card h1 {
  font-size: 42px;
  letter-spacing: -.04em;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1020px) {
  .site-nav { gap: 17px; }
  .header-actions .button--outline { display: none; }
  .hero-grid { grid-template-columns: 1fr .72fr; gap: 36px; }
  .card-grid,
  .product-grid,
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow { grid-template-columns: repeat(3, 1fr); row-gap: 50px; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-grid > :last-child { grid-column: 2; }
  .resource-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: minmax(0, 1fr) 230px; gap: 34px; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .no-js .nav-toggle { display: none; }
  .nav-wrap {
    position: absolute;
    top: 100%;
    right: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    left: 0;
    display: none;
    padding: 24px 20px 40px;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    background: var(--paper);
  }
  .no-js .header-inner { align-items: flex-start; flex-wrap: wrap; }
  .no-js .nav-wrap { position: static; display: flex; width: 100%; max-height: none; padding: 0 0 20px; flex-basis: 100%; }
  .nav-open .nav-wrap { display: flex; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav { align-items: stretch; flex-direction: column; gap: 0; }
  .site-nav a { padding: 14px 7px; border-bottom: 1px solid var(--line); font-size: 17px; }
  .site-nav a::after { display: none; }
  .header-actions { margin-top: 10px; }
  .header-actions .button { display: inline-flex; width: 100%; }
  .hero { padding-top: 68px; }
  .hero-grid { grid-template-columns: 1fr; }
  .security-console { max-width: 540px; }
  .trust-list { grid-template-columns: repeat(2, 1fr); }
  .trust-list li:nth-child(2) { border-right: 0; }
  .trust-list li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 78px 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .portfolio-banner,
  .selector-layout { grid-template-columns: 1fr; }
  .capability-cloud { justify-content: flex-start; }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .toolbar { top: 72px; }
  .toolbar-inner { align-items: stretch; flex-direction: column; }
  .kb-layout { grid-template-columns: 1fr; }
  .kb-sidebar { position: static; }
  .emergency-banner { grid-template-columns: auto 1fr; }
  .emergency-banner .button { grid-column: 1 / -1; }
  .symptom-grid { grid-template-columns: repeat(2, 1fr); }
  .source-panel { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; grid-row: 1; }
  .article-toc { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-toc strong { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--content)); }
  .announcement { padding-inline: 12px; font-size: 11px; }
  .brand-subtitle { display: none; }
  .hero { padding: 56px 0 48px; }
  .hero h1,
  .page-hero h1 { font-size: 42px; }
  .hero-actions .button,
  .inline-actions .button { width: 100%; }
  .security-console { padding: 16px; border-radius: 22px; }
  .console-orbit { height: 210px; }
  .orbit-ring--one { width: 180px; height: 180px; }
  .orbit-ring--two { width: 124px; height: 124px; }
  .orbit-node:nth-of-type(4) { left: 5px; }
  .orbit-node:nth-of-type(5) { right: 0; }
  .orbit-node:nth-of-type(6) { right: 14px; }
  .orbit-node:nth-of-type(7) { left: 0; }
  .trust-list { grid-template-columns: 1fr; }
  .trust-list li { min-height: 55px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-list li:last-child { border-bottom: 0; }
  .section { padding: 64px 0; }
  .section--compact { padding: 52px 0; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2 { font-size: 34px; }
  .card-grid,
  .product-grid,
  .article-grid,
  .threat-grid,
  .flow,
  .form-grid,
  .option-grid { grid-template-columns: 1fr; }
  .portfolio-banner,
  .selector-copy,
  .selector-panel,
  .cta-panel { padding: 28px 22px; border-radius: 22px; }
  .flow { gap: 42px; padding-left: 8px; }
  .flow-step { min-height: auto; padding-bottom: 10px; }
  .page-hero { padding: 56px 0 48px; }
  .toolbar { position: static; }
  .filter-tabs { margin-inline: -14px; padding-inline: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .error-card { padding: 34px 24px; }
  .symptom-grid,
  .source-list,
  .threat-detail { grid-template-columns: 1fr; }
  .threat-review { grid-column: auto; }
  .resource-grid,
  .do-not-grid,
  .fact-grid,
  .article-toc { grid-template-columns: 1fr; }
  .article-toc strong { grid-column: auto; }
  .article-hero { padding: 54px 0 46px; }
  .article-hero h1 { font-size: 40px; }
  .article-deck { font-size: 16px; }
  .article-prose h2 { font-size: 26px; }
  .checklist-item { padding: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  @page { margin: 14mm; }
  body { color: #111; background: white; font-size: 10.5pt; }
  .no-print,
  .skip-link { display: none !important; }
  .container { width: 100%; }
  .article-hero { padding: 0 0 18px; color: #111; background: white; }
  .article-hero::after { display: none; }
  .article-hero .breadcrumb,
  .article-hero .breadcrumb a,
  .article-hero .editorial-meta,
  .article-deck { color: #333; }
  .article-hero .eyebrow { color: #086b5c; }
  .article-hero h1 { margin: 8px 0 12px; color: #111; font-size: 28pt; }
  .section,
  .section--compact { padding: 16px 0; }
  .article-layout { display: block; }
  .article-prose > section { margin-top: 20px; break-inside: avoid; }
  .article-prose h2 { font-size: 17pt; }
  .article-callout,
  .checklist-item,
  .do-not-grid > div,
  .fact-card { break-inside: avoid; background: white; }
  .checklist-item { padding: 9px 10px; }
  .checklist-item input { appearance: none; width: 13px; height: 13px; border: 1px solid #333; }
  a { color: #111; text-decoration: none; }
  .article-sources a::after { content: " (" attr(href) ")"; font-size: 8pt; font-weight: 400; }
}

/* 与 Linkmetax 主站统一的品牌标识 */
.brand-logo{height:30px;width:auto;display:block;background:#fff;border-radius:8px;padding:3px 6px;box-shadow:0 1px 2px rgba(0,0,0,.06);}
