:root {
  --ink: #07111f;
  --ink-deep: #040a12;
  --ink-soft: #0c192a;
  --panel: #0d1d30;
  --panel-light: #11243a;
  --line: rgba(164, 196, 220, 0.16);
  --line-bright: rgba(63, 194, 236, 0.34);
  --text: #f3f7fa;
  --muted: #9eb0c1;
  --muted-bright: #c4d0da;
  --cyan: #25b7e8;
  --cyan-bright: #57d5ff;
  --green: #4adea1;
  --green-soft: rgba(74, 222, 161, 0.12);
  --orange: #ffb85c;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius: 10px;
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img,
svg {
  display: block;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: #07111f;
  transform: translateY(-150%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
  background: var(--ink);
}

.site-header.scrolled {
  border-color: var(--line);
  background: var(--ink);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-shell {
  position: relative;
  width: var(--shell);
  height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 151px;
  height: auto;
  transition: opacity 220ms ease, transform 220ms cubic-bezier(.22, 1, .36, 1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-inline: auto;
}

.nav-menu .nav-mobile-action {
  display: none;
}

.nav-menu a,
.nav-sign-in {
  color: var(--muted-bright);
  font-size: 0.89rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-menu a:hover,
.nav-sign-in:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.nav-toggle {
  display: none;
}

.button {
  min-height: 50px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 650;
  font-size: 0.92rem;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: none;
}

.button:focus-visible,
.nav-toggle:focus-visible,
.nav-menu a:focus-visible,
.nav-sign-in:focus-visible,
.text-link:focus-visible,
.footer-column a:focus-visible,
.status-link:focus-visible {
  outline: 3px solid rgba(87, 213, 255, 0.5);
  outline-offset: 4px;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms cubic-bezier(.22, 1, .36, 1);
}

.button:hover svg {
  transform: none;
}
.button:active {
  transform: none;
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 0.86rem;
}

.button-primary {
  background: var(--cyan);
  color: #02101b;
  box-shadow: none;
}

.button-primary:hover {
  background: var(--cyan-bright);
  box-shadow: none;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--line-bright);
  background: rgba(37, 183, 232, 0.07);
}

.button-light {
  flex: 0 0 auto;
  background: #f4f8fa;
  color: #07111f;
}

.button-light:hover {
  background: #fff;
  box-shadow: none;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 132px 0 0;
  background: var(--ink);
}

.hero::before {
  content: none;
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.055;
  background-image: linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.hero-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: start;
  gap: 56px;
  padding-bottom: 56px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow-pill {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted-bright);
  font-size: 0.8125rem;
  font-weight: 550;
  letter-spacing: 0.01em;
  text-decoration: none;
  line-height: 1.6;
}

.eyebrow-pill:hover {
  border-color: var(--line-bright);
}

.eyebrow-pill svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: none;
  display: none;
}

.hero h1,
.section h2,
.security-sweep h2,
.final-cta h2 {
  margin: 0;
  color: var(--text);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(2.25rem, 4.2vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 650;
}

.hero h1 span {
  color: var(--cyan-bright);
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0;
  color: var(--muted-bright);
  font-size: 1.0625rem;
  line-height: 1.7;
}

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

.hero-assurance {
  max-width: 590px;
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.assurance-avatars {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
}

.assurance-avatars span {
  width: auto;
  height: auto;
  margin-left: -7px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font: 600 0.55rem ui-monospace, SFMono-Regular, Menlo, monospace;
  margin: 0;
  font-size: 0.6875rem;
}

.assurance-avatars span:first-child {
  margin-left: 0;
  background: transparent;
}

.hero-assurance p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.65;
}

.hero-assurance strong {
  color: var(--muted-bright);
}

.hero-visual {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.visual-glow {
  position: absolute;
  inset: 11% 5% 9%;
  border-radius: 50%;
  background: rgba(32, 184, 233, 0.13);
  filter: blur(60px);
  display: none;
}

.console-window {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ink-soft);
  box-shadow: none;
  transform: none;
  grid-column: 1 / -1;
}

.console-window::after {
  content: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.035), transparent 28%);
}

.console-topbar {
  height: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font: 650 0.61rem ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.04em;
  min-height: 44px;
  gap: 12px;
  font-size: 0.625rem;
}

.console-dots {
  display: none;
  gap: 5px;
}

.console-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #385065;
}

.console-dots span:first-child {
  background: var(--cyan);
}

.console-title {
  margin-inline: 0 auto;
  display: block;
  min-width: 0;
}

.console-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #83ac9c;
}

.console-live i,
.stack-item em i,
.console-footer i,
.visual-note i,
.status-link i {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green);
  box-shadow: none;
}

.console-content {
  padding: 20px;
}

.posture-head {
  padding: 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.console-label {
  color: var(--muted);
  font: 700 0.63rem ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.06em;
  font-size: 0.6875rem;
}

.posture-head h2 {
  margin: 6px 0 0;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.shield-mark {
  width: 51px;
  height: 56px;
  display: none;
  place-items: center;
  border: 1px solid rgba(74, 222, 161, 0.18);
  border-radius: 10px;
  background: rgba(74, 222, 161, 0.07);
}

.shield-mark svg {
  width: 28px;
  fill: rgba(74, 222, 161, 0.08);
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stack-list {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.stack-item {
  min-height: 0;
  padding: 14px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}

.stack-item:last-child {
  border-bottom: 0;
}

.stack-icon {
  width: 38px;
  height: 38px;
  display: none;
  place-items: center;
  border: 1px solid rgba(37, 183, 232, 0.2);
  border-radius: 9px;
  background: rgba(37, 183, 232, 0.07);
}

.stack-icon svg {
  width: 21px;
  fill: none;
  stroke: #5dc8eb;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stack-item > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.stack-item strong {
  font-size: 0.875rem;
  line-height: 1.4;
}

.stack-item small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.stack-item em {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font: normal 700 0.57rem ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0;
  font-size: 0.5625rem;
}

.console-footer {
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 16px;
  color: var(--muted);
  font: 650 0.56rem ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.03em;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  font-size: 0.625rem;
}

.console-footer span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: inherit;
}

.console-footer i {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  box-shadow: none;
}

.visual-note {
  position: static;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 9px;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.35;
  backdrop-filter: none;
}

.visual-note strong {
  color: var(--text);
  font-size: inherit;
  font-weight: 550;
}

.note-one {
  top: 16px;
  right: -26px;
}

.note-two {
  bottom: 8px;
  left: -31px;
}

.note-two i {
  background: var(--cyan);
  box-shadow: none;
}

.trust-rail {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.trust-rail > p {
  margin: 0;
  color: var(--muted);
  font: 700 0.62rem ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.06em;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 650;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 24px;
}

.trust-items span {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  color: #aebdca;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: normal;
}

.trust-items i {
  width: auto;
  height: auto;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.trust-items i::after {
  content: "✓";
  color: var(--green);
  font-size: 0.62rem;
  line-height: 1;
}

.section {
  padding: 88px 0;
}

.section-heading {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 56px;
}

.section-heading.compact {
  margin-bottom: 36px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--cyan);
  font: 750 0.67rem ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.06em;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 650;
  margin-bottom: 14px;
}

.section h2,
.security-sweep h2,
.final-cta h2 {
  font-size: clamp(1.75rem, 3vw, 2.625rem);
}

.section-heading > p,
.difference-lead,
.process-intro > p:not(.kicker),
.pricing-heading > p:not(.kicker),
.faq-intro > p:not(.kicker),
.security-sweep p:not(.kicker),
.final-cta > p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.platform-section {
  border-top: 1px solid var(--line);
  background: var(--ink-deep);
}

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

.product-card {
  position: relative;
  min-height: 0;
  padding: 28px 0;
  display: grid;
  flex-direction: column;
  align-items: start;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.3fr) minmax(130px, .55fr);
  gap: 12px 32px;
}

.product-card:hover {
  z-index: 2;
  border-color: var(--line);
  background: transparent;
  transform: none;
}

.product-card-featured {
  min-height: 0;
  grid-column: auto;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.3fr) minmax(130px, .55fr);
  gap: 12px 32px;
  border-color: rgba(37, 183, 232, 0.28);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 28px 0;
  box-shadow: none;
}

.product-grid > .product-card:last-child {
  grid-column: auto;
}

.product-grid > .product-card.product-card-fabric:last-child {
  grid-column: auto;
}

.product-card-copy {
  display: contents;
  flex-direction: column;
  align-items: flex-start;
}

.card-index {
  margin-bottom: 20px;
  color: var(--muted);
  font: 700 0.62rem ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.06em;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 650;
  margin: 0;
  grid-column: 1;
  grid-row: 1;
}

.product-card h3,
.use-card h3,
.process-list h3 {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.product-card h3 {
  font-size: 1.375rem;
  grid-column: 1;
  grid-row: 2;
  line-height: 1.35;
  font-weight: 600;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.product-card:not(.product-card-featured) p {
  min-height: 0;
}

.product-icon {
  width: 47px;
  height: 47px;
  margin-bottom: 31px;
  display: none;
  place-items: center;
  border: 1px solid rgba(37, 183, 232, 0.2);
  border-radius: 11px;
  background: rgba(37, 183, 232, 0.07);
}

.product-icon svg,
.use-icon svg {
  width: 24px;
  fill: none;
  stroke: var(--cyan-bright);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 23px;
  color: var(--muted-bright);
  font-size: 0.875rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.54rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  gap: 6px;
  margin-top: auto;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  min-height: 44px;
  align-items: center;
}

.text-link span {
  flex: 0 0 auto;
  margin-left: 0;
  color: var(--cyan);
  transition: margin 160ms ease;
}

.text-link:hover span {
  margin-left: 8px;
}

.compute-visual {
  position: static;
  min-height: 0;
  display: flex;
  place-items: center;
  grid-column: 1;
  grid-row: 3;
  gap: 14px;
  align-items: start;
  justify-content: flex-start;
}

.compute-ring {
  position: absolute;
  border: 1px solid rgba(50, 190, 235, 0.18);
  border-radius: 50%;
  display: none;
}

.ring-one {
  width: 246px;
  height: 246px;
}

.ring-two {
  width: 164px;
  height: 164px;
  border-style: dashed;
  animation: none;
}

.compute-core {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  display: none;
  place-items: center;
  border: 1px solid rgba(74, 222, 161, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 30%, rgba(74, 222, 161, 0.18), rgba(8, 24, 35, 0.96));
  box-shadow: none;
}

.compute-core svg {
  width: 39px;
  fill: rgba(74, 222, 161, 0.05);
  stroke: var(--green);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compute-label {
  position: static;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: 700 0.56rem ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
  font-size: 0.6875rem;
}

.label-a { top: 20%; left: 13%; }
.label-b { top: 21%; right: 9%; }
.label-c { bottom: 17%; right: 17%; }

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

.difference-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.difference-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: start;
  gap: 56px;
}

.difference-copy h2 {
  margin-bottom: 26px;
}

.difference-lead {
  margin-bottom: 33px;
}

.comparison-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-head {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.comparison-head span {
  padding: 16px;
  color: var(--muted);
  font: 700 0.59rem ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.06em;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 650;
}

.comparison-head span:last-child {
  color: var(--cyan);
}

.comparison-head span + span,
.comparison-row > div + div {
  border-left: 1px solid var(--line);
}

.comparison-row {
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > div {
  min-height: 0;
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.comparison-row i {
  width: 14px;
  height: 20px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 0;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
}

.comparison-row .minus {
  background: transparent;
  color: var(--orange);
}

.comparison-row .check {
  background: transparent;
  color: var(--green);
}

.comparison-row div span {
  display: flex;
  flex-direction: column;
}

.comparison-row strong {
  color: var(--muted-bright);
  font-size: 0.875rem;
}

.comparison-row div:last-child strong {
  color: var(--text);
}

.comparison-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.use-case-section {
  background: var(--ink);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 56px;
}

.use-card {
  position: relative;
  min-height: 0;
  padding: 28px 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: transform 180ms ease, border-color 180ms ease;
  border-top: 1px solid var(--line);
  box-shadow: none;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 10px;
  align-content: start;
}

.use-card:hover {
  border-color: var(--line);
  transform: none;
}

.use-number {
  position: static;
  top: 18px;
  right: 22px;
  color: var(--muted);
  font: 500 0.75rem/1.5 ui-monospace, monospace;
  letter-spacing: 0;
  grid-column: 1;
  grid-row: 1;
  padding-top: 0;
}

.use-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 48px;
  display: none;
  place-items: center;
  border: 1px solid rgba(37, 183, 232, 0.2);
  border-radius: 12px;
  background: rgba(37, 183, 232, 0.07);
}

.use-card h3 {
  font-size: 1.375rem;
  line-height: 1.35;
  font-weight: 600;
}

.use-card p {
  min-height: 0;
  margin: 12px 0 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.use-card ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--line);
  color: var(--muted-bright);
  font-size: 0.875rem;
  list-style: none;
  border: 0;
}

.use-card li::before {
  content: "+";
  margin-right: 9px;
  color: var(--cyan);
  font-weight: 800;
}

.buyer-card {
  min-height: 0;
  display: grid;
  flex-direction: column;
}

.buyer-card .buyer-label {
  min-height: 0;
  margin: 0 0 18px;
  color: var(--cyan-bright);
  font: 750 0.62rem ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.06em;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 650;
  grid-column: 2;
  grid-row: 1;
}

.buyer-card .use-icon {
  margin-bottom: 29px;
}

.buyer-card > p:not(.buyer-label) {
  min-height: 0;
}

.buyer-card-link {
  margin-top: 0;
  padding-top: 20px;
}

.buyer-all {
  margin-top: 23px;
  padding: 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.875rem;
  border-top: 1px solid var(--line);
}

.buyer-all .text-link {
  margin: 0;
  white-space: nowrap;
}

.security-sweep-section {
  padding: 0;
  background: var(--ink-deep);
}

.security-sweep {
  position: relative;
  min-height: 0;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.security-sweep::after {
  content: none;
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.sweep-visual {
  position: absolute;
  left: 44px;
  width: 150px;
  height: 150px;
  display: none;
  place-items: center;
}

.sweep-visual svg {
  z-index: 2;
  width: 46px;
  fill: rgba(74, 222, 161, 0.05);
  stroke: var(--green);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.radar-ring {
  position: absolute;
  border: 1px solid rgba(74, 222, 161, 0.2);
  border-radius: 50%;
}

.radar-ring-one { width: 100%; height: 100%; }
.radar-ring-two { width: 68%; height: 68%; }

.radar-scan {
  position: absolute;
  width: 50%;
  height: 1px;
  left: 50%;
  top: 50%;
  background: linear-gradient(90deg, rgba(74,222,161,.75), transparent);
  transform-origin: left;
  animation: none;
}

@keyframes radar { to { transform: rotate(360deg); } }

.sweep-copy {
  position: relative;
  z-index: 2;
}

.security-sweep h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3vw, 2.625rem);
}

.security-sweep p:not(.kicker) {
  max-width: 610px;
  font-size: 1rem;
}

.security-sweep .button {
  position: relative;
  z-index: 2;
}

.process-section {
  background: #07111f;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 56px;
}

.process-intro h2 {
  margin-bottom: 25px;
}

.process-meta {
  margin-top: 35px;
  display: flex;
  gap: 30px;
}

.process-meta span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.process-meta strong {
  color: var(--cyan-bright);
  font: 700 1.2rem ui-monospace, SFMono-Regular, Menlo, monospace;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  min-height: 0;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  padding-top: 2px;
  color: var(--cyan);
  font: 700 0.7rem ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
}

.process-list h3 {
  font-size: 1.1rem;
}

.process-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.pricing-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-deep);
}

.pricing-heading {
  max-width: 840px;
  margin: 0 0 36px;
  text-align: left;
}

.pricing-heading > p:not(.kicker) {
  max-width: 780px;
  margin: 16px 0 0;
  font-size: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--ink-soft);
}

.price-card {
  position: relative;
  min-height: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 0;
  border-radius: 0;
  background: transparent;
  border-right: 1px solid var(--line);
}

.price-card-featured {
  min-height: 0;
  padding-top: 28px;
  border-color: var(--line);
  background: transparent;
  box-shadow: none;
}

.price-badge {
  position: static;
  top: 0;
  right: 25px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--cyan-bright);
  font: 800 0.56rem ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.06em;
  align-self: start;
  margin-bottom: 14px;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 18px;
}

.price-top {
  display: flex;
  flex-direction: column;
}

.price-top span {
  color: var(--text);
  font: 700 0.72rem ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.06em;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 650;
}

.price-top i {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.875rem;
  font-style: normal;
}

.price {
  min-height: 0;
  padding-top: 28px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  padding: 24px 0 16px;
}

.price small {
  width: 100%;
  color: var(--muted);
  font: 700 0.55rem ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.06em;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 650;
}

.price strong {
  color: var(--text);
  font-size: 2.65rem;
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1;
}

.price-card-featured .price strong {
  color: var(--cyan-bright);
}

.price > span {
  color: var(--muted);
  font-size: 0.875rem;
}

.price-card > p {
  min-height: 0;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.price-card .check-list {
  margin-bottom: 30px;
  padding-top: 25px;
  gap: 13px;
  border-top: 1px solid var(--line);
}

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

.faq-section {
  background: var(--ink);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 56px;
}

.faq-intro {
  position: sticky;
  top: 115px;
}

.faq-intro h2 {
  margin-bottom: 24px;
}

.faq-intro > p a {
  color: var(--cyan-bright);
}

.status-link {
  margin-top: 31px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted-bright);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.status-link span {
  color: var(--cyan);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 44px 25px 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 14px;
  height: 1px;
  background: var(--cyan);
  transform: translateY(-50%);
  transition: transform 160ms ease;
}

.faq-list summary span::after {
  content: "";
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 660px;
  margin: -4px 0 26px;
  padding-right: 40px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-list details p a {
  color: var(--cyan-bright);
  text-underline-offset: 3px;
}

.final-cta-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: var(--ink-deep);
}

.final-cta-section::before {
  content: none;
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 65%);
}

.final-cta {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
}

.final-cta > p:not(.kicker) {
  max-width: 610px;
  margin: 24px auto 30px;
}

.final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}

.final-actions > a:not(.button) {
  color: var(--muted);
  font-size: 0.75rem;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 72px 0 28px;
  border-top: 1px solid var(--line);
  background: #040b13;
}

.footer-grid {
  padding-bottom: 62px;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 70px;
}

.footer-brand p {
  max-width: 310px;
  margin: 22px 0 18px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

.footer-brand > span {
  color: #71899b;
  font: 600 0.7rem ui-monospace, SFMono-Regular, Menlo, monospace;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h3 {
  margin: 2px 0 10px;
  color: var(--muted);
  font: 700 0.68rem ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 650;
}

.footer-column a {
  color: #acbbc7;
  font-size: 0.875rem;
  text-decoration: none;
}

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

.footer-bottom {
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8125rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-legal a {
  color: #8298aa;
  text-underline-offset: 3px;
}

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

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (hover: hover) {
  .brand:hover img {
    opacity: .9;
    transform: none;
  }
  .mode-card,
  .control-card,
  .resource-card,
  .support-card,
  .service-card,
  .fit-card,
  .architecture-step,
  .price-card {
    transition: transform 280ms cubic-bezier(.22, 1, .36, 1), border-color 220ms ease, box-shadow 280ms ease, background 220ms ease;
  }
  .mode-card:hover,
  .control-card:hover,
  .resource-card:hover,
  .support-card:hover,
  .service-card:hover,
  .fit-card:hover,
  .architecture-step:hover,
  .price-card:hover {
    border-color: rgba(87, 213, 255, .3);
    box-shadow: none;
    transform: none;
  }
}

@media (min-width: 861px) {
  .nav-menu > a:not(.nav-mobile-action) { position: relative; }
  .nav-menu > a:not(.nav-mobile-action)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan-bright), transparent);
    transform: scaleX(0);
    transition: transform 220ms cubic-bezier(.22, 1, .36, 1);
  }
  .nav-menu > a:not(.nav-mobile-action):hover::after,
  .nav-menu > a[aria-current="page"]::after { transform: scaleX(1); }
}

@media (max-width: 1080px) {
  .nav-shell { gap: 24px; }
  .nav-menu { gap: 18px; }
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    min-height: 0;
  }
  .hero h1 {
    font-size: clamp(2.25rem, 4.2vw, 3.75rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 650;
  }
  .visual-note {
    display: flex;
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    font-size: 0.8125rem;
    color: var(--muted);
  }
  .trust-rail { grid-template-columns: 1fr; gap: 15px; padding: 24px 0; }
  .trust-items { width: 100%; }
  .section-heading { gap: 50px; }
  .product-card-featured {
    grid-column: auto;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    padding: 28px 0;
    min-height: 0;
    box-shadow: none;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.3fr) minmax(130px, .55fr);
    gap: 12px 32px;
  }
  .product-grid > .product-card.product-card-fabric:last-child {
    grid-column: auto;
  }
  .difference-grid { gap: 50px; }
  .security-sweep {
    padding-left: 0;
    min-height: 0;
    padding: 48px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    gap: 32px;
  }
  .sweep-visual {
    left: 35px;
    display: none;
  }
  .process-grid, .faq-grid {
    gap: 32px;
  }
  .footer-grid { gap: 35px; }
}

@media (min-width: 861px) and (max-width: 1080px) {
  .nav-shell { gap: 14px; }
  .brand img { width: 118px; }
  .nav-menu { gap: 11px; }
  .nav-menu a, .nav-sign-in { font-size: 0.78rem; }
  .nav-actions { gap: 11px; }
  .nav-actions .button-small { padding-inline: 12px; font-size: 0.75rem; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 36px, 720px); }
  .site-header {
    border-color: var(--line);
    background: var(--ink);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header.menu-active {
    height: 100vh;
    height: 100dvh;
    overflow: visible;
    background: var(--ink);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-shell { height: 70px; }
  .nav-toggle {
    position: relative;
    z-index: 4;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, .035);
    color: var(--text);
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
  }
  .nav-toggle:hover { border-color: var(--line-bright); background: rgba(37, 183, 232, .07); }
  .nav-toggle:active { transform: scale(.96); }
  .nav-toggle span {
    width: 19px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 260ms cubic-bezier(.22, 1, .36, 1), width 220ms ease;
  }
  .nav-toggle[aria-expanded="true"] { border-color: rgba(87, 213, 255, .3); background: rgba(37, 183, 232, .09); }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .nav-menu {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 3;
    width: 100vw;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    min-height: 0;
    padding: 22px max(22px, env(safe-area-inset-right)) max(32px, env(safe-area-inset-bottom)) max(22px, env(safe-area-inset-left));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    background: var(--ink);
    transform: translate3d(0, -10px, 0);
    pointer-events: none;
    transition: opacity 260ms ease, transform 320ms cubic-bezier(.22, 1, .36, 1), visibility 320ms;
  }
  .nav-menu.open { visibility: visible; opacity: 1; transform: none; pointer-events: auto; }
  .nav-menu a {
    width: 100%;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    color: #dbe6ed;
    font-size: clamp(1.05rem, 4.5vw, 1.2rem);
    letter-spacing: -.015em;
    opacity: 0;
    transform: translate3d(0, -8px, 0);
    transition: color 180ms ease, opacity 240ms ease, transform 320ms cubic-bezier(.22, 1, .36, 1), background 180ms ease, border-color 180ms ease;
  }
  .nav-menu.open a { opacity: 1; transform: none; }
  .nav-menu.open a:nth-child(2) { transition-delay: 35ms; }
  .nav-menu.open a:nth-child(3) { transition-delay: 70ms; }
  .nav-menu.open a:nth-child(4) { transition-delay: 105ms; }
  .nav-menu.open a:nth-child(5) { transition-delay: 140ms; }
  .nav-menu.open a:nth-child(6) { transition-delay: 175ms; }
  .nav-menu.open a:nth-child(7) { transition-delay: 210ms; }
  .nav-menu a[aria-current="page"] { color: var(--cyan-bright); }
  .nav-menu .nav-mobile-action {
    margin-top: 15px;
    padding: 13px 16px;
    display: block;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255, 255, 255, .025);
    color: var(--muted-bright);
    font-size: .9rem;
    text-align: center;
  }
  .nav-menu .nav-mobile-primary {
    width: 100%;
    margin-top: 10px;
    padding: 15px 18px;
    border: 1px solid transparent;
    border-radius: 11px;
    background: var(--cyan);
    color: #02101b;
    font-size: .95rem;
    font-weight: 780;
    text-align: center;
    box-shadow: none;
  }
  .nav-actions { display: none; }
  .hero {
    padding-top: 110px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
    min-height: 0;
  }
  .hero-copy {
    max-width: 100%;
    text-align: left;
  }
  .eyebrow-pill, .hero-lead, .hero-assurance {
    margin-left: 0;
    margin-right: 0;
  }
  .hero-actions {
    justify-content: flex-start;
  }
  .hero-visual {
    width: 100%;
    min-height: 0;
    margin-inline: 0;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
  }
  .console-window { transform: none; }
  .trust-items { grid-template-columns: 1fr 1fr; }
  .section {
    padding: 64px 0;
  }
  .section-heading, .difference-grid, .process-grid, .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-heading > p { max-width: 630px; }
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .product-card-featured {
    grid-column: auto;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    padding: 28px 0;
    min-height: 0;
    box-shadow: none;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.3fr) minmax(130px, .55fr);
    gap: 12px 32px;
  }
  .product-grid > .product-card.product-card-fabric:last-child { grid-column: auto; }
  .difference-copy { max-width: 650px; }
  .use-case-grid, .pricing-grid { grid-template-columns: 1fr; }
  .use-card {
    min-height: 0;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    padding: 28px 0;
    box-shadow: none;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    column-gap: 10px;
    align-content: start;
    overflow: visible;
  }
  .use-card p {
    min-height: 0;
    margin: 12px 0 16px;
    font-size: 1rem;
  }
  .buyer-card > p:not(.buyer-label) { min-height: 0; }
  .security-sweep {
    padding: 48px 0;
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .sweep-visual {
    left: 24px;
    width: 130px;
    height: 130px;
    display: none;
  }
  .security-sweep .button { justify-self: start; }
  .process-intro { max-width: 650px; }
  .process-list li {
    min-height: 0;
    padding: 24px 0;
    grid-template-columns: 32px minmax(0, 1fr);
  }
  .price-card, .price-card-featured { min-height: auto; }
  .price-card {
    padding: 28px;
    min-height: 0;
    border: 0;
    border-right: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }
  .price-card > p {
    min-height: 0;
    font-size: 1rem;
    margin: 0 0 24px;
  }
  .price-card .check-list { margin-bottom: 30px; }
  .faq-intro { position: static; max-width: 650px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100vw - 40px);
  }
  .brand img { width: 132px; }
  .nav-shell { gap: 10px; }
  .nav-actions .button { display: none; }
  .hero {
    padding-top: 104px;
  }
  .hero-grid {
    gap: 40px;
    min-height: 0;
  }
  .eyebrow-pill {
    font-size: 0.8125rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-weight: 550;
    margin-bottom: 24px;
    line-height: 1.6;
  }
  .hero h1 {
    font-size: clamp(2.25rem, 9.7vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 650;
  }
  .hero-lead { margin-top: 22px; font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-assurance { align-items: flex-start; text-align: left; }
  .console-content {
    padding: 20px;
  }
  .console-title {
    display: block;
    margin-inline: 0 auto;
    min-width: 0;
  }
  .console-live { margin-left: auto; }
  .posture-head h2 { font-size: 1.35rem; }
  .shield-mark { width: 45px; height: 49px; }
  .stack-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding-inline: 11px;
    padding: 14px 0;
    min-height: 0;
  }
  .stack-item em {
    display: flex;
    font-size: 0.5625rem;
    letter-spacing: 0;
    color: var(--green);
  }
  .console-footer {
    gap: 8px 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 0.625rem;
    color: var(--muted);
    letter-spacing: 0.03em;
  }
  .console-footer span {
    font-size: inherit;
  }
  .trust-rail { padding-block: 26px; }
  .trust-items { grid-template-columns: 1fr; gap: 12px; }
  .section {
    padding: 56px 0;
  }
  .section h2, .security-sweep h2, .final-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.625rem);
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .product-card, .product-card-featured { grid-column: auto; min-height: auto; }
  .product-grid > .product-card:last-child { grid-column: auto; }
  .product-card-featured {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.3fr) minmax(130px, .55fr);
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    padding: 28px 0;
    min-height: 0;
    box-shadow: none;
    grid-column: auto;
    gap: 12px 32px;
  }
  .product-card:not(.product-card-featured) p { min-height: 0; }
  .compute-visual {
    min-height: 0;
    position: static;
    display: flex;
    grid-column: 1;
    grid-row: 3;
    gap: 14px;
    align-items: start;
    justify-content: flex-start;
  }
  .ring-one { width: 216px; height: 216px; }
  .ring-two { width: 145px; height: 145px; }
  .comparison-head span {
    padding: 16px;
    font-size: 0.75rem;
    font-family: inherit;
    font-weight: 650;
    letter-spacing: 0.06em;
    color: var(--muted);
  }
  .comparison-row > div {
    min-height: 0;
    padding: 18px 16px;
    gap: 10px;
  }
  .comparison-row i {
    width: 14px;
    height: 20px;
    border-radius: 0;
  }
  .comparison-row strong {
    font-size: 0.875rem;
  }
  .comparison-row small {
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.6;
  }
  .use-card {
    padding: 28px 0;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    min-height: 0;
    box-shadow: none;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    column-gap: 10px;
    align-content: start;
    overflow: visible;
  }
  .use-icon { margin-bottom: 38px; }
  .buyer-card .use-icon { margin-bottom: 25px; }
  .buyer-all { align-items: flex-start; flex-direction: column; }
  .security-sweep-section { padding: 14px 0; }
  .security-sweep {
    padding: 48px 0;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    gap: 32px;
  }
  .sweep-visual {
    position: relative;
    left: auto;
    width: 106px;
    height: 106px;
    margin-bottom: 5px;
    display: none;
  }
  .security-sweep .button { width: 100%; }
  .process-meta { gap: 18px; }
  .process-list li {
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 0;
    padding: 24px 0;
  }
  .price-card {
    padding: 28px;
    min-height: 0;
    border: 0;
    border-right: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }
  .faq-list summary { font-size: 0.92rem; }
  .faq-list details p {
    padding-right: 0;
    font-size: 1rem;
    line-height: 1.7;
  }
  .final-cta-section {
    padding: 56px 0;
  }
  .final-actions .button { width: 100%; }
  .site-footer { padding-top: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 37px 24px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-legal { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
/* Open layouts use the existing content and source order. */
.nav-actions .button-primary { background: var(--cyan); color: #02101b; border-color: transparent; }
.nav-actions .button-primary:hover { background: var(--cyan-bright); border-color: transparent; }
.hero-actions .button-secondary { background: transparent; border-color: transparent; padding-inline: 8px; text-decoration: underline; text-underline-offset: 5px; }
.hero-actions .button-secondary:hover { color: var(--cyan-bright); }
.hero-grid > *, .section-heading > *, .difference-grid > *, .faq-grid > *, .process-grid > * { min-width: 0; }
.use-card > h3, .use-card > p:not(.buyer-label), .use-card > ul, .use-card > a { grid-column: 1 / -1; }
.product-card .check-list { grid-column: 2; grid-row: 3; }
.product-card .text-link { grid-column: 3; grid-row: 1 / span 3; margin: 0; align-self: start; }
.price-card:last-child { border-right: 0; }
.price-card:not(.price-card-featured)::before { content: ''; height: 18px; margin-bottom: 14px; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--cyan-bright); outline-offset: 5px; }
@media (max-width: 860px) {
  .price-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .price-card:last-child { border-bottom: 0; }
  .price-card:not(.price-card-featured)::before { display: none; }
}
@media (max-width: 600px) {
  .product-card, .product-card-featured { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .product-card .card-index { grid-column: 1; grid-row: 1; }
  .product-card h3 { grid-column: 1; grid-row: 2; }
  .product-card p { grid-column: 1; grid-row: 3; }
  .product-card .check-list { grid-column: 1; grid-row: 4; }
  .product-card .compute-visual { grid-column: 1; grid-row: 5; }
  .product-card .text-link { grid-column: 1; grid-row: 6; }
  .stack-item { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .stack-item em { font-size: 0.625rem; }
  .comparison-row > div { padding: 14px 10px; gap: 6px; }
  .comparison-head span { padding: 12px 10px; font-size: 0.6875rem; }
}
