@font-face {
  font-family: "Geist";
  src: url("../fonts/GeistVF.woff") format("woff");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("../fonts/GeistMonoVF.woff") format("woff");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #101222;
  --surface: #171a2c;
  --surface-2: #232539;
  --surface-3: #2e3148;
  --text: #f8fafc;
  --muted: #a8b3c7;
  --muted-strong: #64748b;
  --paper: #ffffff;
  --paper-muted: #f4f7fb;
  --paper-border: #dce4ee;
  --vortex-bg: #ffffff;
  --vortex-border: #dce4ee;
  --ink: #0d1728;
  --ink-muted: #536173;
  --primary: #00aeff;
  --primary-dark: #0588e6;
  --primary-soft: #e7f6ff;
  --success: #24b47e;
  --warning: #ff9900;
  --danger: #e32d00;
  --critical: #8a1c00;
  --border: #373a52;
  --shadow: 0 18px 45px rgba(16, 18, 34, 0.18);
  --container: 1366px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

.container {
  width: 100%;
  max-width: calc(var(--container) + 40px);
  margin-inline: auto;
  padding-inline: 20px;
}

section[id],
[data-tool-panel] {
  scroll-margin-top: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 18, 34, 0.92);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: 100%;
  max-width: calc(var(--container) + 40px);
  min-height: 76px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 160px;
}

.brand-link img {
  width: 174px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  border-radius: 8px;
  color: #d8e4f0;
  font-size: 0.94rem;
  font-weight: 650;
  padding: 10px 12px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.nav-menu .nav-cta {
  margin-left: 8px;
  background: var(--primary);
  color: #07111f;
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta.is-active {
  background: #4ac4ff;
  color: #07111f;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 2px;
}

.nav-menu .language-switcher a {
  border-radius: 6px;
  color: #b9c8da;
  font-family: "Geist Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0;
  line-height: 1;
  padding: 7px 8px;
}

.nav-menu .language-switcher a:hover,
.nav-menu .language-switcher a[aria-current="true"] {
  background: rgba(0, 174, 255, 0.18);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: currentColor;
}

.hero-section {
  position: relative;
  min-height: clamp(620px, calc(100svh - 112px), 760px);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 84px 0 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.hero-canvas,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.34;
}

.hero-grid {
  pointer-events: none;
  z-index: -1;
  opacity: 1;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 18, 34, 0.99) 0%, rgba(16, 18, 34, 0.88) 40%, rgba(16, 18, 34, 0.62) 100%),
    radial-gradient(circle at 78% 22%, rgba(0, 174, 255, 0.18), transparent 34%),
    radial-gradient(circle at 16% 76%, rgba(255, 255, 255, 0.06), transparent 28%);
}

.hero-radar {
  position: absolute;
  top: 50%;
  right: max(20px, calc((100vw - var(--container)) / 2));
  z-index: 3;
  width: min(700px, 47vw);
  max-width: calc(100vw - 40px);
  margin: 0;
  color: var(--text);
  display: grid;
  gap: 16px;
  transform: translateY(-46%);
}

.radar-heading {
  display: grid;
  gap: 8px;
  max-width: 580px;
}

.radar-heading span,
.radar-metrics dt {
  color: var(--primary);
  font-family: "Geist Mono", monospace;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.radar-heading strong {
  display: block;
  max-width: 500px;
  color: #ffffff;
  font-size: clamp(1.18rem, 1.8vw, 1.58rem);
  line-height: 1.12;
}

.radar-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(190px, 0.48fr);
  gap: 22px;
  align-items: center;
}

.radar-visual::before {
  content: "";
  position: absolute;
  inset: -34px -38px;
  z-index: -1;
  background:
    radial-gradient(circle at 40% 50%, rgba(0, 174, 255, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(16, 18, 34, 0), rgba(16, 18, 34, 0.45) 38%, rgba(16, 18, 34, 0));
}

.radar-scope {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 174, 255, 0.1) 0 1px, transparent 1px 100%),
    linear-gradient(rgba(0, 174, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 42px 42px, 42px 42px;
}

.radar-ring,
.radar-axis,
.radar-sweep,
.radar-center,
.risk-node {
  position: absolute;
}

.radar-ring {
  inset: 50%;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-critical {
  width: 96%;
  height: 96%;
  border-color: var(--critical);
}

.ring-high {
  width: 74%;
  height: 74%;
  border-color: var(--danger);
}

.ring-medium {
  width: 52%;
  height: 52%;
  border-color: var(--warning);
}

.ring-low {
  width: 30%;
  height: 30%;
  border-color: var(--success);
}

.radar-axis {
  left: 50%;
  top: 50%;
  z-index: 1;
  background: rgba(0, 174, 255, 0.18);
  transform: translate(-50%, -50%);
}

.axis-horizontal {
  width: 100%;
  height: 1px;
}

.axis-vertical {
  width: 1px;
  height: 100%;
}

.radar-sweep {
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 48%;
  height: 0;
  border-top: 2px solid rgba(0, 174, 255, 0.9);
  background: transparent;
  transform-origin: left top;
  transform: rotate(0deg);
  animation: radarSweep 7s linear infinite;
  will-change: transform;
}

.radar-scope.is-radar-controlled .radar-sweep {
  animation: none;
}

.radar-center {
  left: 50%;
  top: 50%;
  z-index: 4;
  display: grid;
  gap: 2px;
  width: 112px;
  min-height: 58px;
  align-content: center;
  border: 1px solid rgba(0, 174, 255, 0.44);
  border-radius: 8px;
  background: rgba(16, 18, 34, 0.84);
  text-align: center;
  transform: translate(-50%, -50%);
}

.radar-center b {
  color: #ffffff;
  font-size: 0.82rem;
}

.radar-center small {
  color: var(--muted);
  font-size: 0.68rem;
}

.risk-node {
  --dot-center-offset-x: 6.5px;
  --dot-center-offset-y: 13.5px;
  min-width: 106px;
  left: calc(var(--node-dot-x) - var(--dot-center-offset-x));
  top: calc(var(--node-dot-y) - var(--dot-center-offset-y));
  z-index: 3;
  display: grid;
  gap: 2px;
  padding-left: 20px;
  color: #ffffff;
  font-size: 0.72rem;
  opacity: 0.24;
  filter: brightness(0.88);
  transition: opacity 0.18s ease, filter 0.18s ease, text-shadow 0.18s ease;
}

.risk-node-dot {
  position: absolute;
  left: 0;
  top: 7px;
  width: 13px;
  height: 13px;
  display: block;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: #07111f;
  opacity: 0.34;
  transform-origin: center;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.risk-node-dot::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.54);
  transform-origin: center;
}

.risk-node b {
  color: currentColor;
  font-family: "Geist Mono", monospace;
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.18s ease;
}

.risk-node small {
  color: var(--muted);
  font-size: 0.7rem;
  transition: color 0.2s ease;
}

.node-critical {
  --node-dot-x: 72%;
  --node-dot-y: 7.3%;
  color: var(--critical);
}

.node-high {
  --node-dot-x: 17%;
  --node-dot-y: 33.3%;
  color: var(--danger);
}

.node-medium {
  --node-dot-x: 73%;
  --node-dot-y: 62.1%;
  color: var(--warning);
}

.node-low {
  --node-dot-x: 42%;
  --node-dot-y: 62.7%;
  color: var(--success);
}

.risk-node.is-detected {
  opacity: 1;
  filter: brightness(1.55) saturate(1.18);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.76), 0 0 22px currentColor;
}

.risk-node.is-detected .risk-node-dot {
  border-color: #ffffff;
  background: #ffffff;
  opacity: 1;
  transform: scale(1.34);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22), 0 0 24px currentColor, 0 0 42px currentColor;
}

.risk-node.is-detected .risk-node-dot::before {
  animation: radarNodeFound 0.72s ease-out;
}

.risk-node.is-fading {
  opacity: 0.24;
  filter: brightness(0.88);
  text-shadow: none;
  transition: opacity 1.45s ease, filter 1.45s ease, text-shadow 1.45s ease;
}

.risk-node.is-fading .risk-node-dot {
  border-color: currentColor;
  background: #07111f;
  opacity: 0.34;
  transform: scale(1);
  box-shadow: none;
  transition:
    border-color 1.3s ease,
    background 1.3s ease,
    opacity 1.3s ease,
    transform 1.3s ease,
    box-shadow 1.55s ease;
}

.risk-node.is-detected.is-fading b,
.risk-node.is-fading b {
  color: currentColor;
  transition: color 1.25s ease;
}

.risk-node.is-detected.is-fading small,
.risk-node.is-fading small {
  color: var(--muted);
  transition: color 1.25s ease;
}

.risk-node.is-detected b {
  color: #ffffff;
}

.risk-node.is-detected small {
  color: #d8ecff;
}

@keyframes radarSweep {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes radarNodeFound {
  0% {
    opacity: 0.92;
    transform: scale(0.44);
  }

  100% {
    opacity: 0;
    transform: scale(1.72);
  }
}

.radar-metrics {
  min-width: 0;
  margin: 0;
  display: grid;
  align-content: center;
  gap: 18px;
}

.radar-metrics div {
  min-width: 0;
  position: relative;
  padding: 12px 0 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.radar-metrics div::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(var(--metric-progress, 1));
  transform-origin: left center;
}

.radar-metrics dd {
  margin: 5px 0 5px;
  color: #ffffff;
  font-family: "Geist Mono", monospace;
  font-size: clamp(1.4rem, 2.4vw, 2.05rem);
  font-weight: 780;
  line-height: 1;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.radar-metrics span {
  display: block;
  color: #c6d2e2;
  font-size: 0.78rem;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-family: "Geist Mono", monospace;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: none;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(3.3rem, 7.4vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-content h1 {
  max-width: min(760px, 100%);
}

h2 {
  margin-bottom: 18px;
  color: inherit;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 580px;
  margin-bottom: 28px;
  color: #d4deeb;
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 760;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  background: var(--primary);
  color: #06101c;
}

.button-primary:hover {
  background: #52c8ff;
}

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

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.section {
  padding: 96px 0;
  background: var(--bg);
  color: var(--text);
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-muted {
  background: var(--paper-muted);
  color: var(--ink);
}

.section-copy p:not(.eyebrow),
.section-heading p {
  color: var(--ink-muted);
  font-size: 1.06rem;
}

.section:not(.section-light):not(.section-muted) .section-heading p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 56px;
  align-items: start;
}

.split-section.reverse {
  grid-template-columns: minmax(320px, 1.08fr) minmax(0, 0.92fr);
}

.workflow {
  display: grid;
  gap: 14px;
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 18px;
  border: 1px solid var(--paper-border);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
}

.workflow-step > *,
.dashboard-points li > div,
.tool-menu-item,
.tool-cluster,
.tool-entry,
.demo-copy,
.demo-details,
.demo-facts div,
.demo-route li,
.service-stack article,
.faq-list details {
  min-width: 0;
}

.workflow-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--primary-soft);
  border: 1px solid #b8e7ff;
  color: var(--primary-dark);
}

.workflow-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-title {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}

.workflow-step p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--ink-muted);
  overflow-wrap: break-word;
}

.section-dashboard {
  overflow: hidden;
  background: #101222;
  color: var(--text);
}

.dashboard-showcase {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(640px, 1.28fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: center;
}

.dashboard-copy {
  max-width: 560px;
}

.dashboard-copy h2 {
  max-width: 560px;
  font-size: clamp(2.25rem, 3.2vw, 3.35rem);
  line-height: 1.06;
  text-wrap: balance;
}

.dashboard-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
  text-wrap: pretty;
}

.dashboard-points {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.dashboard-points li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dashboard-points svg {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 174, 255, 0.42);
  border-radius: 8px;
  background: rgba(0, 174, 255, 0.08);
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  padding: 10px;
}

.dashboard-points strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
}

.dashboard-points span {
  display: block;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.dashboard-media {
  position: relative;
  justify-self: end;
  width: 100%;
  margin: 0;
}

.dashboard-media img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #101222;
  box-shadow: 0 26px 70px rgba(5, 8, 22, 0.36);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

#capacidades .tool-heading {
  max-width: calc(var(--container) + 40px);
  margin-bottom: 30px;
  text-align: left;
}

#capacidades .tool-heading h2,
#capacidades .tool-heading p {
  text-align: left;
}

#capacidades .tool-heading p {
  max-width: 680px;
}

.section-tools {
  padding-bottom: 52px;
}

.section-heading.compact {
  max-width: 680px;
  margin-bottom: 0;
}

.tool-explorer {
  display: grid;
  grid-template-columns: minmax(248px, 0.32fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.tool-menu {
  display: grid;
  gap: 10px;
}

.tool-menu-item {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(35, 37, 57, 0.72);
  color: inherit;
  padding: 14px;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.tool-menu-item:hover,
.tool-menu-item:focus-visible {
  border-color: rgba(0, 174, 255, 0.44);
  background: rgba(35, 37, 57, 0.96);
  color: inherit;
  transform: translateY(-1px);
}

.tool-menu-item.is-active,
.tool-menu-item[aria-current="true"] {
  border-color: rgba(0, 174, 255, 0.62);
  background:
    linear-gradient(135deg, rgba(0, 174, 255, 0.14), transparent 55%),
    rgba(35, 37, 57, 0.96);
}

.tool-menu-item span {
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(0, 174, 255, 0.3);
  border-radius: 7px;
  background: rgba(0, 174, 255, 0.08);
  color: var(--primary);
  font-family: "Geist Mono", monospace;
  font-size: 0.72rem;
  font-weight: 780;
  line-height: 1.2;
  padding: 5px 8px;
}

.tool-menu-item strong {
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.25;
}

.tool-menu-item small {
  color: #aebcd0;
  font-size: 0.82rem;
  font-weight: 620;
  line-height: 1.38;
}

.tool-panels {
  min-width: 0;
}

.tool-explorer.is-enhanced .tool-cluster[hidden] {
  display: none;
}

.tool-cluster {
  display: grid;
  gap: 16px;
  padding: 0;
}

.tool-cluster-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 2px 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-cluster-heading span {
  order: 2;
  flex: 0 0 auto;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(0, 174, 255, 0.3);
  border-radius: 8px;
  background: rgba(0, 174, 255, 0.08);
  color: var(--primary);
  font-family: "Geist Mono", monospace;
  font-size: 0.74rem;
  font-weight: 780;
  line-height: 1.2;
  padding: 6px 9px;
}

.tool-cluster-heading h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.25;
}

#capacidades .tool-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
}

#capacidades .tool-entry {
  display: grid;
  grid-template-columns: minmax(138px, 0.24fr) minmax(0, 1fr);
  gap: 14px 18px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(16, 18, 34, 0.5);
  padding: 14px 16px;
}

#capacidades .tool-entry:last-child {
  padding-bottom: 14px;
}

#capacidades .tool-entry dt {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 820;
  line-height: 1.25;
}

#capacidades .tool-entry dd {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 16px;
  align-items: start;
  margin: 0;
}

#capacidades .tool-entry p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
  overflow-wrap: break-word;
}

#capacidades .tool-entry ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  max-width: 240px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#capacidades .tool-entry li {
  border: 1px solid rgba(0, 174, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: #d8e4f0;
  font-size: 0.74rem;
  font-weight: 760;
  line-height: 1.2;
  padding: 5px 7px;
  white-space: nowrap;
}

.section-vortex {
  min-height: 350px;
  display: grid;
  align-items: center;
  border-block: 1px solid var(--vortex-border);
  background: var(--vortex-bg);
  color: var(--ink);
  padding: 46px 0;
}

.vortex-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.vortex-lead {
  display: grid;
  gap: 0;
  align-items: start;
}

.vortex-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.vortex-copy span {
  color: var(--primary-dark);
  font-family: "Geist Mono", monospace;
  font-size: 0.73rem;
  font-weight: 780;
  line-height: 1.2;
}

.vortex-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 4.2vw, 4.05rem);
  line-height: 0.98;
}

.vortex-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.vortex-capabilities {
  display: grid;
  gap: 16px;
  align-content: center;
}

.vortex-capabilities p {
  max-width: 360px;
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 790;
  line-height: 1.25;
}

.vortex-capabilities ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  max-width: 360px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vortex-capabilities li {
  border: 1px solid var(--vortex-border);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.2;
  padding: 6px 8px;
  white-space: nowrap;
}

.section-faq {
  background: var(--bg);
  color: var(--text);
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: 48px;
  align-items: start;
}

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

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  color: #ffffff;
  font-weight: 820;
  padding: 20px 22px;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-family: "Geist Mono", monospace;
}

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

.faq-list p {
  margin: 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 14px 22px 20px;
  overflow-wrap: break-word;
}

.service-stack {
  display: grid;
  gap: 14px;
}

.service-stack article {
  border: 1px solid var(--paper-border);
  border-radius: 8px;
  background: var(--paper);
  padding: 22px;
}

.service-stack span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-weight: 820;
}

.service-stack p {
  margin-bottom: 0;
  color: var(--ink-muted);
  overflow-wrap: break-word;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--primary-dark);
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-demo {
  min-height: clamp(700px, 78vh, 780px);
  display: grid;
  align-items: center;
  padding-block: clamp(86px, 8vw, 116px);
  border-top: 1px solid var(--paper-border);
  color: var(--ink);
}

.demo-shell {
  position: relative;
  display: grid;
  gap: 30px;
}

.demo-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.54fr);
  grid-template-areas:
    "copy details"
    "route route";
  gap: clamp(30px, 4.5vw, 58px) clamp(40px, 5vw, 78px);
  align-items: start;
}

.demo-copy {
  grid-area: copy;
  display: grid;
  gap: 20px;
  padding-top: 4px;
}

.demo-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 4.2vw, 3.65rem);
  line-height: 1.02;
  text-wrap: balance;
}

.demo-copy h2 span {
  color: var(--primary-dark);
}

.demo-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.08rem;
  line-height: 1.55;
  text-wrap: pretty;
  overflow-wrap: break-word;
}

.demo-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-tools li {
  border: 1px solid #b8e7ff;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 780;
  line-height: 1.2;
  padding: 7px 9px;
}

.demo-details {
  grid-area: details;
  display: grid;
  gap: 20px;
  align-content: start;
  border: 1px solid var(--paper-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 22px;
}

.demo-facts {
  display: grid;
  gap: 0;
  margin: 0;
}

.demo-facts div {
  display: grid;
  grid-template-columns: minmax(92px, 0.5fr) minmax(0, 1fr);
  gap: 18px;
  border: 0;
  border-top: 1px solid var(--paper-border);
  border-radius: 0;
  background: transparent;
  padding: 16px 0;
}

.demo-facts div:first-child {
  border-top: 0;
  padding-top: 0;
}

.demo-facts div:last-child {
  padding-bottom: 0;
}

.demo-facts dt {
  margin: 0;
  color: var(--primary-dark);
  font-family: "Geist Mono", monospace;
  font-size: 0.68rem;
  font-weight: 780;
  line-height: 1.2;
}

.demo-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 820;
  line-height: 1.25;
  overflow-wrap: break-word;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 2px;
}

.demo-actions .button {
  justify-content: center;
  min-width: 0;
  text-align: center;
}

.demo-actions .button-primary {
  flex-basis: 100%;
}

.demo-route {
  grid-area: route;
  display: grid;
  gap: 18px;
  margin-top: 4px;
  padding-top: 6px;
}

.demo-route h3 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.15;
}

.demo-route ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-route li {
  display: grid;
  gap: 9px;
  border: 1px solid var(--paper-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 20px;
}

.demo-route li span {
  color: var(--primary-dark);
  font-family: "Geist Mono", monospace;
  font-size: 0.68rem;
  font-weight: 820;
  line-height: 1.2;
}

.demo-route li strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.demo-route li p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.section-demo .button-secondary {
  border-color: var(--paper-border);
  background: var(--paper);
  color: var(--ink);
}

.section-demo .button-secondary:hover {
  border-color: #b8e7ff;
  background: var(--primary-soft);
}

.section-blackice {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background: var(--bg);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.section-blackice .hero-grid {
  z-index: 0;
}

.section-blackice .hero-canvas {
  z-index: 1;
  pointer-events: none;
}

.blackice-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 30px 48px;
  align-items: start;
}

.section-blackice .section-copy p:not(.eyebrow) {
  color: #d4deeb;
}

.section-blackice .text-link {
  color: #73d4ff;
}

.blackice-credentials-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(320px, 0.75fr);
  gap: 20px 32px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
}

.defense-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.defense-badge {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px 14px;
  align-content: start;
  border: 1px solid rgba(0, 174, 255, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 174, 255, 0.08), transparent 46%),
    rgba(35, 37, 57, 0.76);
  padding: 18px 20px 20px;
}

.defense-badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 34px;
  margin-bottom: 0;
  border: 1px solid rgba(0, 174, 255, 0.5);
  border-radius: 8px;
  background: rgba(0, 174, 255, 0.16);
  color: var(--primary);
  font-family: "Geist Mono", monospace;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  padding: 8px 10px;
}

.defense-badge strong {
  display: block;
  align-self: center;
  margin-bottom: 0;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.18;
}

.defense-badge p {
  grid-column: 1 / -1;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #c7d3e3;
  font-size: 0.94rem;
  line-height: 1.55;
  padding-top: 12px;
}

.defense-note {
  margin: 0;
  color: #b9c8da;
  font-size: 0.92rem;
  line-height: 1.5;
}

.defense-note {
  max-width: none;
  margin-bottom: 0;
}

.defense-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 14px;
}

.section-blackice .defense-links .text-link,
.section-blackice .defense-source-link {
  margin-top: 0;
  font-size: 0.94rem;
}

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

.blackice-fact {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(35, 37, 57, 0.74);
  padding: 22px;
}

.blackice-fact span {
  display: block;
  margin-bottom: 12px;
  color: var(--primary);
  font-family: "Geist Mono", monospace;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
}

.blackice-fact strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.3;
}

.blackice-fact p {
  margin: 0;
  color: #b9c8da;
  font-size: 0.98rem;
}

.section-contact {
  background: #07111f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.contact-copy p:not(.eyebrow) {
  color: #d4deeb;
  font-size: 1.08rem;
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #dce7f5;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.78);
  color: #ffffff;
  outline: none;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 174, 255, 0.18);
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

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

.site-footer {
  background: var(--paper);
  color: var(--ink-muted);
  border-top: 1px solid var(--paper-border);
  padding: 28px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.footer-brand img {
  width: 142px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--ink);
  font-weight: 700;
}

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

.footer-grid p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .hero-radar {
    width: min(440px, 40vw);
    gap: 14px;
    opacity: 0.86;
  }

  .radar-heading strong {
    font-size: 1.12rem;
  }

  .radar-visual {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .radar-scope {
    width: min(100%, 330px);
    justify-self: center;
  }

  .radar-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .radar-metrics span {
    display: none;
  }

  .tool-explorer {
    grid-template-columns: 1fr;
  }

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

  .dashboard-showcase {
    grid-template-columns: 1fr;
  }

  .dashboard-copy {
    max-width: 760px;
  }

  .dashboard-copy h2,
  .dashboard-copy p:not(.eyebrow) {
    max-width: 760px;
  }

  .dashboard-media {
    justify-self: stretch;
  }

  .faq-shell {
    grid-template-columns: 1fr;
  }

  .demo-shell {
    grid-template-columns: 1fr;
  }

  .demo-main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "details"
      "route";
  }

  .demo-details {
    grid-column: auto;
  }

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

}

@media (max-width: 820px) {
  .container,
  .nav-shell {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    padding-inline: 0;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand-link img {
    width: 150px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #171a2c;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .language-switcher {
    justify-content: center;
    margin: 2px 0;
  }

  .hero-section {
    min-height: auto;
    display: block;
    padding: 72px 0 48px;
  }

  .hero-content {
    width: calc(100vw - 28px);
    max-width: none;
    margin-inline: auto;
  }

  .hero-copy {
    width: 100%;
    max-width: 340px;
    font-size: 1rem;
  }

  .hero-grid::before {
    background:
      linear-gradient(180deg, rgba(16, 18, 34, 0.98) 0%, rgba(16, 18, 34, 0.8) 100%),
      radial-gradient(circle at 72% 18%, rgba(0, 174, 255, 0.18), transparent 36%),
      radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.06), transparent 30%);
  }

  .hero-radar {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 620px);
    max-width: calc(100vw - 28px);
    margin: 32px auto 0;
    opacity: 1;
    transform: none;
  }

  .radar-visual {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .radar-scope {
    width: min(100%, 430px);
    justify-self: center;
  }

  .radar-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  h1 {
    font-size: clamp(2.6rem, 11vw, 3.45rem);
    line-height: 0.98;
  }

  .hero-content h1 {
    max-width: min(620px, 100%);
  }

  .split-section,
  .split-section.reverse,
  .blackice-shell,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .faq-shell,
  .blackice-credentials-panel,
  .defense-credentials,
  .blackice-facts {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-actions .button {
    width: 100%;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  .hero-radar {
    width: min(calc(100vw - 28px), 320px);
    max-width: calc(100vw - 28px);
    gap: 12px;
    margin-top: 24px;
  }

  .radar-heading {
    gap: 8px;
    max-width: 280px;
    margin-inline: auto;
  }

  .radar-heading strong {
    max-width: 100%;
    font-size: 1.02rem;
  }

  .radar-visual {
    gap: 14px;
  }

  .radar-visual::before {
    inset: -18px -16px;
  }

  .radar-scope {
    width: min(100%, 320px);
    background-size: 100% 100%, 34px 34px, 34px 34px;
  }

  .radar-center {
    width: 96px;
    min-height: 50px;
  }

  .risk-node {
    --dot-center-offset-x: 5px;
    --dot-center-offset-y: 11px;
    min-width: 68px;
    max-width: 78px;
    font-size: 0.6rem;
    padding-left: 17px;
  }

  .risk-node-dot {
    width: 10px;
    height: 10px;
    border-width: 2px;
    top: 6px;
  }

  .risk-node b {
    font-size: 0.6rem;
  }

  .risk-node small {
    font-size: 0.58rem;
  }

  .radar-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .radar-metrics div {
    padding-top: 10px;
  }

  .radar-metrics span {
    display: block;
  }

  .section-copy p:not(.eyebrow),
  .section-heading p,
  .dashboard-copy p,
  .dashboard-points span,
  .workflow-title,
  .workflow-step p,
  .tool-cluster-heading h3,
  .tool-entry p,
  .vortex-copy p,
  .vortex-capabilities p,
  .demo-copy p,
  .faq-list p,
  .service-stack p,
  .contact-copy p {
    max-width: min(320px, 100%);
    overflow-wrap: break-word;
  }

  .section-copy h2,
  .section-heading h2 {
    max-width: min(320px, 100%);
    overflow-wrap: break-word;
  }

  .section-copy h2 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
    line-height: 1.08;
  }

  .section-demo {
    min-height: 0;
    padding: 64px 0;
  }

  .demo-copy h2 {
    max-width: min(340px, 100%);
    font-size: clamp(2.05rem, 11vw, 2.7rem);
    letter-spacing: -0.032em;
    line-height: 1;
  }

  .demo-tools {
    max-width: min(340px, 100%);
    gap: 6px;
  }

  .demo-tools li {
    font-size: 0.72rem;
    padding: 6px 7px;
  }

  .demo-details {
    gap: 16px;
    padding: 16px;
  }

  .demo-facts {
    gap: 0;
  }

  .demo-facts div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 13px 0;
  }

  .demo-facts dt {
    font-size: 0.62rem;
  }

  .demo-facts dd {
    font-size: 0.95rem;
  }

  .demo-actions .button {
    width: 100%;
  }

  .demo-route {
    gap: 12px;
    padding-top: 0;
  }

  .demo-route h3 {
    max-width: min(340px, 100%);
    font-size: 1.25rem;
  }

  .demo-route ol {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .demo-route li {
    padding: 14px;
  }

  .demo-route li p {
    font-size: 0.9rem;
  }

  .hero-copy,
  .hero-actions {
    max-width: 320px;
  }

  .dashboard-showcase {
    gap: 30px;
  }

  .dashboard-points li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .dashboard-points svg {
    width: 38px;
    height: 38px;
    padding: 9px;
  }

  .workflow-step,
  .service-stack article,
  .contact-form {
    padding: 20px;
  }

  .tool-menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-right: 0;
    overflow-x: visible;
    padding: 0;
  }

  .tool-menu-item {
    padding: 13px;
  }

  .section-vortex {
    min-height: 0;
    padding: 46px 0;
  }

  .vortex-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vortex-lead {
    align-items: start;
  }

  .vortex-copy h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .vortex-capabilities {
    gap: 12px;
  }

  .vortex-capabilities ul {
    max-width: none;
  }

  .vortex-capabilities li {
    white-space: normal;
  }

  .tool-cluster-heading {
    display: grid;
    justify-content: start;
  }

  .tool-cluster-heading span {
    order: 0;
  }

  #capacidades .tool-entry {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 15px;
  }

  #capacidades .tool-entry dd {
    grid-template-columns: 1fr;
  }

  #capacidades .tool-entry ul {
    justify-content: flex-start;
    max-width: none;
    margin-top: 2px;
  }

  #capacidades .tool-entry li {
    white-space: normal;
  }

  .workflow-step {
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 14px;
  }

  .workflow-icon {
    width: 38px;
    height: 38px;
  }

  .workflow-icon svg {
    width: 20px;
    height: 20px;
  }

  .faq-list details {
    max-width: 100%;
    overflow: hidden;
  }

}

html.reveal-ready [data-reveal] {
  opacity: 1;
  transform: translateY(10px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

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

  html.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

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