:root {
  --bg: #080b0d;
  --bg-soft: #0d1216;
  --surface: #11181d;
  --surface-2: #161f25;
  --surface-3: #1c272e;
  --text: #f4f7f8;
  --muted: #aebbc3;
  --muted-strong: #cad3d8;
  --lime: #a6ff00;
  --lime-soft: #d4ff80;
  --lime-dark: #78b800;
  --ember: #ff7a1a;
  --danger: #ff5449;
  --border: #2a3841;
  --focus: #c7ff5a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --radius: 18px;
  --radius-small: 12px;
  --container: 1180px;
  --header-height: 82px;
  color-scheme: dark;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 75% -10%, rgba(166, 255, 0, 0.08), transparent 30rem),
    var(--bg);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--lime-soft);
  text-underline-offset: 0.22em;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 18ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.65rem, 6vw, 5.75rem);
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.24rem;
}

p {
  margin-top: 0;
}

ul,
ol {
  padding-left: 1.2rem;
}

blockquote {
  margin: 2rem 0 0;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 4px solid var(--lime);
  color: var(--text);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-150%);
  border-radius: 8px;
  color: #101410;
  background: var(--lime);
  font-weight: 800;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-alt {
  border-block: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(135deg, rgba(166, 255, 0, 0.025), transparent 40%),
    var(--bg-soft);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

.section-heading > p:not(.eyebrow),
.hero-copy > p,
.compact-hero p,
.split-layout > div > p {
  color: var(--muted-strong);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--ember));
  content: "";
}

.centered,
.centered-note,
.compact-hero .eyebrow {
  justify-content: center;
  text-align: center;
}

.compact-hero .eyebrow::before {
  display: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button-row.centered {
  justify-content: center;
}

.button,
button.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid var(--lime);
  border-radius: 10px;
  color: #0b0f0a;
  background: var(--lime);
  box-shadow: 0 9px 30px rgba(166, 255, 0, 0.12);
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  color: #0b0f0a;
  background: #bdff40;
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.button-small {
  min-height: 44px;
  padding: 0.65rem 1rem;
  font-size: 0.87rem;
}

.button-ghost {
  color: var(--text);
  border-color: var(--border);
  background: transparent;
  box-shadow: none;
}

.button-ghost:hover {
  color: var(--text);
  border-color: var(--lime);
  background: rgba(166, 255, 0, 0.08);
}

.button-danger {
  color: #fff;
  border-color: var(--danger);
  background: var(--danger);
  box-shadow: 0 9px 30px rgba(255, 84, 73, 0.14);
}

.button-danger:hover {
  color: #fff;
  background: #ff6d64;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.5rem;
  font-weight: 750;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 11, 13, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: block;
  flex: 0 0 auto;
}

.brand img {
  width: 158px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-main,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-main > a,
.nav-services > summary,
.incident-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-main > a:hover,
.nav-main > a[aria-current="page"],
.nav-services > summary:hover {
  color: var(--lime);
}

.incident-link {
  color: #ffaaa4;
}

.nav-services {
  position: relative;
}

.nav-services > summary {
  gap: 0.35rem;
  list-style: none;
  cursor: pointer;
}

.nav-services > summary::-webkit-details-marker {
  display: none;
}

.nav-services[open] > summary {
  color: var(--lime);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: -22rem;
  display: grid;
  width: min(760px, 90vw);
  padding: 1.5rem;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #10161a;
  box-shadow: var(--shadow);
}

.mega-menu::before {
  position: absolute;
  top: -1rem;
  right: 0;
  left: 0;
  height: 1rem;
  content: "";
}

.mega-menu div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mega-menu strong {
  min-height: 2.5rem;
  color: var(--text);
  font-size: 0.8rem;
}

.mega-menu a {
  display: flex;
  min-height: 40px;
  align-items: center;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.35;
  text-decoration: none;
}

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

.mega-menu .mega-menu-all {
  min-height: 44px;
  grid-column: 1 / -1;
  justify-content: center;
  border-top: 1px solid var(--border);
  color: var(--lime-soft);
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.breadcrumbs {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.breadcrumbs a {
  color: var(--muted-strong);
}

.breadcrumbs span[aria-current="page"] {
  overflow: hidden;
  color: var(--text);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 11vw, 9rem) 0;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(166, 255, 0, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 255, 0, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-grid {
  display: grid;
  min-height: 580px;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 4.9rem);
}

.hero-home {
  padding-block: clamp(4.5rem, 7vw, 6.8rem);
}

.hero-lead {
  color: var(--text) !important;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.55;
}

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin-top: 1.8rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.micro-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.micro-trust span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.hero-system {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle, rgba(166, 255, 0, 0.12), transparent 54%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent);
  box-shadow: var(--shadow);
}

.hero-system::before,
.hero-system::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(166, 255, 0, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-system::after {
  inset: 25%;
}

.system-core,
.system-node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  background: rgba(17, 24, 29, 0.96);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

.system-core {
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  flex-direction: column;
  justify-content: center;
  transform: translate(-50%, -50%);
  border-color: rgba(166, 255, 0, 0.5);
  border-radius: 34px;
  text-align: center;
}

.system-core .bi {
  margin-bottom: 0.7rem;
  color: var(--lime);
  font-size: 3rem;
}

.system-core small {
  color: var(--muted);
}

.system-node {
  min-width: 118px;
  min-height: 52px;
  gap: 0.45rem;
  justify-content: center;
  padding: 0.65rem;
  border-radius: 13px;
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 750;
}

.system-node .bi {
  color: var(--lime);
  font-size: 1.1rem;
}

.node-identity { top: 9%; left: 50%; transform: translateX(-50%); }
.node-endpoints { top: 25%; left: 4%; }
.node-cloud { top: 25%; right: 4%; }
.node-network { bottom: 24%; left: 4%; }
.node-servers { bottom: 24%; right: 4%; }
.node-backup { bottom: 7%; left: 50%; transform: translateX(-50%); }

.compact-hero {
  padding-block: clamp(5rem, 10vw, 8rem);
  text-align: center;
}

.compact-hero h1 {
  max-width: 19ch;
  margin-inline: auto;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.compact-hero .hero-lead {
  max-width: 720px;
  margin-inline: auto;
}

.compact-hero .button-row {
  justify-content: center;
}

.trust-strip {
  border-block: 1px solid var(--border);
  background: #0d1215;
}

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

.trust-grid p {
  display: flex;
  min-height: 94px;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 1rem 1.5rem;
  border-right: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-grid p:last-child {
  border-right: 0;
}

.trust-grid .bi {
  color: var(--lime);
  font-size: 1.5rem;
}

.trust-grid strong {
  color: var(--text);
}

.card-grid {
  display: grid;
  gap: 1.2rem;
}

.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.four-columns { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card,
.plan-card,
.panel {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent), var(--surface);
}

.card {
  min-height: 100%;
}

.card p,
.plan-card p,
.panel p {
  color: var(--muted);
}

.card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 750;
}

.card-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  place-items: center;
  border: 1px solid rgba(166, 255, 0, 0.3);
  border-radius: 12px;
  color: var(--lime);
  background: rgba(166, 255, 0, 0.06);
  font-size: 1.35rem;
}

.card-index {
  display: block;
  margin-bottom: 2rem;
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.8rem;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card a {
  margin-top: auto;
}

.section-action {
  margin-top: 2.5rem;
  text-align: center;
}

.split-layout {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 8vw, 7rem);
}

.check-list,
.cross-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.cross-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.8rem;
  color: var(--muted-strong);
}

.check-list li::before,
.cross-list li::before {
  position: absolute;
  top: 0.65rem;
  left: 0;
  color: var(--lime);
  content: "✓";
  font-weight: 900;
}

.cross-list li::before {
  color: var(--danger);
  content: "×";
}

.process-steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.process-steps li {
  position: relative;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.process-steps li::before {
  position: absolute;
  top: -4px;
  left: 1.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.process-steps span,
.principle-grid span,
.solution-row div > span,
.vertical-steps > li > span {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.78rem;
}

.process-steps p {
  color: var(--muted);
  font-size: 0.9rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid var(--border);
}

.benefit-grid article {
  padding: 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefit-grid article:nth-child(3n) {
  border-right: 0;
}

.benefit-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.benefit-grid .bi {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--lime);
  font-size: 1.6rem;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
}

.assessment-callout {
  background:
    linear-gradient(100deg, rgba(166, 255, 0, 0.09), transparent 50%),
    var(--surface);
}

.assessment-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.assessment-map div {
  min-height: 150px;
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: rgba(8, 11, 13, 0.66);
}

.assessment-map span {
  display: block;
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.78rem;
}

.assessment-map strong,
.assessment-map small {
  display: block;
}

.assessment-map strong {
  margin-top: 1.7rem;
}

.assessment-map small {
  color: var(--muted);
}

.note {
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--ember);
  color: var(--muted-strong) !important;
  background: rgba(255, 122, 26, 0.06);
}

.segment-list,
.expertise-cloud,
.signal-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.segment-list span,
.expertise-cloud span,
.signal-grid span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted-strong);
  background: var(--surface);
}

.segment-list.compact {
  justify-content: flex-start;
}

.pricing-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.plan-card {
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border-color: rgba(166, 255, 0, 0.65);
  box-shadow: 0 0 0 1px rgba(166, 255, 0, 0.15), 0 24px 70px rgba(0, 0, 0, 0.28);
}

.plan-label {
  color: var(--lime) !important;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin: 1.4rem 0;
}

.price strong {
  display: block;
  color: var(--text);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-detail .plan-card h2 {
  min-height: 4.6rem;
  font-size: 1.55rem;
}

.technologies {
  overflow: hidden;
}

.technology-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
}

.technology-list li {
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.025);
  font-weight: 800;
}

.incident-banner,
.incident-hero {
  background:
    radial-gradient(circle at 90% 50%, rgba(255, 84, 73, 0.13), transparent 35rem),
    var(--surface);
}

.incident-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 7vw, 6rem);
}

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

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

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 1rem 3rem 1rem 0;
  color: var(--text);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  right: 0.5rem;
  color: var(--lime);
  content: "+";
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 2rem 1.4rem 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  text-align: center;
}

.final-cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.8;
  background:
    radial-gradient(circle at 50% 100%, rgba(166, 255, 0, 0.14), transparent 36rem),
    linear-gradient(180deg, var(--bg), var(--surface));
  content: "";
}

.final-cta h2 {
  max-width: 20ch;
  margin-inline: auto;
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
  color: var(--muted-strong);
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta .eyebrow::before {
  display: none;
}

.service-groups {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.service-group {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 7vw, 6rem);
}

.coverage-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.coverage-panel div {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: var(--surface);
}

.coverage-panel .bi {
  color: var(--lime);
  font-size: 1.5rem;
}

.feature-columns {
  display: grid;
  max-width: 900px;
  margin-inline: auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 4rem;
}

.access-diagram,
.recovery-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.access-diagram div,
.recovery-flow div {
  display: flex;
  min-width: 105px;
  min-height: 122px;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: var(--surface);
  text-align: center;
}

.access-diagram .bi,
.recovery-flow .bi {
  color: var(--lime);
  font-size: 1.5rem;
}

.access-diagram > span,
.recovery-flow > span {
  color: var(--lime);
}

.recovery-flow {
  grid-column: 1 / -1;
}

.recovery-flow small {
  color: var(--muted);
}

.five-node-flow {
  gap: 0.4rem;
}

.five-node-flow div {
  min-width: 0;
}

.explain-flow {
  display: grid;
  position: relative;
  z-index: 0;
  margin-top: 2.5rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.explain-flow::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 4%;
  left: 4%;
  height: 1px;
  background: rgba(152, 255, 0, 0.34);
  content: "";
}

.explain-flow.six-steps {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.explain-flow > div {
  display: flex;
  min-height: 176px;
  padding: 1.15rem 0.8rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background:
    linear-gradient(180deg, rgba(152, 255, 0, 0.055), transparent 48%),
    var(--surface);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  text-align: center;
}

.explain-flow .bi {
  color: var(--lime);
  font-size: 1.55rem;
}

.explain-flow .flow-number {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.explain-flow small {
  color: var(--muted);
  line-height: 1.45;
}

.danger-flow::before {
  background: rgba(255, 84, 73, 0.42);
}

.danger-flow > div {
  border-color: rgba(255, 84, 73, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 84, 73, 0.08), transparent 48%),
    var(--surface);
}

.danger-flow .bi,
.danger-flow .flow-number {
  color: #ff746b;
}

.incident-process-section {
  background:
    radial-gradient(circle at 50% 0, rgba(255, 84, 73, 0.1), transparent 38%),
    var(--surface-deep);
}

.collaboration-diagram {
  display: flex;
  margin-top: 2.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.collaboration-diagram > div {
  display: flex;
  min-height: 145px;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: rgba(11, 16, 19, 0.72);
  text-align: center;
}

.collaboration-diagram .collaboration-center {
  border-color: rgba(152, 255, 0, 0.42);
  box-shadow: 0 0 32px rgba(152, 255, 0, 0.08);
}

.collaboration-diagram .bi,
.collaboration-diagram > span {
  color: var(--lime);
  font-size: 1.45rem;
}

.collaboration-diagram small {
  color: var(--muted);
}

.maturity-path {
  display: grid;
  margin: 2.75rem 0 3rem;
  align-items: end;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.maturity-path > div {
  display: flex;
  min-height: 112px;
  padding: 1rem;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: linear-gradient(180deg, rgba(152, 255, 0, 0.04), var(--surface));
}

.maturity-path > div:nth-child(2) {
  min-height: 136px;
}

.maturity-path > div:nth-child(3) {
  min-height: 160px;
  border-color: rgba(152, 255, 0, 0.38);
}

.maturity-path > div:nth-child(4) {
  min-height: 184px;
}

.maturity-path span {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.maturity-path small,
.plan-scope-note {
  color: var(--muted);
}

.plan-scope-note {
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--lime);
}

.wide-quote {
  max-width: 900px;
  margin: 4rem auto 0;
}

.signal-grid span {
  border-color: rgba(255, 84, 73, 0.26);
}

.guidance-card .eyebrow {
  margin-bottom: 1.5rem;
}

.guidance-card h2 {
  font-size: 1.8rem;
}

.guidance-card.positive {
  border-top-color: var(--lime);
}

.guidance-card.negative {
  border-top-color: var(--danger);
}

.vertical-steps {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.vertical-steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
}

.vertical-steps h3,
.vertical-steps p {
  margin-bottom: 0.3rem;
}

.vertical-steps p {
  color: var(--muted);
}

.form-section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.form-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 7vw, 6rem);
}

.contact-alternative {
  display: flex;
  margin-top: 2rem;
  padding: 1.2rem;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: var(--surface);
}

.bf-form {
  padding: clamp(1.25rem, 4vw, 2.25rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.45rem;
}

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

.field label {
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 750;
}

.field label span:not(.optional) {
  color: var(--lime);
}

.optional {
  color: var(--muted);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.85rem;
  border: 1px solid #40505a;
  border-radius: 9px;
  color: var(--text);
  background: #0b1013;
}

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

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #61737e;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  margin: 0;
  color: #ffaaa4;
  font-size: 0.82rem;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.7rem;
}

.checkbox-field input {
  width: 22px;
  min-height: 22px;
  margin-top: 0.2rem;
}

.checkbox-field label {
  font-weight: 500;
}

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

.bf-form > .button {
  width: 100%;
  margin-top: 1.5rem;
}

.form-errors {
  margin-bottom: 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(255, 84, 73, 0.55);
  border-radius: 9px;
  color: #ffd0cd;
  background: rgba(255, 84, 73, 0.08);
}

.form-errors p {
  margin: 0;
}

.form-errors ul {
  margin-bottom: 0;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  color: var(--muted-strong);
}

.form-status.success {
  padding: 1rem;
  border: 1px solid rgba(166, 255, 0, 0.45);
  border-radius: 9px;
  color: var(--lime-soft);
  background: rgba(166, 255, 0, 0.06);
}

.form-status.error {
  color: #ffaaa4;
}

.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.28);
  border-top-color: #0b0f0a;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.is-loading .spinner {
  display: inline-block;
}

.route-card {
  display: block;
  color: var(--text);
  text-decoration: none;
}

.route-card:hover {
  border-color: var(--lime);
  color: var(--text);
}

.route-card h2 {
  font-size: 1.35rem;
}

.route-card > span:last-child {
  color: var(--lime-soft);
  font-weight: 750;
}

.incident-route {
  border-color: rgba(255, 84, 73, 0.35);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--surface);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border: 1px solid var(--border);
  text-align: center;
}

.comparison-table th:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 30%;
  text-align: left;
  background: var(--surface);
}

.comparison-table thead th {
  color: var(--text);
  background: var(--surface-2);
}

.comparison-table .yes {
  color: var(--lime);
  font-weight: 850;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  scrollbar-color: var(--lime-dark) var(--surface);
}

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

.solution-row {
  display: grid;
  align-items: center;
  padding: 2rem 0;
  grid-template-columns: 0.75fr 1fr auto;
  gap: 2rem;
  border-bottom: 1px solid var(--border);
}

.solution-row h2 {
  margin: 0;
  font-size: 1.55rem;
}

.solution-row p {
  margin: 0;
  color: var(--muted);
}

.solution-row > a {
  display: inline-flex;
  min-width: 160px;
  min-height: 44px;
  align-items: center;
  font-weight: 750;
}

.layer-stack {
  position: relative;
  display: flex;
  min-height: 340px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.layer-stack span {
  display: grid;
  width: min(100%, 390px);
  min-height: 60px;
  margin-top: -8px;
  place-items: center;
  transform: perspective(600px) rotateX(50deg);
  border: 1px solid rgba(166, 255, 0, 0.3);
  border-radius: 14px;
  color: var(--muted-strong);
  background: rgba(17, 24, 29, 0.94);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.principle-grid article {
  padding: 1.4rem;
  border-top: 1px solid var(--border);
}

.principle-grid p {
  color: var(--muted);
  font-size: 0.9rem;
}

.alliance-note {
  text-align: center;
}

.alliance-note .eyebrow {
  justify-content: center;
}

.alliance-note .eyebrow::before {
  display: none;
}

.legal-date {
  color: var(--muted) !important;
  font-size: 0.9rem;
}

.legal-content section {
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted-strong);
}

.legal-note {
  padding: 1.5rem;
  border: 1px solid rgba(255, 122, 26, 0.35);
  border-radius: var(--radius-small);
  background: rgba(255, 122, 26, 0.06);
}

.not-found {
  min-height: 72vh;
  display: grid;
  place-items: center;
}

.site-footer {
  padding-top: 5rem;
  border-top: 1px solid var(--border);
  background: #060809;
}

.footer-grid {
  display: grid;
  padding-bottom: 4rem;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 2rem;
}

.footer-grid h2 {
  margin-bottom: 1.1rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-grid a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.footer-brand img {
  width: 170px;
  margin-bottom: 1.2rem;
}

.footer-brand p {
  max-width: 360px;
  color: var(--muted);
}

.footer-brand .responsible-promise {
  font-size: 0.78rem;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-button {
  position: fixed;
  z-index: 900;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border: 1px solid #33c269;
  border-radius: 999px;
  color: #07110b;
  background: #56e488;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  font-size: 0.85rem;
  font-weight: 850;
  text-decoration: none;
}

.whatsapp-button:hover {
  color: #07110b;
  background: #78ee9f;
}

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

.server-response-page {
  min-height: 100vh;
}

.server-response {
  display: grid;
  min-height: 100vh;
  padding: 2rem;
  place-items: center;
}

.server-response-card {
  width: min(100%, 720px);
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.server-response-card .brand {
  width: 180px;
  margin: 0 auto 2rem;
}

.server-response-card .brand img {
  width: 100%;
}

.server-response-card .eyebrow {
  justify-content: center;
}

.server-response-card .eyebrow::before {
  display: none;
}

.server-response-card h1 {
  margin-bottom: 1rem;
}

.server-response-card p:not(.eyebrow) {
  color: var(--muted-strong);
}

.server-response-error {
  border-color: rgba(255, 84, 73, 0.42);
}

@media (max-width: 1080px) {
  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    z-index: 1001;
    inset: var(--header-height) 0 0 auto;
    width: min(92vw, 440px);
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    padding: 1.25rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    border-left: 1px solid var(--border);
    background: #0b1013;
    box-shadow: var(--shadow);
    visibility: hidden;
    clip-path: inset(0 0 0 100%);
    pointer-events: none;
    transition: clip-path 190ms ease, visibility 190ms;
  }

  .primary-nav.is-open {
    visibility: visible;
    clip-path: inset(0);
    pointer-events: auto;
  }

  .nav-main,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-main > a,
  .nav-services > summary,
  .incident-link {
    min-height: 50px;
    padding-inline: 0.4rem;
    font-size: 1rem;
  }

  .nav-services {
    width: 100%;
  }

  .nav-services > summary {
    justify-content: space-between;
  }

  .mega-menu {
    position: static;
    width: 100%;
    padding: 1rem 0 0.5rem 1rem;
    grid-template-columns: 1fr;
    border: 0;
    border-left: 1px solid var(--border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .mega-menu strong {
    min-height: 0;
    margin-top: 0.6rem;
    color: var(--lime-soft);
  }

  .mega-menu a {
    min-height: 44px;
  }

  .mega-menu .mega-menu-all {
    justify-content: flex-start;
  }

  .nav-actions .button,
  .nav-actions .incident-link {
    width: 100%;
  }

  .nav-actions .incident-link {
    justify-content: center;
    border: 1px solid rgba(255, 84, 73, 0.4);
    border-radius: 10px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
    gap: 2.5rem;
  }

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

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

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

  .process-steps li:nth-child(n + 4) {
    margin-top: 1.5rem;
  }

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

  .explain-flow,
  .explain-flow.six-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .explain-flow::before {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .brand img {
    width: 138px;
  }

  .hero-grid,
  .split-layout,
  .service-group,
  .form-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-system {
    min-height: 480px;
  }

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

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

  .trust-grid p {
    min-height: 70px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-grid p:last-child {
    border-bottom: 0;
  }

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

  .benefit-grid article:nth-child(3n) {
    border-right: 1px solid var(--border);
  }

  .benefit-grid article:nth-child(2n) {
    border-right: 0;
  }

  .benefit-grid article:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--border);
  }

  .benefit-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .service-group {
    gap: 1.5rem;
  }

  .form-layout {
    gap: 2rem;
  }

  .solution-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .solution-row > a {
    min-width: 0;
  }

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

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .section {
    padding-block: 4rem;
  }

  h1,
  .hero-copy h1,
  .compact-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding-block: 4rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .button-row .text-link {
    width: 100%;
  }

  .micro-trust {
    flex-direction: column;
  }

  .hero-system {
    min-height: 420px;
  }

  .system-core {
    width: 145px;
    height: 145px;
    border-radius: 26px;
  }

  .system-core .bi {
    font-size: 2.2rem;
  }

  .system-node {
    min-width: 100px;
    min-height: 46px;
    font-size: 0.7rem;
  }

  .node-endpoints,
  .node-network { left: 2%; }
  .node-cloud,
  .node-servers { right: 2%; }

  .two-columns,
  .three-columns,
  .four-columns,
  .pricing-grid,
  .feature-columns,
  .form-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

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

  .benefit-grid article,
  .benefit-grid article:nth-child(2n),
  .benefit-grid article:nth-child(3n),
  .benefit-grid article:nth-last-child(-n + 2),
  .benefit-grid article:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .benefit-grid article:last-child {
    border-bottom: 0;
  }

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

  .process-steps li,
  .process-steps li:nth-child(n + 4) {
    margin-top: 0;
  }

  .assessment-map,
  .coverage-panel,
  .technology-list {
    grid-template-columns: 1fr;
  }

  .assessment-map div {
    min-height: 110px;
  }

  .assessment-map strong {
    margin-top: 0.8rem;
  }

  .access-diagram,
  .recovery-flow {
    flex-direction: column;
  }

  .access-diagram div,
  .recovery-flow div {
    width: 100%;
    min-height: 105px;
  }

  .access-diagram > span,
  .recovery-flow > span {
    transform: rotate(90deg);
  }

  .pricing-detail .plan-card h2 {
    min-height: 0;
  }

  .explain-flow,
  .explain-flow.six-steps,
  .maturity-path {
    grid-template-columns: 1fr;
  }

  .explain-flow::before {
    display: none;
  }

  .explain-flow > div {
    min-height: 118px;
  }

  .maturity-path > div,
  .maturity-path > div:nth-child(2),
  .maturity-path > div:nth-child(3),
  .maturity-path > div:nth-child(4) {
    min-height: 112px;
  }

  .collaboration-diagram {
    flex-direction: column;
  }

  .collaboration-diagram > div {
    width: 100%;
  }

  .collaboration-diagram > span {
    transform: rotate(90deg);
  }

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

  .footer-bottom {
    min-height: 95px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .whatsapp-button span:last-child {
    display: inline;
  }

  .whatsapp-button {
    position: static;
    width: max-content;
    margin: 0 auto 1rem;
    padding: 0.7rem 1rem;
  }
}

@media (max-width: 390px) {
  .hero-system {
    min-height: 380px;
  }

  .system-core {
    width: 125px;
    height: 125px;
    font-size: 0.78rem;
  }

  .system-node {
    min-width: 88px;
    padding: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .whatsapp-button,
  .site-footer,
  .button-row {
    display: none !important;
  }

  body {
    color: #111;
    background: #fff;
  }

  a {
    color: #111;
  }
}
