:root {
  color-scheme: dark;
  --bg: #0c0d15;
  --surface: #11121d;
  --panel: #171824;
  --line: #ffffff12;
  --fg: #f4f3fa;
  --muted: #9a9baa;
  --violet: #a995ff;
  --violet-bright: #8464f4;
  --font: "DM Sans", sans-serif;
  --heading: "Space Grotesk", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 5px;
}
button {
  color: inherit;
}
::selection {
  background: #7760cc;
  color: white;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button {
  border: 0;
}
svg {
  flex: none;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  background: var(--violet);
  color: var(--bg);
  z-index: 100;
  padding: 10px;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #0c0d15ed;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: 1320px;
  margin: auto;
  padding: 21px 40px;
  display: flex;
  align-items: center;
  gap: 35px;
}
.brand {
  font-family: var(--heading);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1;
}
.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: none;
}
.brand-period {
  color: var(--violet);
  margin-left: -7px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
  font-size: 14px;
  color: #c2c1cd;
}
.main-nav a:hover,
.text-button:hover {
  color: var(--violet);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 21px;
}
.text-button {
  background: none;
  padding: 7px 0;
  font-size: 14px;
  white-space: nowrap;
}
.text-button span {
  padding-left: 7px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid #b8a5ff30;
  border-radius: 6px;
  background: linear-gradient(135deg, #ac92ff, #9271ec);
  color: #111019;
  font-size: 15px;
  font-weight: 650;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px #9574ff25;
}
.button span {
  font-size: 20px;
}
.button-small {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 13px;
  gap: 15px;
}
.button-secondary {
  color: #e0ddea;
  background: #ffffff05;
  border-color: #ffffff1a;
  box-shadow: none;
}
.button-secondary:hover {
  background: #ffffff0c;
}
.menu-toggle {
  display: none;
  background: none;
  padding: 7px;
}
.menu-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  background: var(--fg);
  margin: 7px 0;
}
.mobile-menu {
  padding: 10px 24px 24px;
}
.mobile-menu a,
.mobile-menu button {
  display: block;
  background: none;
  padding: 12px 0;
  color: var(--fg);
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero-ambient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 950px;
  background: radial-gradient(
    ellipse 50% 40% at 50% 67%,
    #6444b824,
    transparent 80%
  );
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  opacity: 0.14;
  background-image:
    linear-gradient(#aaa0d51c 1px, transparent 1px),
    linear-gradient(90deg, #aaa0d51c 1px, transparent 1px);
  background-size: 65px 65px;
  mask-image: radial-gradient(ellipse at center, black, transparent 68%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  text-align: center;
  padding: 75px 24px 49px;
}
.eyebrow-pill {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  border: 1px solid #a28bcc30;
  background: #9c82ff06;
  padding: 5px 13px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #c1b5e4;
}
.pill-icon {
  font-size: 20px;
  line-height: 1;
  color: var(--violet);
}
.hero h1 {
  font-family: var(--heading);
  font-size: clamp(35px, 4.25vw, 62px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -2.3px;
  margin: 29px 0 20px;
}
.hero h1 > span {
  color: #b2a1e3;
}
.hero-copy > p {
  color: #a7a4b6;
  line-height: 1.8;
  font-size: 17px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #898597;
  font-size: 12px;
  margin-top: 22px;
}
.hero-note i {
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background: #746a8c;
}
.hero-product {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  border: 1px solid #a599d431;
  border-radius: 11px;
  background: #10111be8;
  box-shadow:
    0 0 0 7px #9d80ff04,
    0 0 100px #6c41c610;
  overflow: hidden;
}
.product-topbar {
  height: 40px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7d788f;
  font-size: 11px;
  background: #161622;
  border-bottom: 1px solid var(--line);
}
.window-dots {
  display: flex;
  gap: 5px;
}
.window-dots i {
  width: 6px;
  height: 6px;
  background: #4e465e;
  border-radius: 100%;
}
.demo-label {
  font-size: 9px;
  letter-spacing: 1px;
  color: #9990ad;
}
.product-body {
  display: flex;
  min-height: 367px;
}
.product-sidebar {
  width: 193px;
  flex: none;
  border-right: 1px solid var(--line);
  padding: 20px 12px;
  position: relative;
}
.mini-brand {
  font: 600 17px var(--heading);
  padding: 0 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.mini-brand img {
  width: 21px;
  height: 21px;
  object-fit: contain;
  flex: none;
}
.workspace-name {
  padding: 7px 8px;
  background: #ffffff05;
  font-size: 9px;
  color: #b0a8bc;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 23px;
}
.workspace-name span {
  float: right;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  padding: 9px 10px;
  margin: 4px 0;
  color: #9f96b1;
}
.sidebar-link.selected {
  color: #c3afff;
  background: #a384fc14;
  border-radius: 4px;
}
.sidebar-bottom {
  font-size: 8px;
  color: #716c80;
  position: absolute;
  bottom: 18px;
  left: 22px;
  letter-spacing: 1px;
}
.sidebar-bottom span {
  color: #b9b2c5;
  font-size: 10px;
  letter-spacing: 0;
}
.product-content {
  padding: 25px;
  flex: 1;
  min-width: 0;
}
.product-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.tiny-overline {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #878093;
  margin-bottom: 3px;
}
.product-heading h2 {
  font: 500 22px var(--heading);
  letter-spacing: -0.4px;
}
.snapshot-tag {
  font-size: 9px;
  color: #b5aac6;
  background: #ffffff05;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 5px 9px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.metric {
  background: #ffffff02;
  border: 1px solid #ffffff0d;
  border-radius: 6px;
  padding: 13px 15px;
}
.metric > div:first-child {
  font-size: 10px;
  color: #aca5ba;
  display: flex;
  justify-content: space-between;
}
.metric strong {
  display: block;
  font: 500 32px var(--heading);
  margin-top: 4px;
}
.metric strong > span {
  font-size: 17px;
  color: #827b92;
}
.metric small {
  font-size: 9px;
  color: #7b738d;
}
.meter {
  height: 3px;
  background: #ffffff08;
  margin: 6px 0;
}
.meter i {
  display: block;
  background: #ae95f0;
  height: 100%;
  border-radius: 3px;
}
.product-panels {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 12px;
  margin-top: 15px;
}
.sources-panel,
.action-panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 15px;
}
.panel-title {
  font-size: 11px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.panel-title > span {
  font-size: 8px;
  color: #8a7f9d;
}
.source-row {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 8px 0;
  font-size: 10px;
}
.source-row > span:nth-child(2) {
  flex: 1;
}
.source-row small {
  display: block;
  font-size: 8px;
  color: #7f758f;
}
.source-glyph {
  height: 26px;
  width: 26px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  font-size: 15px;
}
.violet {
  color: #b89bff;
  background: #aa83ff11;
}
.blue {
  color: #7f9ee0;
  background: #83aaff11;
}
.amber {
  color: #cfa66a;
  background: #caab8311;
}
.source-track {
  width: 50px;
  height: 3px;
  background: #ffffff0b;
}
.source-track i {
  height: 100%;
  display: block;
  background: #9680cd;
}
.source-row b {
  font-size: 10px;
  font-weight: 400;
  width: 28px;
  color: #baadc9;
}
.action-panel {
  position: relative;
  background: linear-gradient(125deg, #9070dd09, #9070dd00);
}
.action-symbol {
  color: var(--violet);
  font-size: 21px;
  line-height: 1;
}
.action-panel h3 {
  font-size: 12px;
  font-weight: 500;
  margin: 5px 0;
}
.action-panel p {
  font-size: 10px;
  color: #93879f;
  line-height: 1.6;
}
.code-mapping {
  display: inline-block;
  background: #b39bd10b;
  color: #c6b1da;
  font-family: monospace;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 7px;
}
.code-mapping b {
  padding: 0 10px;
  color: #9172c8;
}
.action-panel a {
  display: block;
  color: #b59bcf;
  font-size: 9px;
  margin-top: 8px;
}
.action-panel a span {
  float: right;
}
.ecosystem {
  position: relative;
  text-align: center;
  padding: 49px 24px 54px;
  max-width: 1060px;
  margin: auto;
}
.ecosystem > span {
  color: #767083;
  font-size: 10px;
  letter-spacing: 2px;
}
.ecosystem > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  color: #bcb8c7;
}
.ecosystem b {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 500;
}
.ecosystem .splunk-word {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1.5px;
}
.splunk-word span {
  font-size: 38px;
}
.registered {
  font-size: 10px;
  vertical-align: super;
}
.ecosystem .sigma-word {
  font-size: 31px;
}
.sigma-word > span {
  font-size: 23px;
}
.ecosystem p {
  font-size: 10px;
  margin-top: 16px;
  color: #625b71;
}
.mobile-only {
  display: none;
}
@media (min-width: 1600px) {
  .hero-copy {
    padding-top: 94px;
  }
}
@media (max-width: 1150px) {
  .nav-wrap {
    padding: 20px 25px;
    gap: 22px;
  }
  .main-nav {
    gap: 18px;
  }
  .nav-actions {
    gap: 15px;
  }
  .main-nav a {
    font-size: 13px;
  }
  .hero-product {
    margin-inline: 35px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .nav-actions .button-small {
    display: none;
  }
}
@media (max-width: 760px) {
  .nav-wrap {
    padding: 19px 20px;
    justify-content: space-between;
  }
  .brand {
    font-size: 23px;
  }
  .brand-logo {
    width: 31px;
    height: 31px;
  }
  .main-nav,
  .nav-actions {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .hero-copy {
    padding: 52px 20px 38px;
  }
  .eyebrow-pill {
    font-size: 9px;
    letter-spacing: 1px;
    padding: 5px 10px;
    gap: 8px;
  }
  .hero h1 {
    font-size: 38px;
    letter-spacing: -1.4px;
    line-height: 1.15;
    margin: 25px 0 20px;
  }
  .mobile-only {
    display: block;
  }
  .desktop-only {
    display: none;
  }
  .hero-copy > p {
    font-size: 15px;
    max-width: 420px;
    margin: auto;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 25px;
  }
  .hero-actions .button {
    font-size: 13px;
    padding: 10px 14px;
    gap: 9px;
    min-height: 45px;
  }
  .hero-note {
    font-size: 10px;
    flex-wrap: wrap;
    gap: 7px 10px;
    margin-top: 17px;
  }
  .hero-note span:last-child,
  .hero-note i:last-of-type {
    display: none;
  }
  .hero-product {
    margin: 0 16px;
    border-radius: 7px;
  }
  .product-topbar {
    font-size: 9px;
    padding: 0 10px;
    height: 30px;
  }
  .demo-label {
    font-size: 7px;
    letter-spacing: 0;
  }
  .product-sidebar {
    display: none;
  }
  .product-content {
    padding: 16px 12px;
  }
  .product-heading {
    margin-bottom: 13px;
  }
  .product-heading h2 {
    font-size: 19px;
  }
  .tiny-overline {
    font-size: 7px;
  }
  .snapshot-tag {
    display: none;
  }
  .metric-grid {
    gap: 7px;
  }
  .metric {
    padding: 10px 8px;
  }
  .metric > div:first-child {
    font-size: 8px;
    min-height: 24px;
    line-height: 1.5;
  }
  .metric strong {
    font-size: 25px;
  }
  .metric strong > span {
    font-size: 13px;
  }
  .metric small {
    font-size: 8px;
    line-height: 1.5;
    display: block;
  }
  .metric > div:first-child > span {
    display: none;
  }
  .product-panels {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
  }
  .product-body {
    min-height: 0;
  }
  .sources-panel {
    padding: 12px;
  }
  .action-panel {
    display: none;
  }
  .source-row {
    padding: 8px 0;
    font-size: 10px;
  }
  .source-track {
    width: 75px;
  }
  .ecosystem {
    padding: 34px 20px;
  }
  .ecosystem > span {
    font-size: 8px;
    letter-spacing: 1.3px;
  }
  .ecosystem > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ecosystem b {
    font-size: 15px;
  }
  .ecosystem .splunk-word {
    font-size: 25px;
  }
  .ecosystem .sigma-word {
    font-size: 25px;
  }
  .sigma-word > span {
    font-size: 19px;
  }
  .ecosystem p {
    font-size: 9px;
  }
  .hero-grid {
    background-size: 45px 45px;
  }
}
.hero-ambient {
  background-image:
    linear-gradient(180deg, #0c0d1555, #0c0d1540 65%, #0c0d15),
    url("/vitrine/assets/cimnox-data-field.png");
  background-size: cover;
  background-position: center top;
  opacity: 0.85;
}
.hero-grid {
  opacity: 0.06;
}
.section {
  padding: 100px 36px;
  border-top: 1px solid var(--line);
}
.section-inner {
  max-width: 1120px;
  margin: auto;
}
.overline {
  display: block;
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 2px;
  color: var(--violet);
  margin-bottom: 17px;
}
.section-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 47px;
}
.section h2,
.closing-section h2 {
  font-family: var(--heading);
  font-weight: 500;
  font-size: clamp(31px, 3.3vw, 46px);
  line-height: 1.2;
  letter-spacing: -1.8px;
}
.section h2 span,
.closing-section h2 span {
  color: #9b94af;
}
.section-intro > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 21px;
}
.problem-section {
  padding-block: 89px;
  background: linear-gradient(180deg, #10111a80, transparent);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 52px;
}
.problem-grid article {
  padding: 0 7px;
}
.line-icon {
  display: grid;
  place-items: center;
  height: 43px;
  width: 43px;
  border: 1px solid #ab90f232;
  border-radius: 8px;
  color: #b19ce5;
  font-size: 24px;
  background: #9978e708;
  margin-bottom: 24px;
}
.problem-grid h3 {
  font: 500 20px var(--heading);
  letter-spacing: -0.5px;
  margin-bottom: 13px;
}
.problem-grid p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
.problem-grid a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: #c4b5e6;
  font-size: 14px;
  margin-top: 24px;
}
.problem-grid a:hover {
  color: var(--violet);
}
.platform-section {
  background: radial-gradient(ellipse at 50% 80%, #33224520, transparent 60%);
}
.feature-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff15;
  gap: 8px;
  overflow-x: auto;
}
.feature-tabs button {
  background: none;
  color: #a49cac;
  font-size: 14px;
  padding: 15px 14px 17px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.feature-tabs button[aria-selected="true"] {
  color: #d3c4fa;
  border-color: #b093fd;
}
.feature-tabs button:hover {
  color: #ddd3eb;
}
.feature-panel {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  align-items: center;
  gap: 52px;
  padding: 43px 4px 5px;
  min-height: 365px;
}
.feature-number {
  font: 400 12px var(--heading);
  letter-spacing: 2px;
  color: #89808f;
}
.feature-copy h3 {
  font-family: var(--heading);
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 14px 0 17px;
}
.feature-copy > p {
  font-size: 15px;
  color: #9c96a8;
  line-height: 1.8;
}
.feature-copy ul,
.check-list,
.service-grid ul {
  list-style: none;
  margin: 19px 0 25px;
  padding: 0;
}
.feature-copy li,
.check-list li {
  position: relative;
  font-size: 14px;
  color: #b9b2c5;
  margin: 9px 0;
  padding-left: 25px;
}
.feature-copy li:before,
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #b198ea;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: none;
  padding: 0;
  color: #c5b3eb;
  font-size: 14px;
}
.text-link:hover {
  color: #e2d8fb;
}
.feature-preview {
  position: relative;
  min-height: 296px;
  background: linear-gradient(120deg, #1c1929, #13131f);
  border: 1px solid #b6a0e625;
  box-shadow: 0 25px 60px #00000024;
  border-radius: 10px;
  padding: 23px 25px;
  overflow: hidden;
}
.preview-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  letter-spacing: 1px;
  color: #a092b8;
  padding-bottom: 14px;
  border-bottom: 1px solid #b6a0e612;
}
.preview-label > span:last-child {
  letter-spacing: 0;
  color: #84768f;
  font-size: 10px;
}
.score-visual {
  display: flex;
  gap: 27px;
  align-items: center;
  padding: 27px 0;
}
.score-ring {
  flex: none;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: conic-gradient(from -90deg, #b59cf4 0% 78%, #b59cf414 78% 100%);
  display: grid;
  place-items: center;
  position: relative;
}
.score-ring:before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #1b1728;
}
.score-ring strong {
  position: relative;
  font: 500 34px var(--heading);
}
.score-ring strong span {
  font-size: 18px;
  color: #a695be;
}
.preview-chip {
  font-size: 10px;
  padding: 4px 7px;
  background: #b599f111;
  border: 1px solid #b599f119;
  border-radius: 4px;
  color: #bfa8e7;
}
.score-visual h4 {
  font: 500 17px/1.4 var(--heading);
  margin: 11px 0 8px;
}
.score-visual p {
  font-size: 11px;
  line-height: 1.7;
  color: #9788a9;
}
.mini-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid #a68fc322;
  padding-top: 15px;
}
.mini-stat-row > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mini-stat-row span {
  font-size: 10px;
  color: #93859f;
}
.mini-stat-row strong {
  font: 500 20px var(--heading);
}
.preview-footnote {
  font-size: 10px;
  color: #8a7d96;
  margin-top: 15px;
}
.platform-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 44px;
  color: #8d859a;
  font-size: 13px;
}
.platform-footnote strong {
  font-weight: 400;
  color: #b8acc9;
}
.small-star {
  font-size: 20px;
  color: #c3a9eb;
}
.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
.split-heading > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  padding-bottom: 4px;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.workflow-grid article {
  position: relative;
  padding-top: 5px;
}
.step-number {
  display: grid;
  place-items: center;
  height: 42px;
  width: 42px;
  background: #161320;
  border: 1px solid #a88cdd25;
  border-radius: 7px;
  font: 400 14px var(--heading);
  color: #b7a1d9;
  position: relative;
  z-index: 1;
}
.step-line {
  height: 1px;
  background: linear-gradient(90deg, #a58cc247, transparent);
  position: absolute;
  top: 26px;
  left: 42px;
  right: -30px;
}
.workflow-grid article:last-child .step-line {
  right: 0;
}
.workflow-grid h3 {
  font: 500 23px var(--heading);
  margin: 22px 0 12px;
  letter-spacing: -0.5px;
}
.workflow-grid p {
  font-size: 14px;
  line-height: 1.9;
  color: #948d9e;
}
.step-caption {
  display: block;
  font-size: 12px;
  color: #bbabd1;
  margin-top: 23px;
}
.integration-section {
  background: #101019;
}
.integration-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}
.integration-copy > p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 24px;
}
.integration-copy .check-list {
  margin: 23px 0 31px;
}
.integration-diagram {
  position: relative;
  background: radial-gradient(ellipse, #62418b20, transparent 70%);
  padding: 15px 25px;
  text-align: center;
}
.diagram-heading {
  font-size: 10px;
  letter-spacing: 2px;
  color: #8f7ba5;
  margin-bottom: 16px;
}
.integration-node {
  position: relative;
  padding: 17px 15px;
  border: 1px solid #a180ce39;
  background: #13121ee0;
  border-radius: 9px;
  max-width: 310px;
  margin: auto;
}
.integration-node .splunk-word {
  font: 600 31px var(--heading);
  letter-spacing: -1.5px;
}
.integration-node small {
  display: block;
  font-size: 12px;
  color: #96879f;
  margin-top: 3px;
}
.cimnox-node {
  padding: 23px 15px;
  border-color: #b693ed70;
  background: linear-gradient(120deg, #231d34, #191526);
  box-shadow: 0 0 45px #a081d20c;
}
.cimnox-node .mini-brand {
  font-size: 26px;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.cimnox-node .mini-brand img {
  width: 31px;
  height: 31px;
}
.connection-line {
  height: 58px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.connection-line:before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(#8965bd55, #bd8aff);
}
.connection-line > span {
  position: relative;
  font-size: 10px;
  padding: 3px 9px;
  background: #11111b;
  border: 1px solid #9876b421;
  border-radius: 3px;
  color: #a28db6;
}
.connection-line.short {
  height: 47px;
}
.team-node {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #c7b8d9;
  font-size: 14px;
}
.team-node > span {
  font-size: 27px;
  color: #baa0df;
}
.integration-diagram > p {
  font-size: 11px;
  color: #85758e;
  line-height: 1.7;
  max-width: 300px;
  margin: 18px auto 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}
.service-grid article {
  display: flex;
  flex-direction: column;
  border: 1px solid #ab8bd31c;
  background: linear-gradient(135deg, #211b2c33, #12101b55);
  padding: 28px 27px 23px;
  border-radius: 8px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.service-grid article:hover {
  border-color: #aa86dc55;
  transform: translateY(-3px);
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}
.service-index {
  font: 400 12px var(--heading);
  color: #82708e;
  letter-spacing: 1px;
}
.service-icon {
  color: #b6a0d4;
  font-size: 29px;
  line-height: 1;
}
.service-grid h3 {
  font: 500 21px var(--heading);
  line-height: 1.35;
  letter-spacing: -0.7px;
  margin-bottom: 15px;
}
.service-grid p {
  font-size: 14px;
  color: #9a8fa3;
  line-height: 1.85;
}
.service-grid ul {
  font-size: 12px;
  color: #b3a5bd;
  line-height: 1.9;
  margin-bottom: 26px;
}
.service-grid li {
  padding-left: 13px;
  position: relative;
  margin-bottom: 5px;
}
.service-grid li:before {
  content: "—";
  position: absolute;
  left: 0;
  color: #756381;
}
.service-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border-top: 1px solid #9d80b222;
  padding: 19px 0 0;
  margin-top: auto;
  width: 100%;
  font-size: 13px;
  color: #c6b0df;
  text-align: left;
}
.service-link:hover {
  color: #e5ccff;
}
.audience-section {
  padding-block: 83px;
  background: #0f0e17;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
}
.audience-grid article {
  padding: 0 0 0 25px;
  border-left: 1px solid #a180c333;
}
.audience-grid article > span {
  color: #a993bc;
  font-size: 10px;
  letter-spacing: 1.3px;
}
.audience-grid h3 {
  font: 500 24px/1.3 var(--heading);
  letter-spacing: -0.5px;
  margin: 16px 0 15px;
}
.audience-grid p {
  font-size: 14px;
  color: #908698;
  line-height: 1.85;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 57px;
}
.plan {
  border: 1px solid #a180c328;
  border-radius: 8px;
  padding: 30px 27px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #111019;
}
.plan-kicker {
  font-size: 10px;
  letter-spacing: 2px;
  color: #a28fad;
}
.plan h3 {
  font: 500 28px var(--heading);
  letter-spacing: -0.8px;
  margin: 12px 0;
}
.plan > p {
  font-size: 14px;
  color: #9b8ea6;
  line-height: 1.8;
  min-height: 76px;
}
.plan-price {
  font: 500 29px var(--heading);
  letter-spacing: -0.5px;
  margin: 21px 0 0;
  padding-bottom: 24px;
  border-bottom: 1px solid #a180c322;
}
.plan-price > span {
  display: block;
  font: 400 11px var(--font);
  color: #89788f;
  letter-spacing: 0;
  margin-top: 7px;
}
.plan .check-list {
  margin: 20px 0 27px;
}
.plan .check-list li {
  font-size: 12px;
  padding-left: 20px;
  margin: 12px 0;
}
.plan .button {
  margin-top: auto;
  width: 100%;
  padding: 12px 14px;
  gap: 10px;
  font-size: 13px;
}
.plan.featured {
  border-color: #af8feb77;
  background: linear-gradient(165deg, #29203466, #17101f55);
}
.plan-highlight {
  position: absolute;
  left: -1px;
  right: -1px;
  top: -22px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #af8feb77;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  background: #312340;
  color: #d2bced;
  font-size: 9px;
  letter-spacing: 1.4px;
}
.plans-note {
  font-size: 12px;
  color: #86758f;
  text-align: center;
  margin-top: 27px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 75px;
}
.faq-layout h2 {
  font-size: 38px;
}
.faq-layout > div:first-child > p {
  color: #94859f;
  line-height: 1.8;
  font-size: 15px;
  margin: 20px 0;
}
.faq-list details {
  border-bottom: 1px solid #a485c325;
}
.faq-list details:first-child {
  border-top: 1px solid #a485c325;
}
.faq-list summary {
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #c6bbd0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 24px;
  color: #a68bbc;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details > p {
  color: #9d8ca9;
  font-size: 14px;
  line-height: 1.85;
  padding: 0 25px 24px 0;
}
.closing-section {
  position: relative;
  padding: 96px 25px 92px;
  text-align: center;
  border-top: 1px solid #a180c325;
  overflow: hidden;
  background: #111019;
}
.closing-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 45% 120% at 50% 110%,
    #714cac25,
    transparent
  );
}
.closing-section > *:not(.closing-glow) {
  position: relative;
}
.closing-section .overline {
  font-size: 10px;
}
.closing-section h2 {
  font-size: 48px;
}
.closing-section h2 span {
  color: #bdabd0;
}
.closing-section p {
  color: #a496b0;
  margin-top: 20px;
  font-size: 16px;
}
.closing-section .button {
  margin-top: 28px;
}
.closing-section > a {
  display: block;
  width: fit-content;
  margin: 19px auto 0;
  color: #ac94bc;
  font-size: 13px;
}
.footer {
  border-top: 1px solid #a180c322;
  padding: 53px 36px 25px;
  background: #0b0a12;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 49px;
}
.footer-brand > p {
  color: #897892;
  font-size: 13px;
  line-height: 1.8;
  margin: 17px 0;
}
.footer-brand > a:last-child {
  font-size: 13px;
  color: #bba5cd;
}
.footer-main h3 {
  font-size: 13px;
  font-weight: 500;
  color: #c5b5d0;
  margin: 4px 0 18px;
}
.footer-main > div:not(:first-child) > a,
.footer-main > div:not(:first-child) > button {
  display: block;
  background: none;
  font-size: 12px;
  line-height: 1.6;
  color: #90809b;
  padding: 0;
  text-align: left;
  margin-bottom: 11px;
}
.footer-main a:hover,
.footer-main button:hover {
  color: #d5b8ed;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #a180c31a;
  padding-top: 23px;
  color: #786681;
  font-size: 11px;
}
.footer-bottom > div {
  display: flex;
  gap: 25px;
  align-items: center;
}
.footer-bottom button {
  font-size: 11px;
  background: none;
  color: #9780a4;
  padding: 0;
}
.modal {
  background: #15121f;
  color: #efebf8;
  border: 1px solid #af8ed947;
  border-radius: 13px;
  padding: 39px;
  width: calc(100% - 32px);
  max-width: 560px;
  max-height: 90dvh;
  box-shadow: 0 25px 100px #0009;
}
.modal::backdrop {
  background: #05040cce;
  backdrop-filter: blur(8px);
}
.modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  background: none;
  color: #a797b6;
  font-size: 27px;
  line-height: 1;
  padding: 6px 9px;
}
.modal h2 {
  font: 500 31px/1.25 var(--heading);
  letter-spacing: -1px;
  margin-bottom: 13px;
}
.modal .overline {
  font-size: 10px;
}
.modal-heading > p,
.access-modal > p {
  font-size: 14px;
  color: #a295af;
  line-height: 1.8;
}
.modal-heading {
  margin-bottom: 25px;
}
.modal label {
  display: block;
  font-size: 13px;
  margin-bottom: 16px;
  color: #c3b6ce;
}
.modal input,
.modal select,
.modal textarea {
  display: block;
  width: 100%;
  border: 1px solid #aa87d330;
  background: #0f0d18;
  color: #e0d5ed;
  border-radius: 5px;
  padding: 11px 12px;
  font-size: 14px;
  margin-top: 6px;
}
.modal input::placeholder,
.modal textarea::placeholder {
  color: #756480;
}
.modal textarea {
  resize: vertical;
  min-height: 85px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.optional {
  color: #877193;
  font-size: 11px;
}
.form-note {
  font-size: 11px;
  line-height: 1.7;
  color: #9a83a7;
  margin: 5px 0 18px;
}
.form-submit {
  width: 100%;
}
.ready-icon {
  display: grid;
  place-items: center;
  width: 51px;
  height: 51px;
  border: 1px solid #b79ae955;
  border-radius: 12px;
  color: #ccafea;
  background: #b087ea11;
  font-size: 23px;
  margin-bottom: 22px;
}
#contact-ready h3 {
  font: 500 26px var(--heading);
  margin-bottom: 14px;
}
#contact-ready > p {
  font-size: 14px;
  color: #ac94b8;
  line-height: 1.8;
  margin: 10px 0 22px;
}
#contact-ready .button {
  width: 100%;
  margin-bottom: 11px;
}
#contact-ready > .text-link {
  font-size: 13px;
}
#contact-ready .copy-status {
  font-size: 12px;
  margin: 2px 0 13px;
  min-height: 18px;
}
.access-modal > p {
  margin-bottom: 25px;
}
.access-status {
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid #b48ad42c;
  border-radius: 7px;
  padding: 17px;
  margin: 24px 0;
  background: #ae87d509;
}
.access-status > span {
  font-size: 31px;
  color: #c1a0db;
}
.access-status strong {
  font-size: 14px;
  font-weight: 500;
}
.access-status p {
  font-size: 12px;
  color: #a38bae;
  margin-top: 3px;
}
.access-modal > .button {
  width: 100%;
  margin: 7px 0;
}
.access-modal > .text-link {
  margin-top: 15px;
}
.access-modal [hidden] {
  display: none;
}
.legal-modal p {
  font-size: 14px;
  line-height: 1.9;
  color: #b39abf;
  margin: 18px 0;
}
.legal-modal h3 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 25px;
}
.legal-modal a {
  text-decoration: underline;
  color: #caa6ed;
}
.modal-open {
  overflow: hidden;
}
.noscript-message {
  padding: 20px;
  text-align: center;
  color: #c0b0d7;
}
.noscript-message a {
  text-decoration: underline;
}
/* Module previews */
.data-preview-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 15px;
}
.data-preview-heading h4 {
  font: 500 18px var(--heading);
  margin: 0;
}
.data-preview-heading > span {
  font-size: 10px;
  color: #b198c9;
  background: #b49fe510;
  padding: 4px 8px;
  border-radius: 4px;
}
.data-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 9px;
  align-items: center;
  font-size: 11px;
  padding: 12px 0;
  border-bottom: 1px solid #a98abe12;
}
.data-row > code {
  font: 11px monospace;
  color: #c0a9d8;
}
.data-row > span {
  color: #a293b1;
}
.data-row > small {
  font-size: 10px;
  color: #a8c3a7;
}
.data-row.head {
  font-size: 9px;
  letter-spacing: 0.6px;
  color: #8b7899;
  padding: 5px 0 9px;
}
.mapping-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #b395d108;
  border: 1px solid #b395d121;
  padding: 21px 17px;
  border-radius: 7px;
  margin: 22px 0 17px;
}
.mapping-preview > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.mapping-preview small {
  font-size: 9px;
  color: #9f86b3;
  letter-spacing: 1px;
}
.mapping-preview code {
  font-size: 18px;
  color: #dfc7f4;
}
.mapping-preview > span {
  color: #a68bc4;
  font-size: 25px;
}
.evidence-row {
  font-size: 11px;
  color: #b09ac2;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 10px 0;
}
.evidence-row > span {
  color: #c9a6f0;
}
.spl-preview {
  margin: 16px 0;
  background: #0e0b16;
  border: 1px solid #a485c322;
  border-radius: 6px;
  padding: 15px;
  font-size: 11px;
  line-height: 1.9;
  color: #b4a4bf;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.spl-preview .code-key {
  color: #cba4f4;
}
.spl-preview .code-string {
  color: #a1c5b8;
}
.review-steps {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  color: #9d8bab;
  margin-top: 15px;
  flex-wrap: wrap;
}
.review-steps .status-compatible {
  background: #89ae9020;
  color: #a1c3a5;
  border: 1px solid #89ae9022;
  border-radius: 4px;
  padding: 3px 7px;
}
.mitre-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin: 20px 0 15px;
}
.mitre-cell {
  border-radius: 4px;
  min-height: 55px;
  background: #35344035;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 9px;
  font-size: 10px;
  color: #bfaecb;
}
.mitre-cell small {
  font-size: 8px;
}
.mitre-cell.active {
  background: #416d492d;
  color: #b6c7a8;
}
.mitre-cell.proposed {
  background: #50669a34;
  color: #b2bddf;
}
.mitre-cell.empty {
  background: #8e46502d;
  color: #ca9aa0;
}
.mitre-legend {
  display: flex;
  gap: 13px;
  font-size: 9px;
  color: #a696b0;
  flex-wrap: wrap;
}
.mitre-legend > span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.mitre-legend i {
  height: 6px;
  width: 6px;
  border-radius: 2px;
  background: #6f9178;
}
.mitre-legend > span:nth-child(2) > i {
  background: #6888c1;
}
.mitre-legend > span:nth-child(3) > i {
  background: #a16972;
}
.vulnerability-flow {
  display: flex;
  align-items: center;
  gap: 9px;
  justify-content: space-between;
  margin: 26px 0;
}
.vulnerability-flow > div {
  flex: 1;
  min-height: 68px;
  padding: 12px 8px;
  border: 1px solid #b691d332;
  border-radius: 5px;
  background: #bca0de08;
  text-align: center;
  color: #c7afd9;
  font-size: 11px;
}
.vulnerability-flow small {
  font-size: 9px;
  display: block;
  color: #8f799e;
  margin-top: 5px;
}
.vulnerability-flow > span {
  color: #8e709e;
}
.qualify-note {
  border-left: 2px solid #a480c6;
  padding: 10px 13px;
  background: #b18ac80a;
  font-size: 12px;
  color: #b8a0c6;
  line-height: 1.8;
}
@media (max-width: 1000px) {
  .feature-panel {
    gap: 30px;
    grid-template-columns: 1fr 1.12fr;
  }
  .feature-tabs button {
    font-size: 12px;
    padding-inline: 10px;
  }
  .score-visual {
    gap: 15px;
  }
  .score-ring {
    width: 90px;
    height: 90px;
  }
  .score-ring strong {
    font-size: 29px;
  }
  .score-visual h4 {
    font-size: 15px;
  }
  .score-visual p {
    font-size: 10px;
  }
  .integration-layout {
    gap: 45px;
  }
  .plan,
  .service-grid article {
    padding-inline: 21px;
  }
  .footer-main {
    gap: 24px;
  }
  .faq-layout {
    gap: 45px;
  }
  .section {
    padding-inline: 28px;
  }
  .split-heading > p {
    font-size: 14px;
  }
}
@media (max-width: 760px) {
  .section {
    padding: 65px 22px;
  }
  .overline {
    font-size: 9px;
    letter-spacing: 1.6px;
    margin-bottom: 16px;
  }
  .section h2 {
    font-size: 32px;
    letter-spacing: -1.2px;
  }
  .section-intro {
    margin-bottom: 35px;
  }
  .section-intro > p {
    font-size: 15px;
    margin-top: 17px;
  }
  .section-intro > p br {
    display: none;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 35px;
  }
  .problem-grid article {
    padding: 0 0 29px;
    border-bottom: 1px solid var(--line);
  }
  .problem-grid article:last-child {
    border: 0;
    padding-bottom: 0;
  }
  .line-icon {
    margin-bottom: 15px;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
  .problem-grid h3 {
    font-size: 21px;
  }
  .problem-grid p {
    font-size: 15px;
  }
  .problem-grid a {
    margin-top: 15px;
  }
  .feature-tabs {
    justify-content: flex-start;
    gap: 2px;
    padding-bottom: 0;
  }
  .feature-tabs button {
    font-size: 13px;
    padding: 12px 13px;
  }
  .feature-panel {
    grid-template-columns: 1fr;
    gap: 29px;
    padding: 30px 0 0;
    min-height: 0;
  }
  .feature-copy h3 {
    font-size: 27px;
  }
  .feature-copy > p {
    font-size: 15px;
  }
  .feature-copy ul {
    margin-bottom: 19px;
  }
  .feature-preview {
    padding: 20px 17px;
    min-height: 285px;
  }
  .score-visual {
    gap: 24px;
  }
  .score-ring {
    width: 99px;
    height: 99px;
  }
  .score-visual h4 {
    font-size: 16px;
  }
  .score-visual p {
    font-size: 11px;
  }
  .mini-stat-row strong {
    font-size: 21px;
  }
  .platform-footnote {
    text-align: center;
    align-items: flex-start;
    font-size: 12px;
    padding-top: 25px;
    gap: 10px;
  }
  .platform-footnote strong {
    display: block;
  }
  .split-heading {
    display: block;
    margin-bottom: 34px;
  }
  .split-heading > p {
    margin-top: 20px;
    font-size: 15px;
  }
  .split-heading > p br {
    display: none;
  }
  .workflow-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }
  .workflow-grid h3 {
    font-size: 23px;
    margin-top: 17px;
  }
  .workflow-grid p {
    font-size: 14px;
  }
  .step-caption {
    font-size: 11px;
    margin-top: 15px;
  }
  .workflow-grid article:nth-child(2) .step-line {
    right: 0;
  }
  .integration-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .integration-copy > p {
    font-size: 15px;
  }
  .integration-diagram {
    padding: 15px 10px;
  }
  .service-grid,
  .audience-grid,
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-grid article {
    padding: 25px;
  }
  .service-top {
    margin-bottom: 20px;
  }
  .service-grid h3 {
    font-size: 23px;
  }
  .service-grid p {
    font-size: 15px;
  }
  .service-grid ul {
    font-size: 14px;
  }
  .service-link {
    font-size: 14px;
  }
  .audience-grid {
    gap: 28px;
  }
  .audience-grid article {
    padding-left: 21px;
  }
  .audience-grid p {
    font-size: 15px;
  }
  .audience-grid h3 {
    font-size: 25px;
  }
  .plan-grid {
    gap: 33px;
    margin-top: 39px;
  }
  .plan {
    padding: 28px;
  }
  .plan > p {
    min-height: 0;
    font-size: 15px;
  }
  .plan-price > span {
    font-size: 12px;
  }
  .plan .check-list li {
    font-size: 14px;
  }
  .plan .button {
    font-size: 14px;
  }
  .plan.featured {
    margin-top: 12px;
  }
  .plans-note {
    font-size: 12px;
    line-height: 1.7;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .faq-layout > div:first-child > p br {
    display: none;
  }
  .faq-list summary {
    font-size: 14px;
    padding: 19px 0;
  }
  .faq-list details > p {
    font-size: 14px;
  }
  .closing-section {
    padding: 70px 23px;
  }
  .closing-section h2 {
    font-size: 37px;
    letter-spacing: -1.4px;
  }
  .closing-section p {
    font-size: 15px;
  }
  .closing-section .overline {
    font-size: 9px;
  }
  .footer {
    padding: 40px 22px 23px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 31px 25px;
    padding-bottom: 31px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-main > div:not(:first-child) > a,
  .footer-main > div:not(:first-child) > button {
    font-size: 13px;
  }
  .footer-main h3 {
    font-size: 14px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.6;
  }
  .footer-bottom > div {
    gap: 18px;
    flex-wrap: wrap;
  }
  .modal {
    padding: 32px 23px;
    max-height: 92dvh;
  }
  .modal h2 {
    font-size: 28px;
  }
  .modal .overline {
    font-size: 9px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .modal input,
  .modal select,
  .modal textarea {
    font-size: 16px;
  }
  .form-note {
    font-size: 12px;
  }
  .access-status {
    padding: 14px;
    gap: 12px;
  }
  .access-status p {
    font-size: 12px;
  }
  .mitre-preview-grid {
    gap: 5px;
  }
  .mitre-cell {
    font-size: 9px;
    padding: 7px;
  }
  .preview-label {
    font-size: 8px;
  }
  .vulnerability-flow {
    gap: 5px;
  }
  .vulnerability-flow > div {
    font-size: 10px;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 33px;
  }
  .hero-actions {
    flex-direction: column;
    max-width: 230px;
    margin-inline: auto;
  }
  .hero-note {
    font-size: 9px;
  }
  .score-visual {
    gap: 15px;
  }
  .score-ring {
    width: 85px;
    height: 85px;
  }
  .section h2 {
    font-size: 29px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .step-line {
    right: 0 !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
.access-form { display: grid; gap: 16px; margin: 25px 0 20px; }
.access-form label { display: grid; gap: 7px; color: #d8d7e2; font-size: 13px; font-weight: 600; }
.access-form input { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #ffffff1f; border-radius: 5px; background: #11121d; color: #f4f3fa; }
.access-form .button { width: 100%; margin-top: 2px; }
.access-form .button:disabled { cursor: wait; opacity: .7; }
.access-error { min-height: 1.4em; color: #ffaaa5; font-size: 13px; }
