/* GuardianX — global stylesheet
   Minimalist dark layout, original composition (no third-party CSS/assets reused). */

* { box-sizing: border-box; }

html {
  background: var(--color-canvas);
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--color-canvas);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Ambient background glow (static, no WebGL) ---------- */
.ambient-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(600px circle at 12% -8%, rgba(213, 30, 43, 0.10), transparent 60%),
    radial-gradient(520px circle at 92% 8%, rgba(213, 30, 43, 0.06), transparent 60%);
}

/* ---------- Motion / reveal (scroll-triggered via main.js) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--dur-reveal) var(--ease-reveal), transform var(--dur-reveal) var(--ease-reveal);
  transition-delay: var(--d, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(8px);
  border-bottom: var(--border-w) solid transparent;
  transition: background var(--dur-hover) ease, border-color var(--dur-hover) ease, box-shadow var(--dur-hover) ease;
}
.site-nav.is-scrolled {
  background: rgba(7, 7, 7, 0.9);
  border-bottom-color: var(--color-border);
  box-shadow: 0 12px 32px -20px rgba(0, 0, 0, 0.6);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-red); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--color-muted);
  transition: color var(--dur-hover) ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-hover) ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--color-text); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  font-family: var(--font-mono);
  font-size: 12px;
  display: flex;
  gap: 6px;
  border: var(--border-w) solid var(--color-border);
  border-radius: 999px;
  padding: 4px 6px;
}
.lang-switch a {
  text-decoration: none;
  color: var(--color-muted);
  padding: 2px 8px;
  border-radius: 999px;
}
.lang-switch a[aria-current="true"] { color: var(--color-canvas); background: var(--color-text); }

.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  border: var(--border-w) solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--dur-hover) ease, background var(--dur-hover) ease, border-color var(--dur-hover) ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.985); }
.btn-primary { background: var(--color-red); color: #fff; position: relative; overflow: hidden; }
.btn-primary:hover { background: var(--color-red-hover); }
.btn-primary::after {
  content: "";
  position: absolute; top: 0; left: -60%; width: 35%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.32), transparent);
  transform: skewX(-18deg);
  transition: left 600ms ease;
}
.btn-primary:hover::after { left: 130%; }
.btn-ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn-ghost:hover { border-color: var(--color-red-deep); }

a:focus-visible, button:focus-visible, .btn:focus-visible, summary:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 3px;
}

/* ---------- Transparency strip ---------- */
.transparency-strip {
  border-bottom: var(--border-w) solid var(--color-border);
  background: var(--color-surface);
}
.transparency-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-block: 12px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--color-muted);
}
.transparency-strip li { list-style: none; display: flex; align-items: center; gap: 8px; }
.transparency-strip li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--color-red);
  border-radius: 1px;
  flex: none;
}
.transparency-strip ul { display: flex; flex-wrap: wrap; gap: 12px 28px; margin: 0; padding: 0; }

/* ---------- Hero ---------- */
.hero {
  padding-block: var(--space-section) calc(var(--space-section) * 0.6);
  text-align: center;
}
.hero .eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin: 0 auto 24px;
}
.hero p.lede {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--color-muted);
  font-size: 17px;
}
.hero .actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Hero stat row */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 6vw, 64px);
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stats .stat { text-align: center; }
.hero-stats .stat .num {
  font-family: var(--font-mono);
  font-size: 28px;
  color: var(--color-text);
}
.hero-stats .stat .num .accent { color: var(--color-red); }
.hero-stats .stat .label {
  margin-top: 6px;
  font-size: 12px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Dashboard visual mock */
.dashboard-mock {
  margin: 64px auto 0;
  max-width: var(--container-max);
  background: var(--color-surface);
  border: var(--border-w) solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dashboard-mock .panel {
  background: var(--color-elevated);
  border: var(--border-w) solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 18px;
  min-height: 120px;
}
.dashboard-mock .panel .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dashboard-mock .panel .value { font-size: 22px; margin-top: 10px; }
.dashboard-mock .panel .value.ok { color: var(--color-text); }
.dashboard-mock .panel .value.status { color: var(--color-red); }
.dashboard-mock .bar { height: 6px; border-radius: 3px; background: var(--color-border); margin-top: 14px; overflow: hidden; }
.dashboard-mock .bar span { display: block; height: 100%; background: var(--color-red); }

/* ---------- Sections generic ---------- */
section { padding-block: var(--space-section); }
section.tight { padding-block: calc(var(--space-section) * 0.6); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head .eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.01em; margin: 0 0 14px; }
.section-head p { color: var(--color-muted); margin: 0; }

/* ---------- How it works ---------- */
.steps {
  list-style: none;
  margin: 0; padding: 0;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.steps li {
  counter-increment: step;
  border: var(--border-w) solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  padding: 22px 18px;
  transition: transform var(--dur-hover) ease, border-color var(--dur-hover) ease;
}
.steps li:hover { transform: translateY(-3px); border-color: var(--color-red-deep); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  color: var(--color-red);
  font-size: 13px;
  display: block;
  margin-bottom: 14px;
}
.steps li .title { font-size: 15px; font-weight: 600; }

/* ---------- Feature bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bento .card {
  border: var(--border-w) solid var(--color-border);
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-hover) ease, border-color var(--dur-hover) ease;
}
.bento .card:hover { transform: translateY(-3px); border-color: var(--color-red-deep); }
.bento .card .icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--color-elevated);
  border: var(--border-w) solid var(--color-border);
  margin-bottom: 16px;
}
.bento .card h3 { font-size: 15px; margin: 0 0 8px; }
.bento .card p { font-size: 13.5px; color: var(--color-muted); margin: 0; }

/* ---------- Icon badges (CSS-only pictograms, no external images) ---------- */
.icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-elevated);
  border: var(--border-w) solid var(--color-border);
  margin-bottom: 16px;
  position: relative;
  flex: none;
  transition: border-color var(--dur-hover) ease, background var(--dur-hover) ease;
}
.card:hover .icon, .use-cases .card:hover .icon { border-color: var(--color-red-deep); }

.icon-inventory::before {
  content: "";
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  background-image: radial-gradient(var(--color-red) 1.6px, transparent 1.8px);
  background-size: 7px 7px;
}
.icon-integrity::before {
  content: "";
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -52%);
  width: 17px; height: 19px;
  background: var(--color-red);
  clip-path: polygon(50% 0%, 100% 20%, 100% 55%, 50% 100%, 0% 55%, 0% 20%);
}
.icon-compliance::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 11px; height: 6px;
  border-left: 2px solid var(--color-red);
  border-bottom: 2px solid var(--color-red);
  transform: translate(-50%, -65%) rotate(-45deg);
}
.icon-location::before {
  content: "";
  position: absolute; top: 42%; left: 50%;
  width: 15px; height: 15px;
  background: var(--color-red);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -60%) rotate(-45deg);
}
.icon-roles::before, .icon-roles::after {
  content: "";
  position: absolute; top: 52%;
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 2px solid var(--color-red);
}
.icon-roles::before { left: 36%; transform: translate(-50%, -50%); }
.icon-roles::after { left: 64%; transform: translate(-50%, -50%); }
.icon-audit::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 18px; height: 18px;
  border: 2px solid var(--color-red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.icon-audit::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 1.5px; height: 7px;
  background: var(--color-red);
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(35deg);
}
.icon-export::before {
  content: "";
  position: absolute; top: 42%; left: 50%;
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid var(--color-red);
  transform: translate(-50%, 0);
}
.icon-export::after {
  content: "";
  position: absolute; top: 22%; left: 50%;
  width: 2px; height: 9px;
  background: var(--color-red);
  transform: translate(-50%, 0);
}
.icon-retention::before {
  content: "";
  position: absolute; top: 52%; left: 50%;
  width: 18px; height: 15px;
  border: 2px solid var(--color-red);
  border-radius: 2px;
  transform: translate(-50%, -45%);
}
.icon-retention::after {
  content: "";
  position: absolute; top: calc(52% - 6px); left: 50%;
  width: 18px; height: 2px;
  background: var(--color-red);
  transform: translate(-50%, -45%);
}
.icon-family::before {
  content: "";
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  border: 2px solid var(--color-red);
  border-radius: 50% 50% 50% 4px;
}
.icon-org::before {
  content: "";
  position: absolute; top: 52%; left: 50%; transform: translate(-50%, -50%);
  width: 18px; height: 14px;
  border: 2px solid var(--color-red);
  border-radius: 2px;
}
.icon-org::after {
  content: "";
  position: absolute; top: calc(52% - 8px); left: 50%; transform: translate(-50%, -50%);
  width: 10px; height: 2px;
  background: var(--color-red);
}

/* ---------- Connected numbered flow ("how it works") ---------- */
.flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
  counter-reset: flow;
}
.flow::before {
  content: "";
  position: absolute;
  top: 20px; left: 40px; right: 40px;
  height: 1px;
  background: var(--color-border);
  z-index: 0;
}
.flow-step {
  counter-increment: flow;
  flex: 1 1 0;
  min-width: 160px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 14px;
}
.flow-step .num {
  width: 40px; height: 40px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--color-canvas);
  border: var(--border-w) solid var(--color-red);
  color: var(--color-red);
  font-family: var(--font-mono);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-hover) ease, background var(--dur-hover) ease, color var(--dur-hover) ease;
}
.flow-step:hover .num { transform: translateY(-3px); background: var(--color-red); color: #fff; }
.flow-step .flow-title { font-size: 14.5px; font-weight: 600; margin-bottom: 8px; }
.flow-step .flow-desc { font-size: 13px; color: var(--color-muted); line-height: 1.5; }

.card, .price-card, .steps li {
  position: relative;
  overflow: hidden;
}
.card::after, .price-card::after, .steps li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(180px circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(213, 30, 43, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}
.card:hover::after, .price-card:hover::after, .steps li:hover::after { opacity: 1; }

/* ---------- Responsible list ---------- */
.responsible-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.responsible-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.responsible-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--color-text);
}
.responsible-list li::before {
  content: "";
  flex: none;
  width: 8px; height: 8px;
  margin-top: 6px;
  border-radius: 2px;
  border: var(--border-w) solid var(--color-red);
}

/* ---------- Prohibited callout ---------- */
.callout {
  border: var(--border-w) solid var(--color-red-deep);
  background: linear-gradient(180deg, rgba(111,15,24,0.14), rgba(111,15,24,0.04));
  border-radius: var(--radius-lg);
  padding: 32px;
}
.callout .eyebrow { color: var(--color-red); }
.callout blockquote {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text);
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  border: var(--border-w) solid var(--color-border);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--dur-hover) ease, border-color var(--dur-hover) ease;
}
.price-card:hover { transform: translateY(-3px); border-color: var(--color-red-deep); }
.price-card.featured { border-color: var(--color-red); }
.price-card.featured:hover { border-color: var(--color-red-hover); }
.price-card .tier { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-muted); }
.price-card .amount { font-size: 34px; }
.price-card .amount span { font-size: 13px; color: var(--color-muted); font-family: var(--font-mono); }
.price-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--color-muted); }
.price-card ul li::before { content: "— "; color: var(--color-red); }
.price-note {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--color-muted);
}

/* ---------- FAQ ---------- */
.faq { border-top: var(--border-w) solid var(--color-border); }
.faq details {
  border-bottom: var(--border-w) solid var(--color-border);
  padding: 22px 0;
}
.faq summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--color-red); font-family: var(--font-mono); font-size: 18px; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--color-muted); margin: 14px 0 0; max-width: 720px; }

/* ---------- Closing CTA band ---------- */
.cta-band {
  border: var(--border-w) solid var(--color-border);
  background: linear-gradient(160deg, var(--color-surface), var(--color-elevated));
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at 50% -20%, rgba(213, 30, 43, 0.16), transparent 65%);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(24px, 3vw, 32px); margin: 0 0 14px; position: relative; }
.cta-band p { color: var(--color-muted); max-width: 520px; margin: 0 auto 28px; position: relative; }
.cta-band .actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: var(--border-w) solid var(--color-border);
  padding-block: 64px 40px;
  background: var(--color-surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin: 0 0 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { text-decoration: none; color: var(--color-text); font-size: 14px; }
.footer-grid a:hover { color: var(--color-red); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-muted);
  border-top: var(--border-w) solid var(--color-border);
  padding-top: 24px;
}

/* ---------- Simple content pages ---------- */
.prose { max-width: 760px; }
.prose h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 20px; }
.prose h2 { font-size: 22px; margin-top: 40px; }
.prose p, .prose li { color: var(--color-muted); font-size: 15.5px; }
.prose ul { padding-left: 20px; }
.prose strong { color: var(--color-text); }
.page-header { padding-block: 72px 32px; border-bottom: var(--border-w) solid var(--color-border); }
.page-header .eyebrow { font-family: var(--font-mono); font-size: 12px; color: var(--color-red); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }

/* ---------- Use-case / two-column cards (Product page) ---------- */
.use-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.use-cases .card { padding: 30px; }
.use-cases .card .icon { width: 34px; height: 34px; }

/* ---------- Security list ---------- */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.security-grid .card h3 { display: flex; align-items: center; gap: 10px; }
.security-grid .card h3::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 2px;
  border: var(--border-w) solid var(--color-red);
  flex: none;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-card {
  border: var(--border-w) solid var(--color-border);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-card h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-mono); color: var(--color-muted); margin: 0 0 12px; }
.contact-card p { margin: 0 0 18px; }
.contact-card p:last-child { margin-bottom: 0; }

/* ---------- Pricing FAQ / notes reuse .faq, .price-note already defined ---------- */
.billed-by {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-muted);
  border: var(--border-w) solid var(--color-border);
  border-radius: 999px;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.billed-by .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-red); }

@media (max-width: 720px) {
  .use-cases, .security-grid, .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .steps, .bento, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-mock { grid-template-columns: repeat(2, 1fr); }
  .flow { flex-direction: column; gap: 20px; }
  .flow::before { display: none; }
  .flow-step { text-align: left; display: flex; align-items: flex-start; gap: 16px; }
  .flow-step .num { margin: 0; flex: none; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .responsible-split { grid-template-columns: 1fr; gap: 28px; }
  .steps, .bento, .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .transparency-strip ul { flex-direction: column; gap: 8px; }
}

/* ==========================================================================
   GUARDIANX / SIGNAL SYSTEM
   Original visual direction: quiet interfaces, strong typography and precise
   red signals. This layer intentionally overrides the first-pass stylesheet
   while retaining the existing semantic HTML on every RO/EN page.
   ========================================================================== */

:root {
  --color-canvas: #08090a;
  --color-surface: #0e1012;
  --color-elevated: #15181b;
  --color-border: rgba(255, 255, 255, 0.105);
  --color-text: #f5f3ef;
  --color-muted: #9b9da2;
  --color-red: #ef243c;
  --color-red-hover: #ff3b50;
  --color-red-deep: rgba(239, 36, 60, 0.48);
  --container-max: 1180px;
  --gutter: clamp(20px, 4vw, 44px);
  --radius-sm: 14px;
  --radius-lg: 24px;
  --space-section: clamp(88px, 11vw, 144px);
  --dur-hover: 220ms;
  --shadow-soft: 0 30px 90px rgba(0, 0, 0, 0.34);
  --shadow-red: 0 24px 70px rgba(239, 36, 60, 0.12);
}

html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(255, 255, 255, 0.22) var(--color-canvas);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--color-canvas);
  background-size: 72px 72px;
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.1), var(--color-canvas) 78%),
    radial-gradient(900px 520px at 48% -16%, rgba(255, 255, 255, 0.055), transparent 72%);
}

::selection {
  color: #fff;
  background: rgba(239, 36, 60, 0.78);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--color-canvas); }
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border: 3px solid var(--color-canvas);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: var(--color-red); }

.container { width: 100%; }

.ambient-glow {
  background:
    radial-gradient(720px circle at 6% 8%, rgba(239, 36, 60, 0.12), transparent 66%),
    radial-gradient(620px circle at 94% 32%, rgba(239, 36, 60, 0.07), transparent 68%);
  opacity: 0.9;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: var(--scroll-progress, 0%);
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--color-red), #ff7584);
  box-shadow: 0 0 18px rgba(239, 36, 60, 0.72);
  transition: width 80ms linear;
}

.reveal {
  transform: translateY(24px);
  filter: blur(3px);
  transition:
    opacity 680ms var(--ease-reveal),
    transform 680ms var(--ease-reveal),
    filter 680ms var(--ease-reveal);
  transition-delay: var(--d, 0ms);
}

.reveal.is-visible {
  filter: blur(0);
}

/* Navigation */
.site-nav {
  top: 0;
  padding: 14px 0 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.site-nav.is-scrolled {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-nav .container {
  position: relative;
  height: 62px;
  padding-inline: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(12, 13, 15, 0.78);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(135%);
  transition:
    border-color var(--dur-hover) ease,
    background var(--dur-hover) ease,
    transform var(--dur-hover) ease;
}

.site-nav.is-scrolled .container {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(9, 10, 11, 0.92);
}

.brand {
  gap: 11px;
  padding: 8px 10px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brand .dot {
  width: 12px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px 4px 7px 7px;
  background:
    radial-gradient(circle at 50% 43%, #fff 0 1.5px, transparent 2px),
    linear-gradient(145deg, var(--color-red), #8d0d20);
  box-shadow: 0 0 18px rgba(239, 36, 60, 0.35);
  clip-path: polygon(50% 0, 100% 18%, 92% 72%, 50% 100%, 8% 72%, 0 18%);
}

.nav-links {
  gap: 4px;
  padding: 4px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0;
}

.nav-links a {
  display: block;
  padding: 9px 11px;
  border-radius: 9px;
  color: #a7a8ac;
}

.nav-links a::after { display: none; }

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.065);
}

.nav-links a[aria-current="page"] {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.nav-actions { gap: 10px; }

.lang-switch {
  gap: 2px;
  padding: 3px;
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.025);
}

.lang-switch a {
  min-width: 31px;
  padding: 4px 7px;
  text-align: center;
  transition: color var(--dur-hover) ease, background var(--dur-hover) ease;
}

.lang-switch a[aria-current="true"] {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.12);
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 11px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* Buttons */
.btn {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 12px;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  box-shadow: none;
  transition:
    transform var(--dur-hover) var(--ease-reveal),
    color var(--dur-hover) ease,
    background var(--dur-hover) ease,
    border-color var(--dur-hover) ease,
    box-shadow var(--dur-hover) ease;
}

.btn:hover { transform: translateY(-3px); }

.btn-primary {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, #f02a42, #c9152c);
  box-shadow: 0 12px 32px rgba(239, 36, 60, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff4156, #e31d35);
  box-shadow: 0 16px 40px rgba(239, 36, 60, 0.3);
}

.btn-primary::after {
  width: 46%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.26), transparent);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.025);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.27);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Trust strip */
.transparency-strip {
  margin-top: 14px;
  border: 0;
  background: transparent;
}

.transparency-strip .container {
  justify-content: center;
  padding-block: 14px 0;
  font-size: 11px;
  color: #87898e;
}

.transparency-strip li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(239, 36, 60, 0.45);
}

/* Hero */
.hero {
  position: relative;
  min-height: 600px;
  padding-block: clamp(68px, 7vw, 104px) 88px;
  text-align: left;
  overflow: clip;
}

.hero::before {
  content: "GUARDIANX";
  position: absolute;
  top: 38px;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.018);
  font-size: clamp(92px, 19vw, 280px);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.085em;
  white-space: nowrap;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 80px;
  right: -14vw;
  z-index: -1;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(239, 36, 60, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(239, 36, 60, 0.018),
    0 0 0 180px rgba(239, 36, 60, 0.012);
  opacity: 0.75;
}

.hero .eyebrow,
.page-header .eyebrow,
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: #c7c7ca;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.hero .eyebrow::before,
.page-header .eyebrow::before,
.section-head .eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--color-red);
  box-shadow: 0 0 10px rgba(239, 36, 60, 0.5);
}

.hero h1 {
  max-width: 960px;
  margin: 0 0 28px;
  font-size: clamp(44px, 7.2vw, 88px);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero p.lede {
  max-width: 680px;
  margin: 0 0 38px;
  color: #aaa9ad;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.68;
}

.hero .actions {
  justify-content: flex-start;
  gap: 10px;
}

.hero-stats {
  justify-content: flex-start;
  gap: 0;
  max-width: 720px;
  margin-top: 74px;
  border-block: 1px solid var(--color-border);
}

.hero-stats .stat {
  flex: 1 1 0;
  min-width: 150px;
  padding: 22px 28px 22px 0;
  text-align: left;
}

.hero-stats .stat + .stat {
  padding-left: 28px;
  border-left: 1px solid var(--color-border);
}

.hero-stats .stat .num {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.hero-stats .stat .label {
  margin-top: 3px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.11em;
}

/* Product preview */
.dashboard-mock {
  position: relative;
  isolation: isolate;
  max-width: none;
  margin-top: 72px;
  padding: 9px;
  gap: 8px;
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow-soft), var(--shadow-red);
  backdrop-filter: blur(12px);
}

.dashboard-mock::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.15), transparent 32%, transparent 70%, rgba(239, 36, 60, 0.2));
  padding: 1px;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.dashboard-mock .panel {
  min-height: 138px;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.075);
  border-radius: 17px;
  background: rgba(10, 11, 13, 0.78);
  transition:
    transform var(--dur-hover) var(--ease-reveal),
    border-color var(--dur-hover) ease,
    background var(--dur-hover) ease;
}

.dashboard-mock .panel:hover {
  z-index: 2;
  transform: translateY(-5px);
  border-color: rgba(239, 36, 60, 0.32);
  background: #121417;
}

.dashboard-mock .panel .label {
  font-size: 9.5px;
  letter-spacing: 0.12em;
}

.dashboard-mock .panel .value {
  margin-top: 15px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.dashboard-mock .bar {
  height: 3px;
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.075);
}

.dashboard-mock .bar span {
  border-radius: inherit;
  background: linear-gradient(90deg, #b81129, var(--color-red));
  box-shadow: 0 0 12px rgba(239, 36, 60, 0.35);
}

/* Sections */
section {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 72%);
}

section.tight { padding-block: clamp(68px, 8vw, 96px); }

.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-head h2 {
  margin-bottom: 17px;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-head p:not(.eyebrow) {
  max-width: 620px;
  color: #999ba0;
  font-size: 16px;
}

/* Cards and grids */
.bento { gap: 12px; }

.bento .card,
.use-cases .card,
.security-grid .card,
.contact-card,
.steps li,
.price-card {
  border-color: rgba(255, 255, 255, 0.095);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 46%),
    var(--color-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition:
    transform 320ms var(--ease-reveal),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 320ms ease;
}

.bento .card {
  min-height: 220px;
  padding: 26px;
  border-radius: 19px;
}

.bento .card:hover,
.use-cases .card:hover,
.security-grid .card:hover,
.contact-card:hover,
.steps li:hover,
.price-card:hover {
  transform: translateY(-7px);
  border-color: rgba(239, 36, 60, 0.42);
  background:
    linear-gradient(145deg, rgba(239, 36, 60, 0.065), transparent 44%),
    #111316;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
}

.bento .card h3,
.use-cases .card h3,
.security-grid .card h3 {
  margin: 0 0 9px;
  font-size: 16px;
  letter-spacing: -0.015em;
}

.bento .card p,
.use-cases .card p,
.security-grid .card p {
  color: #96989d;
  font-size: 13.5px;
  line-height: 1.65;
}

.icon,
.bento .card .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-color: rgba(239, 36, 60, 0.18);
  border-radius: 13px;
  background: rgba(239, 36, 60, 0.055);
  box-shadow: inset 0 0 20px rgba(239, 36, 60, 0.025);
}

.card:hover .icon,
.use-cases .card:hover .icon {
  transform: translateY(-2px) rotate(-3deg);
  border-color: rgba(239, 36, 60, 0.44);
  background: rgba(239, 36, 60, 0.11);
}

.card::after,
.price-card::after,
.steps li::after {
  background: radial-gradient(
    250px circle at var(--spot-x, 50%) var(--spot-y, 0%),
    rgba(239, 36, 60, 0.13),
    transparent 66%
  );
}

/* Flow */
.flow::before {
  top: 23px;
  background: linear-gradient(90deg, transparent, rgba(239, 36, 60, 0.32), rgba(255, 255, 255, 0.12), transparent);
}

.flow-step { padding-inline: 18px; }

.flow-step .num {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-color: rgba(239, 36, 60, 0.5);
  background: #0d0f11;
  box-shadow: 0 0 0 7px var(--color-canvas), 0 0 24px rgba(239, 36, 60, 0.08);
}

.flow-step:hover .num {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 0 0 7px var(--color-canvas), 0 12px 34px rgba(239, 36, 60, 0.2);
}

.flow-step .flow-title {
  font-size: 14px;
  line-height: 1.45;
}

/* Full steps page */
.steps { gap: 12px; }

.steps li {
  min-height: 110px;
  padding: 24px 28px 24px 92px;
  border-radius: 18px;
}

.steps li::before {
  position: absolute;
  top: 24px;
  left: 26px;
  width: 42px;
  height: 42px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 36, 60, 0.32);
  border-radius: 12px;
  background: rgba(239, 36, 60, 0.055);
}

.steps li .title {
  font-size: 16px;
  letter-spacing: -0.012em;
}

/* Responsible use */
.responsible-split { gap: clamp(40px, 8vw, 100px); }

.responsible-list { gap: 4px; }

.responsible-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  color: #d9d8d6;
}

.responsible-list li::before {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border: 0;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 42%, #fff 43% 51%, transparent 52%) 6px 6px / 7px 7px no-repeat,
    rgba(239, 36, 60, 0.82);
  box-shadow: 0 0 18px rgba(239, 36, 60, 0.18);
}

.callout {
  position: relative;
  padding: clamp(30px, 5vw, 54px);
  border-color: rgba(239, 36, 60, 0.3);
  border-radius: 24px;
  background:
    radial-gradient(440px circle at 100% 0, rgba(239, 36, 60, 0.15), transparent 64%),
    #101113;
  overflow: hidden;
}

.callout::after {
  content: "!";
  position: absolute;
  right: 26px;
  bottom: -54px;
  color: rgba(255, 255, 255, 0.025);
  font-size: 220px;
  font-weight: 700;
  line-height: 1;
}

.callout blockquote {
  position: relative;
  z-index: 3;
  max-width: 760px;
  font-size: clamp(19px, 2.4vw, 28px);
  line-height: 1.46;
  letter-spacing: -0.025em;
}

/* Pricing */
.billed-by {
  padding: 8px 13px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.billed-by .dot { box-shadow: 0 0 12px rgba(239, 36, 60, 0.6); }

.pricing-grid { gap: 12px; }

.price-card {
  min-height: 420px;
  padding: 32px;
  border-radius: 22px;
}

.price-card.featured {
  border-color: rgba(239, 36, 60, 0.48);
  background:
    radial-gradient(420px circle at 100% 0, rgba(239, 36, 60, 0.13), transparent 62%),
    #111215;
  box-shadow: var(--shadow-red);
}

.price-card.featured:hover { border-color: rgba(255, 59, 80, 0.72); }

.price-card .tier {
  color: #bbbcc0;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.price-card .amount {
  margin-block: 8px 10px;
  font-size: clamp(35px, 4vw, 48px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-card .amount span {
  display: block;
  margin-top: 12px;
  font-size: 10.5px;
  letter-spacing: 0.02em;
}

.price-card ul {
  gap: 13px;
  margin-bottom: 12px;
}

.price-card ul li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.price-card ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 9px rgba(239, 36, 60, 0.4);
  flex: none;
}

.price-card .btn { margin-top: auto; }

.price-note {
  max-width: 760px;
  margin-top: 26px;
  line-height: 1.7;
}

.price-note a {
  color: var(--color-text);
  text-decoration-color: rgba(239, 36, 60, 0.65);
  text-underline-offset: 4px;
}

.pricing-shell {
  text-align: center;
}

.pricing-shell .section-head {
  margin-inline: auto;
  text-align: center;
}

.pricing-shell .section-head p:not(.eyebrow) {
  margin-inline: auto;
}

.pricing-shell .pricing-grid {
  width: 100%;
  margin-inline: auto;
  text-align: left;
}

.pricing-shell .price-note {
  margin-inline: auto;
  text-align: center;
}

.pricing-shell .billed-by {
  margin-inline: auto;
}

.pricing-page-header .container {
  text-align: center;
}

.pricing-page-header h1,
.pricing-page-header p:not(.eyebrow) {
  margin-inline: auto;
}

/* FAQ */
.faq {
  border-top-color: rgba(255, 255, 255, 0.09);
}

.faq details {
  padding: 0;
  border-bottom-color: rgba(255, 255, 255, 0.09);
}

.faq summary {
  min-height: 74px;
  padding: 18px 4px;
  transition: color var(--dur-hover) ease;
}

.faq summary:hover { color: var(--color-red-hover); }

.faq summary::after {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.025);
  transition: transform 260ms var(--ease-reveal), border-color 260ms ease;
}

.faq details[open] summary::after {
  color: #fff;
  border-color: rgba(239, 36, 60, 0.45);
  background: var(--color-red);
  transform: rotate(180deg);
}

.faq details p {
  margin: -2px 0 0;
  padding: 0 48px 28px 4px;
  line-height: 1.7;
}

/* CTA */
.cta-band {
  padding: clamp(54px, 8vw, 92px) 32px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 46%),
    #101214;
  box-shadow: var(--shadow-soft);
}

.cta-band::before {
  background:
    radial-gradient(520px circle at 52% -42%, rgba(239, 36, 60, 0.31), transparent 64%);
}

.cta-band h2 {
  max-width: 660px;
  margin-inline: auto;
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.cta-band p { margin-top: 20px; }

/* Interior pages */
.page-header {
  position: relative;
  padding-block: clamp(108px, 14vw, 168px) clamp(72px, 9vw, 106px);
  border: 0;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 50%;
  right: max(-240px, -12vw);
  width: min(48vw, 640px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border: 1px solid rgba(239, 36, 60, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(239, 36, 60, 0.018),
    0 0 0 144px rgba(239, 36, 60, 0.01);
}

.page-header h1 {
  position: relative;
  max-width: 900px;
  margin: 0 0 24px;
  font-size: clamp(42px, 6.3vw, 78px);
  font-weight: 600;
  line-height: 1.01;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.page-header p:not(.eyebrow) {
  position: relative;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
}

.use-cases,
.security-grid,
.contact-grid { gap: 12px; }

.use-cases .card {
  min-height: 290px;
  padding: 34px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
}

.use-cases .card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 68px;
}

.security-grid .card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
}

.security-grid .card h3 {
  display: block;
  margin-bottom: 28px;
}

.security-grid .card h3::before {
  display: block;
  width: 22px;
  height: 2px;
  margin-bottom: 20px;
  border: 0;
  border-radius: 999px;
  background: var(--color-red);
  box-shadow: 0 0 12px rgba(239, 36, 60, 0.4);
}

.contact-card {
  min-height: 230px;
  padding: 30px;
  border-radius: 20px;
}

.contact-card h3 {
  color: #c0c1c4;
  font-size: 10.5px;
  letter-spacing: 0.14em;
}

.contact-card a:not(.btn) { color: var(--color-text); }

.prose { max-width: 800px; }

.prose h2 {
  margin: 58px 0 18px;
  color: var(--color-text);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.prose h2:first-child { margin-top: 0; }

.prose p,
.prose li {
  color: #a2a3a7;
  font-size: 15.5px;
  line-height: 1.78;
}

.prose li { padding-left: 7px; }
.prose li + li { margin-top: 10px; }

.prose a {
  color: var(--color-text);
  text-decoration-color: rgba(239, 36, 60, 0.65);
  text-underline-offset: 4px;
}

/* Footer */
.site-footer {
  padding-block: 78px 36px;
  border-top-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 46%),
    #090a0b;
}

.footer-grid {
  gap: 42px;
  margin-bottom: 68px;
}

.footer-grid h4 {
  color: #85878c;
  font-size: 9.5px;
  letter-spacing: 0.15em;
}

.footer-grid ul { gap: 12px; }

.footer-grid a {
  color: #bdbdc0;
  transition: color var(--dur-hover) ease, transform var(--dur-hover) ease;
}

.footer-grid a:hover {
  color: var(--color-text);
}

.footer-grid li a {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-grid li a::after {
  content: "↗";
  width: 0;
  opacity: 0;
  color: var(--color-red);
  transform: translate(-4px, 2px);
  transition: width var(--dur-hover) ease, opacity var(--dur-hover) ease, transform var(--dur-hover) ease;
}

.footer-grid li a:hover::after {
  width: 16px;
  opacity: 1;
  transform: translate(5px, 0);
}

.footer-bottom {
  padding-top: 28px;
  border-top-color: rgba(255, 255, 255, 0.075);
  color: #77797e;
  font-size: 10.5px;
}

/* Tablet */
@media (max-width: 1080px) {
  .site-nav .container { margin-inline: 16px; width: auto; }
  .nav-links { gap: 0; }
  .nav-links a { padding-inline: 8px; font-size: 12px; }
  .nav-actions > .btn { display: none; }
}

@media (min-width: 761px) and (max-width: 920px) {
  .mobile-menu-toggle {
    display: block;
    order: 2;
  }

  .nav-actions { order: 3; }

  .nav-links {
    position: absolute;
    top: calc(100% + 9px);
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    gap: 3px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    background: rgba(10, 11, 13, 0.97);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top;
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 240ms var(--ease-reveal);
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-links a {
    padding: 13px 14px;
    font-size: 13px;
  }
}

@media (max-width: 960px) {
  .hero { min-height: auto; }
  .dashboard-mock { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr) !important; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }

  .flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .flow::before { display: none; }

  .flow-step {
    display: block;
    min-height: 180px;
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    text-align: left;
    background: var(--color-surface);
  }

  .flow-step .num {
    margin: 0 0 38px;
    box-shadow: none;
  }
}

/* Mobile */
@media (max-width: 760px) {
  :root {
    --gutter: 20px;
    --space-section: 82px;
  }

  body { background-size: 52px 52px; }

  .site-nav { padding-top: 10px; }

  .site-nav .container {
    height: 58px;
    margin-inline: 10px;
    padding-inline: 8px;
    border-radius: 15px;
  }

  .brand {
    padding-inline: 8px;
    font-size: 12px;
  }

  .mobile-menu-toggle {
    display: block;
    order: 2;
  }

  .nav-actions {
    order: 3;
    gap: 7px;
  }

  .nav-actions > .btn { display: none; }

  .lang-switch { font-size: 10px; }

  .lang-switch a {
    min-width: 28px;
    padding-inline: 6px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 9px);
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    gap: 3px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    background: rgba(10, 11, 13, 0.97);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top;
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 240ms var(--ease-reveal);
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-links a {
    padding: 13px 14px;
    font-size: 13px;
  }

  .transparency-strip {
    margin-top: 10px;
  }

  .transparency-strip .container {
    overflow: hidden;
    padding-inline: 20px;
  }

  .transparency-strip ul {
    width: 100%;
    flex-flow: row nowrap;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .transparency-strip ul::-webkit-scrollbar { display: none; }
  .transparency-strip li { flex: 0 0 auto; }

  .hero {
    padding-block: 66px 70px;
  }

  .hero::before {
    top: 60px;
    font-size: 28vw;
  }

  .hero::after {
    top: 130px;
    right: -58vw;
    width: 110vw;
  }

  .hero h1 {
    font-size: clamp(42px, 13.2vw, 64px);
    line-height: 1.01;
  }

  .hero p.lede { font-size: 16px; }

  .hero .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero .btn { width: 100%; }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 56px;
  }

  .hero-stats .stat {
    min-width: 0;
    padding: 18px 16px 18px 0;
  }

  .hero-stats .stat + .stat { padding-left: 16px; }

  .hero-stats .stat:nth-child(3) {
    grid-column: 1 / -1;
    padding-left: 0;
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .dashboard-mock {
    grid-template-columns: 1fr;
    margin-top: 52px;
    padding: 7px;
    border-radius: 20px;
  }

  .dashboard-mock .panel { min-height: 118px; }

  .section-head h2 { font-size: clamp(30px, 9vw, 42px); }

  .bento,
  .pricing-grid,
  .use-cases,
  .security-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .bento .card { min-height: 196px; }

  .flow {
    grid-template-columns: 1fr;
  }

  .flow-step { min-height: 158px; }

  .steps li {
    padding: 82px 22px 24px;
  }

  .steps li::before {
    top: 21px;
    left: 21px;
  }

  .price-card { min-height: 400px; }

  .page-header {
    padding-block: 92px 70px;
  }

  .page-header::before {
    right: -75vw;
    width: 130vw;
  }

  .page-header h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .use-cases .card { min-height: 250px; }
  .use-cases .card .icon { margin-bottom: 48px; }
  .responsible-split { grid-template-columns: 1fr; }
  .callout { padding: 30px 24px; }
  .cta-band { padding-inline: 22px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child { grid-column: auto; }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats .stat,
  .hero-stats .stat + .stat,
  .hero-stats .stat:nth-child(3) {
    grid-column: auto;
    padding: 16px 0;
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .hero-stats .stat:first-child { border-top: 0; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child,
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { filter: none; }
  .scroll-progress { transition: none; }
  .btn:hover,
  .bento .card:hover,
  .use-cases .card:hover,
  .security-grid .card:hover,
  .contact-card:hover,
  .steps li:hover,
  .price-card:hover,
  .dashboard-mock .panel:hover {
    transform: none;
  }
}

/* ==========================================================================
   HOW IT WORKS / PROCESS MATRIX
   A balanced 12-column process layout scoped to the dedicated page.
   ========================================================================== */

.how-hero .container {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(18px, 2.5vw, 38px);
  align-items: end;
}

.how-hero .eyebrow {
  grid-column: 1 / 3;
  grid-row: 1;
  align-self: start;
  margin-top: 8px;
}

.how-hero h1 {
  grid-column: 3 / 12;
  grid-row: 1 / 3;
  max-width: 980px;
  margin: 0;
  font-size: clamp(52px, 6.4vw, 96px);
}

.how-hero p:not(.eyebrow) {
  grid-column: 8 / 13;
  grid-row: 3;
  width: 100%;
  max-width: none !important;
  margin: clamp(38px, 5vw, 64px) 0 0;
}

.how-process {
  max-width: 1220px;
  margin-inline: auto;
}

.how-process .steps {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px !important;
  border: 1px solid var(--field-line);
  background: var(--field-line);
  overflow: hidden;
}

.how-process .steps li {
  min-width: 0;
  min-height: 280px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 0;
  background:
    linear-gradient(145deg, rgba(239, 35, 60, 0.025), transparent 48%),
    var(--field-panel);
  box-shadow: none;
  overflow: hidden;
}

.how-process .steps li:nth-child(1) {
  grid-column: span 7;
}

.how-process .steps li:nth-child(2) {
  grid-column: span 5;
  background:
    linear-gradient(145deg, rgba(239, 35, 60, 0.035), transparent 52%),
    var(--field-panel-2);
}

.how-process .steps li:nth-child(3) {
  grid-column: span 5;
  background:
    linear-gradient(145deg, rgba(239, 35, 60, 0.035), transparent 52%),
    var(--field-panel-2);
}

.how-process .steps li:nth-child(4) {
  grid-column: span 7;
}

.how-process .steps li:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  grid-template-columns: 58px minmax(230px, 0.72fr) minmax(300px, 1fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
}

.how-process .steps li::before {
  position: static;
  width: 50px;
  height: 50px;
  margin: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--field-red-line);
  border-radius: 50%;
  color: var(--field-red);
  background: var(--field-black);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.how-process .steps li:nth-child(5)::before {
  margin: 0;
}

.how-process .steps li .title {
  max-width: 500px;
  margin: 46px 0 0;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.how-process .steps li p {
  max-width: 590px;
  margin: 18px 0 0 !important;
  color: #999994 !important;
  font-size: 11px !important;
  line-height: 1.75;
}

.how-process .steps li:nth-child(5) .title,
.how-process .steps li:nth-child(5) p {
  margin: 0 !important;
}

.how-process .steps li:hover,
.how-process .steps li:nth-child(5):hover {
  padding: 32px;
  color: var(--field-paper);
  border: 0;
  background:
    linear-gradient(145deg, rgba(239, 35, 60, 0.065), transparent 56%),
    var(--field-panel-2);
  box-shadow: inset 0 3px 0 var(--field-red);
  transform: none;
}

.how-process .steps li::after {
  height: 3px;
  background: var(--field-red);
}

.how-process-cta {
  min-height: 92px;
  margin: 0 !important;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  border: 1px solid var(--field-line);
  border-top: 0;
  background: var(--field-panel);
}

.how-process-cta::before {
  content: "NEXT / ONBOARDING";
  position: absolute;
  left: 22px;
  color: #777772;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

@media (max-width: 920px) {
  .how-hero .eyebrow {
    grid-column: 1 / 4;
  }

  .how-hero h1 {
    grid-column: 2 / 13;
    font-size: clamp(48px, 8vw, 72px);
  }

  .how-hero p:not(.eyebrow) {
    grid-column: 6 / 13;
  }

  .how-process .steps li:nth-child(-n + 4) {
    grid-column: span 6;
    min-height: 260px;
  }

  .how-process .steps li:nth-child(5) {
    grid-column: 1 / -1;
    grid-template-columns: 52px minmax(200px, 0.8fr) minmax(260px, 1fr);
  }
}

@media (max-width: 680px) {
  .how-hero .container {
    display: block;
  }

  .how-hero .eyebrow {
    margin: 0 0 28px;
  }

  .how-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .how-hero p:not(.eyebrow) {
    margin-top: 32px;
  }

  .how-process .steps {
    grid-template-columns: 1fr;
  }

  .how-process .steps li,
  .how-process .steps li:nth-child(-n + 4),
  .how-process .steps li:nth-child(5) {
    grid-column: 1;
    min-height: 220px;
    padding: 24px;
    display: flex;
  }

  .how-process .steps li:hover,
  .how-process .steps li:nth-child(5):hover {
    padding: 24px;
  }

  .how-process .steps li::before,
  .how-process .steps li:nth-child(5)::before {
    width: 44px;
    height: 44px;
    margin: 0 0 auto;
  }

  .how-process .steps li .title,
  .how-process .steps li:nth-child(5) .title {
    margin: 38px 0 0 !important;
    font-size: 24px;
  }

  .how-process .steps li p,
  .how-process .steps li:nth-child(5) p {
    margin: 16px 0 0 !important;
  }

  .how-process-cta {
    padding: 18px;
  }

  .how-process-cta::before {
    display: none;
  }

  .how-process-cta .btn {
    width: 100%;
  }
}

/* ==========================================================================
   GUARDIANX / FIELD SYSTEM 03
   Original editorial-technical art direction. High-contrast typography,
   modular control panels and a locally generated signal field.
   ========================================================================== */

:root {
  --field-black: #050505;
  --field-panel: #0a0a0a;
  --field-panel-2: #0f0f0f;
  --field-paper: #f0eee8;
  --field-dim: #8b8b86;
  --field-red: #ef233c;
  --field-red-dark: #a80f25;
  --field-accent-panel: #120d0f;
  --field-accent-panel-hover: #191114;
  --field-red-line: rgba(239, 35, 60, 0.42);
  --field-red-wash: rgba(239, 35, 60, 0.09);
  --field-line: rgba(240, 238, 232, 0.18);
  --field-line-soft: rgba(240, 238, 232, 0.09);
  --field-cell: 48px;
  --color-canvas: var(--field-black);
  --color-surface: var(--field-panel);
  --color-elevated: var(--field-panel-2);
  --color-border: var(--field-line);
  --color-text: var(--field-paper);
  --color-muted: var(--field-dim);
  --color-red: var(--field-red);
  --color-red-hover: #ff4257;
  --color-red-deep: rgba(239, 35, 60, 0.62);
  --container-max: 1440px;
  --radius-sm: 0;
  --radius-lg: 0;
  --space-section: clamp(104px, 11vw, 164px);
}

html {
  background: var(--field-black);
}

body {
  counter-reset: guardian-section;
  color: var(--field-paper);
  background-color: var(--field-black);
  background-image:
    linear-gradient(var(--field-line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--field-line-soft) 1px, transparent 1px);
  background-size: var(--field-cell) var(--field-cell);
}

body::before {
  z-index: -1;
  background:
    linear-gradient(180deg, var(--field-black) 0, transparent 16%, transparent 84%, var(--field-black) 100%),
    radial-gradient(80vw 60vw at 84% 7%, rgba(239, 35, 60, 0.075), transparent 68%);
}

.ambient-glow {
  opacity: 1;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(239, 35, 60, 0.055) 50%, transparent 50.1%),
    radial-gradient(520px circle at 84% 20%, rgba(239, 35, 60, 0.11), transparent 72%);
}

/* Ambient snake traces aligned to the global background grid. */
.grid-signals {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  display: block;
  overflow: visible;
  pointer-events: none;
  contain: paint;
  mix-blend-mode: screen;
}

.grid-signals::before,
.grid-signals::after {
  content: "";
  position: absolute;
  display: block;
  width: 192px;
  height: 144px;
  border-top: 1.5px solid rgba(255, 70, 88, 0.34);
  border-right: 1.5px solid rgba(255, 70, 88, 0.34);
  border-bottom: 1.5px solid rgba(255, 70, 88, 0.34);
  filter:
    drop-shadow(0 0 6px rgba(255, 90, 106, 0.26))
    drop-shadow(0 0 22px rgba(239, 35, 60, 0.16));
  opacity: 0;
  animation: guardian-grid-fallback-snake 5.8s linear infinite;
}

.grid-signals::before {
  left: 44vw;
  top: 62vh;
}

.grid-signals::after {
  right: 10vw;
  top: 30vh;
  transform: rotate(180deg);
  animation-delay: 2.8s;
}

body > .transparency-strip,
body > header,
body > main,
body > section,
body > footer {
  position: relative;
  z-index: 2;
}

.grid-snake {
  --snake-opacity: 0.52;
  position: absolute;
  inset: 0;
  opacity: var(--snake-opacity);
  will-change: transform, opacity;
}

.grid-snake-segment {
  position: absolute;
  left: var(--segment-x);
  top: var(--segment-y);
  display: block;
  border-radius: 999px;
  background: rgba(255, 72, 90, 0.66);
  box-shadow:
    0 0 5px rgba(255, 100, 116, 0.34),
    0 0 16px rgba(239, 35, 60, 0.22),
    0 0 36px rgba(239, 35, 60, 0.1);
  opacity: 0.52;
  will-change: opacity, transform, filter;
  animation-duration: var(--segment-life);
  animation-delay: var(--segment-delay);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.18, 0.82, 0.2, 1);
}

.grid-snake-segment::before,
.grid-snake-segment::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.grid-snake-segment::before {
  inset: -7px;
  border-radius: inherit;
  background: currentColor;
  color: rgba(239, 35, 60, 0.2);
  filter: blur(6px);
}

.grid-snake-segment::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 216, 220, 0.78);
  box-shadow:
    0 0 6px rgba(255, 238, 240, 0.38),
    0 0 16px rgba(239, 35, 60, 0.34);
}

.grid-snake-segment--horizontal {
  width: var(--segment-length);
  height: 1.5px;
  animation-name: guardian-grid-snake-horizontal;
}

.grid-snake-segment--vertical {
  width: 1.5px;
  height: var(--segment-length);
  animation-name: guardian-grid-snake-vertical;
}

.grid-snake-segment--east::after {
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
}

.grid-snake-segment--east {
  transform-origin: left center;
}

.grid-snake-segment--west::after {
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
}

.grid-snake-segment--west {
  transform-origin: right center;
}

.grid-snake-segment--south::after {
  left: 50%;
  bottom: -3px;
  transform: translateX(-50%);
}

.grid-snake-segment--south {
  transform-origin: center top;
}

.grid-snake-segment--north::after {
  left: 50%;
  top: -3px;
  transform: translateX(-50%);
}

.grid-snake-segment--north {
  transform-origin: center bottom;
}

@keyframes guardian-grid-snake-horizontal {
  0% { opacity: 0.1; transform: scaleX(0.38); filter: blur(1px); }
  20% { opacity: 0.54; transform: scaleX(1); filter: blur(0); }
  58% { opacity: 0.34; }
  100% { opacity: 0; transform: scaleX(1); filter: blur(1.5px); }
}

@keyframes guardian-grid-snake-vertical {
  0% { opacity: 0.1; transform: scaleY(0.38); filter: blur(1px); }
  20% { opacity: 0.54; transform: scaleY(1); filter: blur(0); }
  58% { opacity: 0.34; }
  100% { opacity: 0; transform: scaleY(1); filter: blur(1.5px); }
}

@keyframes guardian-grid-fallback-snake {
  0%, 18% { opacity: 0; }
  24% { opacity: 0.2; }
  52% { opacity: 0.2; }
  64%, 100% { opacity: 0; }
}

.container {
  max-width: var(--container-max);
  padding-inline: clamp(22px, 3.2vw, 52px);
}

.scroll-progress {
  right: auto;
  bottom: auto;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: var(--field-red);
  box-shadow: none;
}

::selection {
  color: var(--field-black);
  background: var(--field-red);
}

/* Reveal as an editorial plate entering the viewport. */
.reveal {
  opacity: 0;
  filter: none;
  clip-path: inset(0 0 100% 0);
  transform: translateY(34px);
  transition:
    opacity 520ms ease,
    transform 760ms var(--ease-reveal),
    clip-path 760ms var(--ease-reveal);
  transition-delay: var(--d, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: none;
}

html:not(.js) .reveal {
  opacity: 1;
  filter: none;
  clip-path: none;
  transform: none;
}

html:not(.js) .hero .container {
  grid-template-columns: 1fr;
}

/* ---------- Control-rail navigation ---------- */
.site-nav,
.site-nav.is-scrolled {
  top: 0;
  padding: 0;
  border: 0;
  background: var(--field-black);
  box-shadow: none;
}

.site-nav .container,
.site-nav.is-scrolled .container {
  width: 100%;
  max-width: none;
  height: 72px;
  margin: 0;
  padding-inline: clamp(16px, 2.2vw, 34px);
  border: 0;
  border-bottom: 1px solid var(--field-line);
  border-radius: 0;
  background: rgba(5, 5, 5, 0.96);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.brand {
  height: 100%;
  gap: 12px;
  padding: 0 22px 0 0;
  border-right: 1px solid var(--field-line);
  border-radius: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.brand::after {
  content: "/ SYS.01";
  margin-left: 4px;
  color: #61615d;
  font-size: 9px;
  letter-spacing: 0.11em;
}

.brand .dot {
  width: 13px;
  height: 15px;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 43%, var(--field-paper) 0 1.3px, transparent 1.6px),
    var(--field-red);
  box-shadow: none;
}

.brand-with-logo {
  gap: 10px;
}

.brand-logo-image {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: block;
  border: 1px solid rgba(239, 36, 60, 0.28);
  border-radius: 7px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(239, 36, 60, 0.12);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.brand-with-logo:hover .brand-logo-image {
  transform: scale(1.045);
  border-color: rgba(239, 36, 60, 0.62);
  box-shadow: 0 0 24px rgba(239, 36, 60, 0.24);
}

.site-footer .brand-logo-image {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
}

.nav-links {
  height: 100%;
  gap: 0;
  padding: 0;
  border-left: 1px solid var(--field-line);
  border-radius: 0;
  font-family: var(--font-mono);
}

.nav-links li {
  height: 100%;
  border-right: 1px solid var(--field-line);
}

.nav-links a {
  height: 100%;
  padding: 0 clamp(12px, 1.55vw, 25px);
  display: grid;
  place-items: center;
  border-radius: 0;
  color: #a09f9a;
  font-size: 10px;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--field-black);
  background: var(--field-paper);
}

.nav-actions {
  height: 100%;
  gap: 0;
  border-left: 1px solid var(--field-line);
}

.lang-switch {
  height: 100%;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.lang-switch a {
  min-width: 44px;
  height: 100%;
  padding: 0;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--field-line);
  border-radius: 0;
  color: #73736f;
}

.lang-switch a:hover {
  color: var(--field-paper);
  background: #111;
}

.lang-switch a[aria-current="true"] {
  color: var(--field-black);
  background: var(--field-red);
}

.site-nav .nav-actions > .btn {
  height: 100%;
  min-height: 0;
  padding-inline: 25px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav .nav-actions > .btn:hover {
  color: var(--field-black);
  background: var(--field-paper);
  transform: none;
}

.mobile-menu-toggle {
  height: 100%;
  width: 60px;
  border: 0;
  border-inline: 1px solid var(--field-line);
  border-radius: 0;
  background: transparent;
}

.mobile-menu-toggle span {
  width: 20px;
  background: var(--field-paper);
}

/* ---------- Signal ticker ---------- */
.transparency-strip {
  height: 34px;
  margin: 0;
  border-bottom: 1px solid rgba(255, 95, 112, 0.22);
  background:
    linear-gradient(180deg, rgba(170, 18, 39, 0.98), rgba(96, 8, 23, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.32);
}

.transparency-strip .container {
  height: 100%;
  max-width: none;
  padding: 0;
  display: block;
  overflow: hidden;
  color: #fff8f4;
}

.transparency-strip ul {
  width: max-content;
  min-width: 100%;
  height: 100%;
  flex-flow: row nowrap;
  gap: 0;
  align-items: center;
  justify-content: space-around;
  margin: 0;
  padding-inline: 24px;
}

.transparency-strip li {
  gap: 14px;
  padding-inline: 24px;
  color: #fff8f4;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.42);
}

.transparency-strip li::before {
  width: 11px;
  height: 1px;
  border-radius: 0;
  background: rgba(255, 248, 244, 0.78);
  box-shadow: 0 0 14px rgba(255, 110, 124, 0.24);
}

/* ---------- Hero / generated signal ---------- */
.hero {
  min-height: calc(100svh - 106px);
  padding: 0;
  border-bottom: 1px solid var(--field-line);
  background: rgba(5, 5, 5, 0.32);
  overflow: hidden;
}

.hero::before,
.hero::after {
  display: none;
}

.hero .container {
  min-height: calc(100svh - 106px);
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(320px, 0.72fr);
  grid-template-rows: auto auto auto auto;
  align-content: center;
  column-gap: clamp(34px, 5vw, 82px);
  padding-top: clamp(38px, 4.5vh, 56px);
  padding-bottom: clamp(126px, 20vh, 220px);
}

.hero .eyebrow {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  margin: 0 0 clamp(28px, 4vh, 46px);
}

.hero h1 {
  grid-column: 1;
  grid-row: 2;
  max-width: none;
  margin: 0;
  color: var(--field-paper);
  font-size: clamp(56px, 6.6vw, 100px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.068em;
  text-wrap: balance;
}

.hero-statement {
  position: relative;
  isolation: isolate;
}

.hero-statement::before {
  content: "";
  position: absolute;
  left: -2px;
  top: -0.06em;
  width: min(420px, 48%);
  height: 2px;
  background: linear-gradient(90deg, var(--field-red), transparent);
  box-shadow: 0 0 26px rgba(239, 35, 60, 0.38);
  opacity: 0.8;
}

.hero-line {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.06),
    0 0 34px rgba(239, 35, 60, 0.08);
}

.hero-line::after {
  content: "";
  position: absolute;
  left: 0.02em;
  right: 0.06em;
  bottom: 0.03em;
  height: 0.045em;
  background: linear-gradient(90deg, transparent, rgba(239, 35, 60, 0.84), transparent);
  opacity: 0;
  transform: scaleX(0.12);
  transform-origin: left center;
  animation: guardian-hero-statement-signal 6.4s ease-in-out infinite;
  mix-blend-mode: screen;
}

.hero-line:nth-child(2)::after { animation-delay: 420ms; }
.hero-line:nth-child(3)::after { animation-delay: 840ms; }

.hero-line--primary {
  color: #fffdfa;
}

@keyframes guardian-hero-statement-signal {
  0%, 18%, 100% {
    opacity: 0;
    transform: scaleX(0.08);
  }
  28% {
    opacity: 0.55;
    transform: scaleX(0.42);
  }
  44% {
    opacity: 0.26;
    transform: scaleX(1);
  }
  58% {
    opacity: 0;
    transform: scaleX(1);
  }
}

.hero p.lede {
  grid-column: 1;
  grid-row: 3;
  max-width: 720px;
  margin: clamp(34px, 4vh, 54px) 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--field-line);
  color: #a09f9a;
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.9vw, 13px);
  line-height: 1.8;
}

.hero .actions {
  grid-column: 1;
  grid-row: 4;
  justify-content: flex-start;
  gap: 0;
  margin-top: 30px;
}

.guardian-signal {
  --signal-x: 0px;
  --signal-y: 0px;
  grid-column: 2;
  grid-row: 1 / 5;
  position: relative;
  min-height: min(66vh, 650px);
  border: 1px solid var(--field-line);
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(239, 35, 60, 0.14) 50%, transparent 50.3%),
    linear-gradient(transparent 49.7%, rgba(239, 35, 60, 0.14) 50%, transparent 50.3%),
    var(--field-panel);
  background-size: 100% 100%, 100% 100%, auto;
  overflow: hidden;
  isolation: isolate;
}

.guardian-signal::before {
  content: "GUARDIANX / SIGNAL MAP / 01";
  position: absolute;
  top: 16px;
  left: 17px;
  z-index: 3;
  color: #777772;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.guardian-signal::after {
  content: "";
  position: absolute;
  inset: -35% 0 auto;
  z-index: 2;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(239, 35, 60, 0.09), var(--field-red), rgba(239, 35, 60, 0.07), transparent);
  opacity: 0.5;
  animation: guardian-scan 7s linear infinite;
  mix-blend-mode: screen;
}

.guardian-signal .signal-logo-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92%, 520px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: saturate(0.92) brightness(0.94);
  transform: translate(calc(-50% + var(--signal-x)), calc(-50% + var(--signal-y)));
  transition:
    transform 560ms var(--ease-reveal),
    filter 280ms ease;
}

.guardian-signal:hover .signal-logo-image {
  filter: saturate(1.05) brightness(1.04);
}

.guardian-signal .signal-meta {
  position: absolute;
  right: 14px;
  bottom: 13px;
  z-index: 3;
  color: #74746f;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guardian-signal .signal-meta::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--field-red);
  box-shadow: 0 0 10px var(--field-red);
  animation: guardian-pulse 1.8s ease-in-out infinite;
}

@keyframes guardian-scan {
  from { transform: translateY(0); }
  to { transform: translateY(440%); }
}

@keyframes guardian-pulse {
  0%, 100% { opacity: 0.34; }
  50% { opacity: 1; }
}

/* ---------- Buttons / controls ---------- */
.btn {
  position: relative;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--field-line);
  border-radius: 0;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 650;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  box-shadow: none;
  overflow: hidden;
}

.btn::before {
  content: "↗";
  margin-right: 2px;
  font-size: 12px;
  transition: transform 240ms var(--ease-reveal);
}

.btn:hover::before {
  transform: translate(3px, -3px);
}

.btn:hover {
  transform: none;
}

.btn-primary,
.btn-primary:hover {
  color: #fff8f4;
  border-color: rgba(255, 82, 100, 0.58);
  background:
    linear-gradient(180deg, rgba(203, 27, 49, 0.96), rgba(132, 13, 30, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(239, 35, 60, 0.08),
    0 16px 42px rgba(239, 35, 60, 0.13);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.42);
}

.btn-primary:hover {
  color: #fffdf8;
  border-color: rgba(255, 124, 137, 0.72);
  background:
    linear-gradient(180deg, rgba(219, 31, 56, 0.98), rgba(155, 16, 36, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 0 0 1px rgba(255, 92, 108, 0.16),
    0 18px 48px rgba(239, 35, 60, 0.18);
}

.btn-primary::after {
  display: none;
}

.btn-ghost {
  background: var(--field-black);
  border-color: var(--field-line);
}

.btn-ghost:hover {
  color: var(--field-black);
  border-color: var(--field-paper);
  background: var(--field-paper);
  box-shadow: none;
}

/* ---------- Indexed editorial sections ---------- */
section {
  counter-increment: guardian-section;
  position: relative;
  padding-block: var(--space-section);
  border-top: 0;
  border-bottom: 1px solid var(--field-line);
  background: rgba(5, 5, 5, 0.58);
}

section:nth-of-type(even) {
  background: rgba(10, 10, 10, 0.62);
}

section::before {
  content: "0" counter(guardian-section);
  position: absolute;
  top: 22px;
  right: clamp(22px, 3.2vw, 52px);
  color: var(--field-red);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

section::after {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(22px, 3.2vw, 52px);
  width: 42px;
  height: 3px;
  background: var(--field-red);
}

section.tight {
  padding-block: clamp(84px, 8vw, 122px);
}

.section-head {
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(56px, 7vw, 104px);
  display: grid;
  grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
  column-gap: clamp(30px, 6vw, 108px);
}

.section-head .eyebrow {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  margin: 6px 0 0;
}

.section-head h2 {
  grid-column: 2;
  max-width: 970px;
  margin: 0;
  color: var(--field-paper);
  font-size: clamp(38px, 5.6vw, 80px);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: -0.062em;
}

.section-head p:not(.eyebrow) {
  grid-column: 2;
  max-width: 700px;
  margin: 26px 0 0;
  color: #94948f;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.75;
}

.hero .eyebrow,
.page-header .eyebrow,
.section-head .eyebrow {
  color: #a3a29d;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.hero .eyebrow::before,
.page-header .eyebrow::before,
.section-head .eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--field-red);
  box-shadow: none;
}

/* ---------- Connected flow ---------- */
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--field-line);
  border-left: 1px solid var(--field-line);
}

.flow::before {
  display: none;
}

.flow-step {
  min-width: 0;
  min-height: 244px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--field-line);
  border-bottom: 1px solid var(--field-line);
  text-align: left;
  background: var(--field-panel);
  overflow: hidden;
  transition: color 280ms ease, background 280ms ease;
}

.flow-step:hover {
  color: var(--field-paper);
  background: linear-gradient(145deg, var(--field-accent-panel-hover), var(--field-panel));
  box-shadow: inset 0 3px 0 var(--field-red);
}

.flow-step .num {
  width: auto;
  height: auto;
  margin: 0 0 auto;
  border: 0;
  border-radius: 0;
  color: var(--field-red);
  background: transparent;
  box-shadow: none;
  font-size: 11px;
}

.flow-step:hover .num {
  color: var(--field-red);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.flow-step .flow-title {
  max-width: 170px;
  margin: 58px 0 0;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.25;
}

/* ---------- Modular card fields ---------- */
.bento,
.use-cases,
.security-grid,
.contact-grid,
.pricing-grid {
  gap: 0;
  border-top: 1px solid var(--field-line);
  border-left: 1px solid var(--field-line);
}

.bento .card,
.use-cases .card,
.security-grid .card,
.contact-card,
.price-card {
  margin: 0;
  border: 0;
  border-right: 1px solid var(--field-line);
  border-bottom: 1px solid var(--field-line);
  border-radius: 0;
  background: rgba(8, 8, 8, 0.94);
  box-shadow: none;
  overflow: hidden;
  transition:
    color 320ms var(--ease-reveal),
    background 320ms var(--ease-reveal);
}

.bento .card {
  min-height: 280px;
  padding: 24px;
}

.bento .card:hover,
.use-cases .card:hover,
.security-grid .card:hover,
.contact-card:hover {
  color: var(--field-paper);
  background: linear-gradient(145deg, var(--field-accent-panel-hover), var(--field-panel));
  border-color: var(--field-red-line);
  box-shadow: inset 0 3px 0 var(--field-red);
  transform: none;
}

.bento .card h3,
.use-cases .card h3,
.security-grid .card h3 {
  margin-top: auto;
  color: inherit;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.bento .card p,
.use-cases .card p,
.security-grid .card p {
  color: #8d8d88;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.65;
  transition: color 280ms ease;
}

.bento .card:hover p,
.use-cases .card:hover p,
.security-grid .card:hover p,
.contact-card:hover p {
  color: #aaa9a4;
}

.bento .card,
.use-cases .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.icon,
.bento .card .icon,
.use-cases .card .icon {
  width: 46px;
  height: 46px;
  margin: 0 0 auto;
  border: 1px solid rgba(239, 35, 60, 0.45);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  transition: border-color 280ms ease, background 280ms ease, transform 420ms var(--ease-reveal);
}

.card:hover .icon,
.use-cases .card:hover .icon {
  border-color: var(--field-red);
  background: var(--field-red-wash);
  transform: rotate(45deg);
}

.card:hover .icon::before,
.card:hover .icon::after,
.use-cases .card:hover .icon::before,
.use-cases .card:hover .icon::after {
  filter: brightness(0) invert(1);
}

.card::after,
.price-card::after,
.steps li::after {
  inset: auto 0 0;
  height: 3px;
  opacity: 0;
  background: var(--field-paper);
  transition: opacity 220ms ease;
}

.card:hover::after,
.price-card:hover::after,
.steps li:hover::after {
  opacity: 1;
}

/* ---------- Use cases / security / contact ---------- */
.use-cases .card {
  min-height: 390px;
  padding: 30px;
}

.use-cases .card .icon {
  width: 58px;
  height: 58px;
}

.security-grid .card {
  min-height: 270px;
  padding: 28px;
}

.security-grid .card h3 {
  margin: 0 0 auto;
  color: inherit;
}

.security-grid .card h3::before {
  width: 34px;
  height: 2px;
  margin-bottom: 24px;
  background: var(--field-red);
}

.security-grid .card:hover h3::before {
  background: var(--field-red);
}

.contact-card {
  min-height: 260px;
  padding: 28px;
  text-align: left;
}

.contact-card h3 {
  color: var(--field-red);
  font-size: 9px;
}

.contact-card:hover h3 {
  color: var(--field-red);
}

/* ---------- Long-form steps ---------- */
.steps {
  gap: 0 !important;
  border-top: 1px solid var(--field-line);
}

.steps li {
  min-height: 150px;
  padding: 30px 34px 30px 124px;
  border: 0;
  border-bottom: 1px solid var(--field-line);
  border-radius: 0;
  background: var(--field-panel);
  transition: color 280ms ease, background 280ms ease, padding 380ms var(--ease-reveal);
}

.steps li:hover {
  padding-left: 144px;
  color: var(--field-paper);
  border-color: var(--field-red-line);
  background: linear-gradient(90deg, var(--field-accent-panel-hover), var(--field-panel));
  box-shadow: inset 3px 0 0 var(--field-red);
  transform: none;
}

.steps li::before {
  top: 30px;
  left: 34px;
  width: 54px;
  height: 54px;
  border: 1px solid var(--field-red);
  border-radius: 50%;
  background: transparent;
}

.steps li:hover::before {
  color: var(--field-black);
  border-color: var(--field-red);
  background: var(--field-red);
}

.steps li .title {
  color: inherit;
  font-size: clamp(18px, 2vw, 28px);
}

.steps li p {
  max-width: 820px;
  color: #8d8d88 !important;
  font-family: var(--font-mono);
  font-size: 10px !important;
  line-height: 1.75;
}

.steps li:hover p {
  color: #aaa9a4 !important;
}

/* ---------- Responsibility / callout ---------- */
.responsible-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--field-line);
}

.responsible-split > * {
  min-width: 0;
  min-height: clamp(620px, 62vw, 860px);
  padding: clamp(28px, 4vw, 58px);
  display: flex;
  flex-direction: column;
}

.responsible-split > * + * {
  border-left: 1px solid var(--field-line);
}

.responsible-split .section-head {
  display: block;
  margin-bottom: 28px !important;
}

.responsible-split .section-head .eyebrow {
  margin: 0 0 28px;
}

.responsible-split .section-head h2 {
  max-width: 640px;
  font-size: clamp(42px, 4.15vw, 70px);
  line-height: 0.94;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.responsible-split .responsible-list {
  margin-top: auto;
}

.responsible-list li {
  border-color: var(--field-line);
  font-family: var(--font-mono);
  font-size: 11px;
}

.responsible-list li::before {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 0;
  background: var(--field-red);
  box-shadow: none;
}

.callout {
  padding: clamp(36px, 6vw, 84px);
  border: 1px solid var(--field-red-line);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(239, 35, 60, 0.055), transparent 46%),
    var(--field-accent-panel);
  box-shadow: inset 0 3px 0 var(--field-red);
}

.callout::after {
  content: "[!]";
  right: 28px;
  bottom: 12px;
  color: rgba(239, 35, 60, 0.07);
  font-family: var(--font-mono);
  font-size: clamp(100px, 16vw, 220px);
}

.callout .eyebrow {
  color: var(--field-red);
}

.callout blockquote {
  max-width: 1050px;
  color: var(--field-paper);
  font-size: clamp(26px, 3.5vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.policy-card {
  justify-content: center;
}

.policy-card .eyebrow {
  position: relative;
  z-index: 3;
  margin-bottom: clamp(34px, 4vw, 58px);
}

.policy-legend {
  width: min(100%, 660px);
  display: grid;
  gap: 0;
}

.policy-legend .legend-primary {
  position: relative;
  display: block;
  max-width: 11ch;
  padding-bottom: clamp(26px, 3vw, 40px);
  color: var(--field-paper);
  font-size: clamp(48px, 4.25vw, 78px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.058em;
  text-wrap: balance;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.08),
    0 0 36px rgba(239, 35, 60, 0.12);
}

.policy-legend .legend-primary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(280px, 62%);
  height: 2px;
  background: linear-gradient(90deg, var(--field-red), rgba(239, 35, 60, 0));
  box-shadow: 0 0 22px rgba(239, 35, 60, 0.35);
}

.policy-legend .legend-rule {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  min-height: 76px;
  padding-block: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #d7d4cf;
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.9vw, 13px);
  line-height: 1.55;
  letter-spacing: 0.015em;
}

.policy-legend .legend-rule::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--field-red);
  box-shadow:
    0 0 12px rgba(239, 35, 60, 0.45),
    0 0 38px rgba(239, 35, 60, 0.12);
}

.policy-legend .legend-rule:hover {
  color: var(--field-paper);
  border-bottom-color: rgba(239, 35, 60, 0.36);
}

/* ---------- Pricing field ---------- */
.pricing-shell,
.pricing-page-header .container {
  text-align: center;
}

.pricing-shell .section-head {
  display: block;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.pricing-shell .section-head .eyebrow {
  margin: 0 auto 26px;
}

.pricing-shell .section-head h2,
.pricing-shell .section-head p:not(.eyebrow) {
  max-width: 820px;
  margin-inline: auto;
}

.pricing-shell .section-head p:not(.eyebrow) {
  margin-top: 24px;
}

.pricing-shell .pricing-grid {
  max-width: 980px !important;
  margin-inline: auto;
}

.billed-by {
  margin-bottom: 0;
  padding: 12px 16px;
  border: 1px solid var(--field-line);
  border-bottom: 0;
  border-radius: 0;
  color: #8c8c87;
  background: var(--field-panel);
  font-size: 9px;
}

.price-card {
  min-height: 500px;
  padding: 32px;
}

.price-card.featured,
.price-card.featured:hover {
  color: var(--field-paper);
  border-color: var(--field-red-line);
  background:
    linear-gradient(145deg, rgba(239, 35, 60, 0.055), transparent 48%),
    var(--field-accent-panel);
  box-shadow: inset 0 3px 0 var(--field-red);
}

.price-card:hover {
  border-color: var(--field-line);
  background: var(--field-panel-2);
  box-shadow: none;
  transform: none;
}

.price-card .tier {
  color: #8d8d88;
  font-size: 9px;
}

.price-card.featured .tier,
.price-card.featured ul {
  color: #aaa9a4;
}

.price-card.featured .tier span {
  color: var(--field-red) !important;
}

.price-card.featured .amount span {
  color: #aaa9a4;
}

.price-card .amount {
  margin-block: 44px 28px;
  font-size: clamp(52px, 6vw, 84px);
  letter-spacing: -0.07em;
}

.price-card ul {
  padding-top: 24px;
  border-top: 1px solid var(--field-line);
  font-family: var(--font-mono);
  font-size: 10px;
}

.price-card.featured ul {
  border-top-color: var(--field-line);
}

.price-card.featured ul li::before {
  background: var(--field-red);
  box-shadow: none;
}

.price-card.featured .btn-primary {
  color: #fff8f4;
  border-color: rgba(255, 82, 100, 0.58);
  background:
    linear-gradient(180deg, rgba(203, 27, 49, 0.96), rgba(132, 13, 30, 0.98));
}

.price-card.featured .btn-primary:hover {
  color: #fffdf8;
  border-color: rgba(255, 124, 137, 0.72);
  background:
    linear-gradient(180deg, rgba(219, 31, 56, 0.98), rgba(155, 16, 36, 0.98));
}

.price-note {
  max-width: 980px;
  padding: 16px;
  border: 1px solid var(--field-line);
  border-top: 0;
  font-size: 9px;
}

/* ---------- FAQ ---------- */
.faq {
  border-top: 1px solid var(--field-line);
}

.faq details {
  border-bottom: 1px solid var(--field-line);
  background: var(--field-black);
  transition: color 280ms ease, background 280ms ease;
}

.faq details:hover,
.faq details[open] {
  color: var(--field-black);
  background: var(--field-paper);
}

.faq summary {
  min-height: 92px;
  padding: 20px 24px;
  font-size: clamp(17px, 2vw, 26px);
  font-weight: 500;
}

.faq summary:hover {
  color: inherit;
}

.faq summary::after {
  width: 42px;
  height: 42px;
  border-color: var(--field-line);
  border-radius: 50%;
  background: transparent;
}

.faq details:hover summary::after,
.faq details[open] summary::after {
  color: var(--field-paper);
  border-color: var(--field-black);
  background: var(--field-black);
}

.faq details p {
  max-width: 820px;
  padding: 0 84px 32px 24px;
  color: #74746f;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.75;
}

/* ---------- Page heads / prose ---------- */
.page-header {
  min-height: min(72svh, 760px);
  padding-block: clamp(112px, 14vw, 190px) clamp(84px, 10vw, 140px);
  border-bottom: 1px solid var(--field-line);
  background: rgba(5, 5, 5, 0.54);
}

.page-header::before {
  top: auto;
  right: clamp(22px, 3.2vw, 52px);
  bottom: 22px;
  width: min(34vw, 460px);
  aspect-ratio: 1;
  transform: none;
  border: 0;
  border-radius: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 8px, rgba(239, 35, 60, 0.16) 8px 9px),
    repeating-linear-gradient(90deg, transparent 0 8px, rgba(239, 35, 60, 0.16) 8px 9px);
  box-shadow: none;
  mask-image: radial-gradient(circle, #000 0 47%, transparent 72%);
}

.page-header h1 {
  max-width: 1080px;
  color: var(--field-paper);
  font-size: clamp(54px, 7.5vw, 112px);
  line-height: 0.91;
  letter-spacing: -0.072em;
}

.page-header p:not(.eyebrow) {
  max-width: 720px !important;
  padding-top: 20px;
  border-top: 1px solid var(--field-line);
  color: #90908b !important;
  font-family: var(--font-mono);
  font-size: 11px !important;
}

.pricing-page-header h1,
.pricing-page-header p:not(.eyebrow) {
  margin-inline: auto;
}

.prose {
  max-width: 1040px;
  padding-left: clamp(22px, 4vw, 64px);
  border-left: 1px solid var(--field-line);
}

.prose h2 {
  margin: 72px 0 24px;
  color: var(--field-paper);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1;
  letter-spacing: -0.052em;
}

.prose p,
.prose li {
  color: #979792;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.85;
}

.prose strong {
  color: var(--field-paper);
}

/* ---------- CTA / footer ---------- */
.cta-band {
  padding: clamp(72px, 10vw, 140px) clamp(28px, 6vw, 90px);
  border: 1px solid var(--field-red-line);
  border-radius: 0;
  color: var(--field-paper);
  background:
    radial-gradient(60% 120% at 100% 0, rgba(239, 35, 60, 0.11), transparent 72%),
    var(--field-accent-panel);
  box-shadow: inset 0 3px 0 var(--field-red);
}

.cta-band::before {
  background:
    repeating-linear-gradient(0deg, transparent 0 12px, rgba(239, 35, 60, 0.045) 12px 13px),
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(239, 35, 60, 0.045) 12px 13px);
}

.cta-band h2 {
  max-width: 920px;
  color: var(--field-paper);
  font-size: clamp(38px, 5.8vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.cta-band p {
  color: #aaa9a4;
  font-family: var(--font-mono);
  font-size: 10px;
}

.cta-band .btn-primary,
.cta-band .btn-primary:hover {
  color: #fff8f4;
  border-color: rgba(255, 82, 100, 0.58);
  background:
    linear-gradient(180deg, rgba(203, 27, 49, 0.96), rgba(132, 13, 30, 0.98));
}

.cta-band .btn-primary:hover {
  color: #fffdf8;
  border-color: rgba(255, 124, 137, 0.72);
  background:
    linear-gradient(180deg, rgba(219, 31, 56, 0.98), rgba(155, 16, 36, 0.98));
}

.cta-band .btn-ghost {
  color: var(--field-paper);
  border-color: var(--field-line);
  background: transparent;
}

.cta-band .btn-ghost:hover {
  color: var(--field-black);
  border-color: var(--field-paper);
  background: var(--field-paper);
}

.site-footer {
  padding: 0;
  border-top: 0;
  background: var(--field-black);
}

.site-footer .container {
  max-width: none;
  padding: 0;
}

.footer-grid {
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--field-line);
  border-left: 1px solid var(--field-line);
}

.footer-grid > div {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid var(--field-line);
  border-bottom: 1px solid var(--field-line);
}

.footer-grid h4 {
  color: var(--field-red);
  font-size: 9px;
}

.footer-grid a {
  color: #a0a09b;
  font-family: var(--font-mono);
  font-size: 10px;
}

.footer-grid a:hover {
  color: var(--field-red);
}

.footer-grid li a::after {
  content: "↗";
}

.footer-bottom {
  min-height: 58px;
  padding: 18px 30px;
  border: 0;
  color: #666661;
  font-size: 9px;
}

/* ---------- Tablet ---------- */
@media (max-width: 1100px) {
  .site-nav .container {
    margin: 0;
  }

  .brand::after {
    display: none;
  }

  .hero .container {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  }

  .hero h1 {
    font-size: clamp(50px, 6.5vw, 72px);
  }

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

  .flow-step {
    min-height: 210px;
  }

  .bento {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 920px) {
  .site-nav .container {
    height: 64px;
  }

  .brand {
    border-right: 0;
  }

  .nav-links {
    top: 100%;
    display: grid;
    height: auto;
    padding: 0;
    border: 1px solid var(--field-line);
    border-radius: 0;
    background: var(--field-black);
    box-shadow: none;
  }

  .nav-links li {
    height: 54px;
    border-right: 0;
    border-bottom: 1px solid var(--field-line);
  }

  .nav-links li:last-child {
    border-bottom: 0;
  }

  .nav-links a {
    display: flex;
    justify-content: space-between;
    padding-inline: 18px;
  }

  .nav-links a::after {
    content: "↗";
    display: block;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    transform: none;
  }

  .nav-actions {
    border-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero .container {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-top: 72px;
    padding-bottom: 0;
  }

  .hero .eyebrow,
  .hero h1,
  .hero p.lede,
  .hero .actions,
  .guardian-signal {
    grid-column: 1;
  }

  .hero .eyebrow { grid-row: 1; }
  .hero h1 { grid-row: 2; }
  .hero p.lede { grid-row: 3; }
  .hero .actions { grid-row: 4; }

  .guardian-signal {
    grid-row: 5;
    min-height: 420px;
    margin-top: 58px;
    border-bottom: 0;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head .eyebrow,
  .section-head h2,
  .section-head p:not(.eyebrow) {
    grid-column: 1;
  }

  .section-head .eyebrow {
    grid-row: auto;
    margin: 0 0 26px;
  }

  .section-head h2 {
    font-size: clamp(38px, 7.5vw, 64px);
  }

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

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 1040px) {
  .responsible-split {
    grid-template-columns: 1fr;
  }

  .responsible-split > * + * {
    border-top: 1px solid var(--field-line);
    border-left: 0;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 680px) {
  :root {
    --field-cell: 38px;
    --space-section: 82px;
  }

  .container {
    padding-inline: 18px;
  }

  .site-nav .container {
    padding: 0 0 0 16px;
  }

  .brand {
    padding-right: 0;
  }

  .site-nav .brand-logo-image {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .lang-switch a {
    min-width: 36px;
  }

  .mobile-menu-toggle {
    width: 52px;
  }

  .transparency-strip {
    height: 30px;
  }

  .transparency-strip ul {
    justify-content: flex-start;
    overflow: hidden;
  }

  .transparency-strip li {
    padding-inline: 14px;
    font-size: 8px;
  }

  .hero .container {
    padding-top: 58px;
  }

  .hero h1 {
    width: clamp(300px, 72vw, 520px);
    max-width: 100%;
    font-size: clamp(34px, 8.6vw, 43px);
    line-height: 1.02;
    letter-spacing: 0;
    white-space: normal;
    overflow-wrap: break-word;
    text-wrap: pretty;
  }

  .hero p.lede {
    width: clamp(300px, 72vw, 520px);
    max-width: 100%;
    font-size: 10px;
    overflow-wrap: break-word;
  }

  .hero .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero .btn {
    width: 100%;
  }

  .guardian-signal {
    min-height: 340px;
    margin-inline: -18px;
  }

  .guardian-signal .signal-logo-image {
    width: min(94%, 400px);
  }

  section::before {
    top: 15px;
    right: 18px;
    font-size: 8px;
  }

  section::after {
    left: 18px;
    width: 30px;
  }

  .section-head {
    margin-bottom: 48px;
  }

  .section-head h2 {
    font-size: clamp(36px, 10.5vw, 52px);
  }

  .flow,
  .bento,
  .use-cases,
  .security-grid,
  .contact-grid,
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }

  .flow-step {
    min-height: 180px;
  }

  .bento .card {
    min-height: 230px;
  }

  .use-cases .card {
    min-height: 310px;
  }

  .steps li,
  .steps li:hover {
    padding: 94px 22px 28px;
  }

  .steps li::before {
    top: 22px;
    left: 22px;
  }

  .responsible-split {
    grid-template-columns: 1fr;
  }

  .responsible-split > * + * {
    border-top: 1px solid var(--field-line);
    border-left: 0;
  }

  .callout blockquote {
    font-size: clamp(24px, 7.8vw, 38px);
  }

  .price-card {
    min-height: 460px;
  }

  .page-header {
    min-height: auto;
    padding-block: 90px 72px;
  }

  .page-header::before {
    right: -30%;
    bottom: 0;
    width: 80vw;
    opacity: 0.55;
  }

  .page-header h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .prose {
    padding-left: 18px;
  }

  .cta-band {
    margin-inline: -18px;
    border-inline: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-grid > div {
    min-height: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .guardian-signal::after,
  .guardian-signal .signal-meta::before {
    animation: none;
  }

  .guardian-signal pre {
    transition: none;
  }

  .reveal {
    opacity: 1;
    clip-path: none;
    filter: none;
    transform: none;
    transition: none;
  }
}

/* ---------- Product / concrete device visibility ---------- */
section.feature-section {
  background:
    radial-gradient(circle at 86% 16%, rgba(239, 35, 60, 0.055), transparent 28%),
    rgba(7, 7, 7, 0.9);
}

.feature-section .section-head h2 {
  max-width: 900px;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 0.98;
}

.feature-section .section-head p:not(.eyebrow) {
  max-width: 640px;
}

.feature-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--field-line);
  border-left: 1px solid var(--field-line);
}

.feature-item {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  min-width: 0;
  min-height: 310px;
  padding: clamp(28px, 2.8vw, 40px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--field-line);
  border-bottom: 1px solid var(--field-line);
  background: rgba(8, 8, 8, 0.9);
  overflow: hidden;
  isolation: isolate;
  transition: background 300ms var(--ease-reveal), color 300ms var(--ease-reveal);
}

.feature-item::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0 0 auto;
  height: 3px;
  background: var(--field-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms var(--ease-reveal);
}

.feature-item::after {
  content: attr(data-feature);
  position: absolute;
  z-index: -1;
  right: 14px;
  bottom: -38px;
  color: var(--field-paper);
  font-family: var(--font-mono);
  font-size: clamp(92px, 10vw, 144px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.08em;
  opacity: 0.025;
  pointer-events: none;
  transition: opacity 300ms ease, transform 420ms var(--ease-reveal);
}

.feature-item:hover {
  color: var(--field-paper);
  background:
    radial-gradient(420px circle at var(--spot-x) var(--spot-y), rgba(239, 35, 60, 0.085), transparent 48%),
    linear-gradient(145deg, var(--field-accent-panel-hover), var(--field-panel));
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-item:hover::after {
  opacity: 0.055;
  transform: translate3d(-8px, -8px, 0);
}

.feature-item__meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 35, 60, 0.38);
  border-radius: 50%;
  color: var(--field-red);
  background: rgba(239, 35, 60, 0.025);
  transition:
    color 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    transform 360ms var(--ease-reveal);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item:hover .feature-icon {
  color: var(--field-paper);
  border-color: var(--field-red);
  background: var(--field-red-wash);
  transform: translateY(-3px);
}

.feature-item__index {
  padding-top: 4px;
  color: #686863;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  transition: color 260ms ease;
}

.feature-item:hover .feature-item__index {
  color: #a3a29d;
}

.feature-item__copy {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 68px;
}

.feature-item h3 {
  margin: 0 0 15px;
  color: var(--field-paper);
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.feature-item p {
  max-width: 40ch;
  margin: 0;
  color: #989893;
  font-size: 13px;
  line-height: 1.68;
  transition: color 260ms ease;
}

.feature-item:hover p {
  color: #b4b3ae;
}

.feature-note {
  margin: 0;
  padding: 18px 20px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-right: 1px solid var(--field-line);
  border-bottom: 1px solid var(--field-line);
  border-left: 1px solid var(--field-line);
  color: #777772;
  background: rgba(5, 5, 5, 0.72);
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: 0.025em;
}

.feature-note span {
  flex: 0 0 auto;
  color: var(--field-red);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .feature-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .feature-section .section-head h2 {
    font-size: clamp(34px, 9.5vw, 48px);
  }

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

  .feature-item {
    min-height: 270px;
    padding: 25px 22px;
  }

  .feature-item__copy {
    padding-top: 52px;
  }

  .feature-item h3 {
    font-size: 24px;
  }

  .feature-note {
    display: block;
    padding: 18px;
  }

  .feature-note span {
    display: block;
    margin-bottom: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-item,
  .feature-item::before,
  .feature-item::after,
  .feature-icon,
  .feature-item__index,
  .feature-item p {
    transition: none;
  }
}

/* ========================================================================
   RESPONSIVE HARDENING
   Final mobile pass for every public page.  This intentionally lives at
   the end of the stylesheet so older editorial overrides cannot reintroduce
   fixed-width text or clipped content on narrow screens.
   ======================================================================== */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: 18px;
  }

  .site-nav .container,
  .site-nav.is-scrolled .container {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .brand,
  .nav-actions,
  .nav-links,
  .hero,
  .hero .container,
  .hero-statement,
  .section-head,
  .responsible-split,
  .callout,
  .prose,
  .page-header,
  .page-header .container,
  .pricing-shell,
  .feature-catalog,
  .feature-item,
  .footer-grid,
  .footer-grid > div {
    min-width: 0;
  }

  /* Never force a 300px text block into a 280–320px viewport. */
  .hero h1,
  .hero p.lede {
    width: auto !important;
    max-width: 100%;
  }

  .hero p.lede,
  .page-header p:not(.eyebrow) {
    font-size: 14px !important;
    line-height: 1.65;
  }

  .section-head p:not(.eyebrow),
  .flow-step p,
  .bento .card p,
  .use-cases .card p,
  .security-grid .card p,
  .contact-card p,
  .feature-item p,
  .faq details p {
    font-size: 14px !important;
    line-height: 1.6;
  }

  .flow-step .flow-title,
  .bento .card h3,
  .use-cases .card h3,
  .security-grid .card h3 {
    max-width: none;
    font-size: 17px;
    line-height: 1.25;
  }

  .how-process .steps li .title,
  .how-process .steps li:nth-child(5) .title {
    font-size: 22px;
    line-height: 1.12;
  }

  .how-process .steps li p,
  .how-process .steps li:nth-child(5) p {
    font-size: 14px !important;
    line-height: 1.6;
  }

  .policy-legend .legend-rule {
    font-size: 13px;
    line-height: 1.55;
  }

  .price-card .tier,
  .billed-by {
    font-size: 12px;
  }

  .price-card .amount {
    margin-block: 30px 24px;
    font-size: clamp(42px, 14vw, 62px);
  }

  .price-card ul {
    font-size: 13px;
    line-height: 1.55;
  }

  .price-note,
  .faq details p {
    font-size: 13px !important;
  }

  .prose p,
  .prose li {
    font-size: 15px;
    line-height: 1.65;
  }

  .footer-grid a {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 11px;
    line-height: 1.5;
  }

  .hero h1,
  .hero-line,
  .section-head h2,
  .page-header h1,
  .callout blockquote,
  .prose h1,
  .prose h2,
  .prose p,
  .prose li,
  .feature-item h3,
  .feature-item p,
  .flow-title,
  .price-card,
  .price-card .amount {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-line {
    width: auto;
    max-width: 100%;
  }

  .section-head h2,
  .page-header h1 {
    max-width: 100%;
  }

  .section-head p:not(.eyebrow),
  .page-header p:not(.eyebrow),
  .feature-item p {
    width: 100%;
    max-width: 100%;
  }

  /* Keep all three authorization statements readable on a phone. */
  .transparency-strip {
    height: auto;
  }

  .transparency-strip .container {
    height: auto;
    overflow: visible;
    padding-inline: 0;
  }

  .transparency-strip ul {
    width: 100%;
    min-width: 0;
    height: auto;
    display: grid;
    gap: 0;
    padding: 0;
    overflow: visible;
  }

  .transparency-strip li {
    min-width: 0;
    padding: 7px 18px;
    white-space: normal;
    line-height: 1.35;
  }

  .transparency-strip li::before {
    flex: 0 0 auto;
  }

  .pricing-grid {
    width: 100%;
    max-width: 100% !important;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    gap: 4px;
  }

  .price-card {
    width: 100%;
  }

  .guardian-signal {
    width: calc(100% + 36px);
    max-width: none;
  }

  .feature-note {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .container {
    padding-inline: 14px;
  }

  .site-nav .container,
  .site-nav.is-scrolled .container {
    padding-left: 12px;
  }

  .hero h1 {
    font-size: clamp(32px, 11vw, 42px);
  }

  .section-head h2,
  .page-header h1 {
    font-size: clamp(32px, 10.5vw, 48px);
  }

  .guardian-signal {
    width: calc(100% + 28px);
  }
}
