:root {
  --bg: #071019;
  --bg-2: #0a1520;
  --panel: #0d1a27;
  --panel-2: #101f2e;
  --panel-3: #132536;
  --line: #1d3448;
  --line-soft: rgba(117, 205, 255, .12);

  --text: #eef7fb;
  --muted: #93a8b8;
  --dim: #6f8798;

  --cyan: #24e7f4;
  --cyan-2: #54b9ff;
  --green: #49e6a0;
  --yellow: #f4cf63;
  --red: #ff6c7a;

  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
  --radius: 18px;
  --radius-sm: 12px;

  --container: 1200px;
  --header-h: 74px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 0%, rgba(36, 231, 244, .06), transparent 32rem),
    radial-gradient(circle at 90% 18%, rgba(84, 185, 255, .05), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

code,
pre,
.console-bar,
.preview-toolbar,
.selector,
.arch-label,
.price-badge,
.feature-index,
.section-kicker,
.deployment-badge,
.compare-label,
.eyebrow,
.synthetic-label {
  font-family:
    "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--cyan);
  color: #001217;
  border-radius: 8px;
  font-weight: 800;
}

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

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

.section {
  position: relative;
  padding: 96px 0;
}

.section-compact {
  padding: 32px 0 48px;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .015), transparent 20%),
    rgba(11, 24, 36, .72);
  border-block: 1px solid rgba(117, 205, 255, .07);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(7, 16, 25, .84);
  border-bottom: 1px solid rgba(117, 205, 255, .1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(36, 231, 244, .45);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(36, 231, 244, .15), rgba(84, 185, 255, .02));
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: -.03em;
  box-shadow: inset 0 0 20px rgba(36, 231, 244, .04);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--dim);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav a {
  color: #b8c8d3;
  font-size: .88rem;
  font-weight: 650;
  transition: color .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--cyan);
}

.header-actions {
  display: flex;
  gap: 8px;
}

.mobile-nav {
  display: none;
  margin-left: auto;
  position: relative;
}

.mobile-nav summary {
  list-style: none;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 8px 12px;
  color: #dcecf4;
  font-weight: 700;
}

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

.mobile-nav-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(320px, calc(100vw - 32px));
  display: grid;
  padding: 12px;
  background: #0c1722;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.mobile-nav-panel a {
  padding: 11px 12px;
  border-radius: 8px;
  color: #c4d4df;
}

.mobile-nav-panel a:hover {
  background: rgba(36, 231, 244, .06);
  color: var(--cyan);
}

/* BUTTONS */
.btn {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  font-size: .92rem;
  line-height: 1;
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

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

.btn-primary {
  color: #001216;
  background: linear-gradient(135deg, var(--cyan), #71f0ff);
  box-shadow: 0 12px 30px rgba(36, 231, 244, .16);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(36, 231, 244, .22);
}

.btn-secondary {
  color: #dffcff;
  border-color: rgba(36, 231, 244, .35);
  background: rgba(36, 231, 244, .055);
}

.btn-secondary:hover {
  background: rgba(36, 231, 244, .09);
  border-color: rgba(36, 231, 244, .6);
}

.btn-ghost {
  color: #b9ccd8;
  border-color: var(--line);
  background: rgba(255, 255, 255, .015);
}

.btn-ghost:hover {
  border-color: #345269;
  background: rgba(255, 255, 255, .03);
}

.btn-sm {
  min-height: 38px;
  padding-inline: 13px;
  font-size: .82rem;
}

.btn-block {
  width: 100%;
}

/* HERO */
.hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .36;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(65, 161, 209, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 161, 209, .055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .8) 65%, transparent 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr);
  gap: 62px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: .76rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-weight: 850;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(73, 230, 160, .08), 0 0 16px rgba(73, 230, 160, .45);
}

.hero h1 {
  margin: 20px 0 22px;
  max-width: 800px;
  font-size: clamp(3rem, 5.7vw, 5.3rem);
  line-height: .99;
  letter-spacing: -.06em;
}

.gradient-text {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), #8fc7ff 65%, #d9f6ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede {
  max-width: 720px;
  margin: 0;
  color: #a9bcc9;
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
}

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

.hero-trust {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-trust span {
  padding: 7px 10px;
  border: 1px solid rgba(138, 192, 221, .13);
  border-radius: 99px;
  color: #8298a8;
  background: rgba(255, 255, 255, .018);
  font-size: .76rem;
}

.hero-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(80, 190, 234, .23);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(14, 31, 45, .98), rgba(7, 16, 25, .96));
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, .03),
    0 0 80px rgba(36, 231, 244, .04);
}

.hero-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(36, 231, 244, .035), transparent 40%);
}

.console-bar,
.preview-toolbar {
  min-height: 46px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .018);
  color: #7d96a7;
  font-size: .68rem;
  letter-spacing: .05em;
}

.console-dots {
  width: 38px;
  height: 10px;
  background:
    radial-gradient(circle at 5px 5px, #fd6571 4px, transparent 4.4px),
    radial-gradient(circle at 18px 5px, #f3c95b 4px, transparent 4.4px),
    radial-gradient(circle at 31px 5px, #4bdc95 4px, transparent 4.4px);
}

.console-state {
  margin-left: auto;
  color: var(--green);
}

.console-body {
  position: relative;
  padding: 22px;
}

.query-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, .2);
}

.prompt {
  color: var(--cyan);
  font-family: monospace;
  font-size: .7rem;
  font-weight: 800;
}

.query-row code {
  min-width: 0;
  overflow: hidden;
  color: #dcebf2;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .84rem;
}

.query-type {
  padding: 4px 7px;
  border: 1px solid rgba(36, 231, 244, .2);
  border-radius: 6px;
  color: var(--cyan);
  background: rgba(36, 231, 244, .05);
  font-size: .64rem;
  font-weight: 850;
}

.console-metrics {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.console-metrics > div {
  padding: 13px;
  border: 1px solid rgba(117, 205, 255, .11);
  border-radius: 10px;
  background: rgba(255, 255, 255, .017);
}

.metric-label {
  display: block;
  margin-bottom: 5px;
  color: var(--dim);
  font-size: .61rem;
  letter-spacing: .07em;
}

.console-metrics strong {
  font-size: .78rem;
}

.good {
  color: var(--green);
}

.evidence-card {
  margin-top: 14px;
  padding: 15px;
  border: 1px solid rgba(84, 185, 255, .13);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(84, 185, 255, .045), transparent 70%);
}

.evidence-head,
.evidence-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.evidence-head {
  color: #d7e7ef;
  font-size: .76rem;
  font-weight: 800;
}

.evidence-card p {
  margin: 12px 0;
  color: #8ea5b4;
  font-size: .78rem;
}

.evidence-footer {
  color: #60798b;
  font-size: .63rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 99px;
  padding: 3px 7px;
  font-size: .58rem;
  letter-spacing: .07em;
  font-weight: 900;
}

.chip-public {
  color: #88d8ff;
  background: rgba(84, 185, 255, .1);
  border: 1px solid rgba(84, 185, 255, .2);
}

.chip-safe {
  color: var(--green);
  background: rgba(73, 230, 160, .07);
  border: 1px solid rgba(73, 230, 160, .16);
}

.console-line {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #849aa9;
  font-size: .7rem;
}

.console-ok {
  color: var(--green);
  font-weight: 900;
}

.console-muted {
  margin-left: auto;
  color: #536a7a;
  font-family: monospace;
  font-size: .62rem;
}

/* SHARED HEADINGS */
.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading h2,
.positioning-card h2,
.split-copy h2,
.cta-panel h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4.1vw, 3.4rem);
  line-height: 1.07;
  letter-spacing: -.045em;
}

.section-heading p,
.split-copy > p,
.positioning-card p,
.cta-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.positioning-card {
  padding: 26px 30px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(36, 231, 244, .12);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(36, 231, 244, .05), transparent 46%),
    var(--panel);
}

.positioning-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.positioning-card p strong {
  color: #d9edf5;
}

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.security-card,
.deployment-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(117, 205, 255, .1);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(150deg, rgba(36, 231, 244, .025), transparent 45%),
    var(--panel);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.feature-card:hover,
.security-card:hover,
.deployment-card:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 231, 244, .24);
}

.feature-index {
  color: #4f6d80;
  font-size: .7rem;
  letter-spacing: .08em;
}

.feature-card h3,
.security-card h3,
.deployment-card h3,
.workflow-step h3,
.price-card h3 {
  margin: 18px 0 9px;
  font-size: 1.12rem;
  letter-spacing: -.02em;
}

.feature-card p,
.security-card p,
.deployment-card p,
.workflow-step p {
  margin: 0;
  color: #859baa;
  font-size: .88rem;
}

/* WORKFLOW */
.workflow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.workflow-step {
  min-height: 210px;
  padding: 20px;
  background: #0b1722;
}

.workflow-step > span {
  color: var(--cyan);
  font-family: monospace;
  font-size: .74rem;
}

.workflow-step h3 {
  margin-top: 32px;
}

.architecture-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.architecture-strip > div {
  padding: 17px;
  border: 1px solid rgba(117, 205, 255, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .015);
}

.arch-label {
  display: block;
  margin-bottom: 8px;
  color: var(--dim);
  font-size: .62rem;
}

.architecture-strip strong,
.architecture-strip small {
  display: block;
}

.architecture-strip strong {
  color: #d7e8ef;
  font-size: .84rem;
}

.architecture-strip small {
  margin-top: 4px;
  color: #698091;
  font-size: .68rem;
}

/* SPLIT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-reverse > :first-child {
  order: 2;
}

.split-reverse > :last-child {
  order: 1;
}

.check-list {
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #b0c2cd;
  font-size: .9rem;
}

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

/* ACCESS PLANE */
.plane-diagram,
.egress-card,
.plugin-console,
.license-visual {
  border: 1px solid rgba(117, 205, 255, .12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(36, 231, 244, .05), transparent 55%),
    #09141f;
  box-shadow: var(--shadow);
}

.plane-diagram {
  padding: 26px;
}

.plane-node {
  padding: 17px;
  border-radius: 11px;
  border: 1px solid rgba(117, 205, 255, .14);
  background: rgba(255, 255, 255, .018);
}

.plane-node small,
.plane-node strong,
.plane-node span {
  display: block;
}

.plane-node small {
  color: var(--dim);
  font-family: monospace;
  font-size: .62rem;
}

.plane-node strong {
  margin: 6px 0 2px;
  color: #dbeef5;
  font-size: .92rem;
}

.plane-node span {
  color: #748b9a;
  font-size: .76rem;
}

.plane-node.projection {
  border-color: rgba(36, 231, 244, .24);
  background: rgba(36, 231, 244, .045);
}

.plane-node.access {
  border-color: rgba(73, 230, 160, .18);
}

.plane-arrow {
  padding: 9px 0;
  text-align: center;
  color: #59778b;
  font-family: monospace;
  font-size: .7rem;
}

/* DEPLOYMENT */
.deployment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.deployment-card {
  min-height: 250px;
}

.deployment-card.featured {
  border-color: rgba(36, 231, 244, .32);
  background:
    linear-gradient(150deg, rgba(36, 231, 244, .07), transparent 55%),
    var(--panel);
}

.deployment-badge {
  color: var(--cyan);
  font-size: .64rem;
  letter-spacing: .09em;
}

/* EGRESS */
.egress-card {
  padding: 24px;
}

.egress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #96adba;
  font-family: monospace;
  font-size: .68rem;
}

.egress-flow {
  margin-top: 22px;
}

.egress-node {
  max-width: 280px;
  margin-inline: auto;
  padding: 12px 14px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #d8e9f0;
  background: rgba(255, 255, 255, .02);
  font-size: .82rem;
  font-weight: 800;
}

.egress-node.policy {
  color: var(--green);
  border-color: rgba(73, 230, 160, .18);
}

.egress-arrow {
  padding: 7px 0;
  text-align: center;
  color: #617b8b;
}

.egress-branches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.egress-branches > div {
  padding: 14px 10px;
  text-align: center;
  border: 1px solid rgba(117, 205, 255, .11);
  border-radius: 9px;
  background: rgba(255, 255, 255, .014);
}

.egress-branches strong,
.egress-branches small {
  display: block;
}

.egress-branches strong {
  color: var(--cyan);
  font-size: .73rem;
}

.egress-branches small {
  margin-top: 4px;
  color: #657d8c;
  font-size: .62rem;
}

.egress-note {
  margin: 18px 0 0;
  padding-top: 15px;
  border-top: 1px solid rgba(117, 205, 255, .08);
  color: #6f8797;
  font-size: .72rem;
}

/* SELECTORS */
.selector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.selector {
  min-height: 96px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(117, 205, 255, .1);
  border-radius: 10px;
  background: #0a1621;
}

.selector span {
  color: var(--cyan);
  font-size: .61rem;
  letter-spacing: .08em;
}

.selector code {
  overflow: hidden;
  color: #9fb3c0;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .74rem;
}

/* PREVIEW */
.preview-shell {
  overflow: hidden;
  border: 1px solid rgba(36, 231, 244, .22);
  border-radius: var(--radius);
  background: #09141f;
  box-shadow: var(--shadow);
}

.preview-toolbar strong {
  color: #9adce8;
  font-size: .7rem;
}

.synthetic-label {
  margin-left: auto;
  padding: 4px 8px;
  border: 1px solid rgba(244, 207, 99, .2);
  border-radius: 6px;
  color: var(--yellow);
  background: rgba(244, 207, 99, .05);
  font-size: .58rem;
}

.preview-table-wrap {
  overflow-x: auto;
}

.preview-table {
  width: 100%;
  min-width: 870px;
  border-collapse: collapse;
  font-family: monospace;
  font-size: .76rem;
}

.preview-table th,
.preview-table td {
  padding: 14px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(117, 205, 255, .075);
  white-space: nowrap;
}

.preview-table th {
  color: #617c8e;
  background: rgba(255, 255, 255, .012);
  font-size: .62rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.preview-table td {
  color: #9db3bf;
}

.preview-table tbody tr:hover {
  background: rgba(36, 231, 244, .025);
}

.confidence {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 99px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .65rem;
  font-weight: 850;
}

.confidence.high {
  color: var(--green);
  background: rgba(73, 230, 160, .08);
}

.confidence.medium {
  color: var(--yellow);
  background: rgba(244, 207, 99, .08);
}

.preview-footer {
  padding: 11px 15px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #587184;
  background: rgba(36, 231, 244, .022);
  font-size: .66rem;
}

/* PLUGINS */
.provider-pills {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.provider-pills span {
  padding: 7px 10px;
  border: 1px solid rgba(117, 205, 255, .14);
  border-radius: 99px;
  color: #a9bdc8;
  background: rgba(255, 255, 255, .015);
  font-size: .72rem;
}

.fine-print {
  display: block;
  margin-top: 18px;
  color: #667f8e;
  font-size: .72rem;
}

.plugin-console {
  overflow: hidden;
}

.plugin-row {
  min-height: 80px;
  padding: 15px 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  border-bottom: 1px solid rgba(117, 205, 255, .08);
}

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

.plugin-status {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.plugin-status.ok {
  background: var(--green);
  box-shadow: 0 0 12px rgba(73, 230, 160, .35);
}

.plugin-status.neutral {
  background: var(--cyan-2);
}

.plugin-row strong,
.plugin-row small {
  display: block;
}

.plugin-row strong {
  color: #d3e4eb;
  font-size: .84rem;
}

.plugin-row small {
  margin-top: 2px;
  color: #6d8493;
  font-size: .68rem;
}

.plugin-row > span:last-child {
  color: #678392;
  font-family: monospace;
  font-size: .62rem;
}

/* SECURITY */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.security-card {
  min-height: 175px;
}

.security-card h3 {
  margin-top: 0;
}

/* COMPARE */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.compare-card {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
}

.compare-card.intel {
  border-color: rgba(36, 231, 244, .28);
  background:
    linear-gradient(135deg, rgba(36, 231, 244, .055), transparent 55%),
    var(--panel);
}

.compare-label {
  color: #718999;
  font-size: .68rem;
  letter-spacing: .08em;
}

.compare-card.intel .compare-label {
  color: var(--cyan);
}

.compare-card ul {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 26px;
  color: #9db0bd;
  font-size: .88rem;
}

.compare-card.muted li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #526c7e;
}

.compare-card.intel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(117, 205, 255, .12);
  border-radius: var(--radius);
  background: var(--panel);
}

.price-card.recommended {
  border-color: rgba(36, 231, 244, .38);
  box-shadow: 0 24px 70px rgba(36, 231, 244, .06);
}

.recommended-tag {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 4px 7px;
  border-radius: 6px;
  color: #001317;
  background: var(--cyan);
  font-size: .6rem;
  font-weight: 950;
}

.price-badge {
  color: #668396;
  font-size: .61rem;
  letter-spacing: .07em;
}

.price-top h3 {
  margin: 14px 0 5px;
  font-size: 1.4rem;
}

.price-top p {
  min-height: 50px;
  margin: 0;
  color: #7e95a5;
  font-size: .82rem;
}

.price {
  margin: 26px 0 22px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price strong {
  font-size: 2.25rem;
  letter-spacing: -.05em;
}

.price span {
  color: #6f8797;
  font-size: .78rem;
}

.price-card ul {
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: #9eb1bc;
  font-size: .82rem;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

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

.addons {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.addons > div {
  padding: 18px;
  border: 1px solid rgba(117, 205, 255, .1);
  border-radius: 11px;
  background: rgba(255, 255, 255, .015);
}

.addons span,
.addons strong {
  display: block;
}

.addons span {
  color: #638091;
  font-family: monospace;
  font-size: .61rem;
}

.addons strong {
  margin-top: 4px;
  color: #d1e3ea;
  font-size: .92rem;
}

.addons p {
  margin: 8px 0 0;
  color: #738b9a;
  font-size: .74rem;
}

.pricing-note {
  margin: 18px auto 0;
  max-width: 900px;
  text-align: center;
  color: #617a8b;
  font-size: .72rem;
}

/* LICENSE */
.license-visual {
  min-height: 360px;
  padding: 42px;
  display: grid;
  place-items: center;
}

.license-key-card {
  width: min(100%, 430px);
  padding: 26px;
  border: 1px solid rgba(36, 231, 244, .26);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(36, 231, 244, .06), transparent 55%),
    #0b1722;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.license-key-card > span,
.license-key-card > strong,
.license-key-card code {
  display: block;
}

.license-key-card > span {
  color: var(--cyan);
  font-family: monospace;
  font-size: .64rem;
}

.license-key-card > strong {
  margin: 8px 0 20px;
  font-size: 1.35rem;
}

.license-key-card code {
  margin-top: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(117, 205, 255, .1);
  border-radius: 7px;
  color: #8da6b5;
  background: rgba(0, 0, 0, .18);
  font-size: .7rem;
}

.license-state {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-family: monospace;
  font-size: .68rem;
}

/* FAQ */
.faq-container {
  max-width: 930px;
}

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

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

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 22px 44px 22px 0;
  color: #d8e6ec;
  font-weight: 800;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  color: var(--cyan);
  font-size: 1.35rem;
  font-weight: 400;
}

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

.faq-list details p {
  margin: -4px 0 22px;
  max-width: 830px;
  color: #859cac;
  font-size: .9rem;
}

/* CTA */
.cta-section {
  padding-top: 56px;
}

.cta-panel {
  padding: clamp(30px, 5vw, 58px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
  border: 1px solid rgba(36, 231, 244, .2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(36, 231, 244, .1), transparent 38%),
    linear-gradient(135deg, #0c1a27, #09141f);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 760px;
}

.cta-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cta-checks span {
  padding: 12px;
  border: 1px solid rgba(117, 205, 255, .1);
  border-radius: 9px;
  color: #9ab0bc;
  background: rgba(255, 255, 255, .015);
  font-size: .78rem;
}

/* FOOTER */
.site-footer {
  margin-top: 80px;
  border-top: 1px solid rgba(117, 205, 255, .09);
  background: #050c12;
}

.footer-grid {
  padding: 54px 0 38px;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 46px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-grid > div:first-child p {
  max-width: 420px;
  margin: 0;
  color: #6f8797;
  font-size: .83rem;
}

.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid > div:not(:first-child) strong {
  margin-bottom: 4px;
  color: #d1e1e8;
  font-size: .78rem;
}

.footer-grid > div:not(:first-child) a {
  color: #718a9a;
  font-size: .78rem;
}

.footer-grid > div:not(:first-child) a:hover {
  color: var(--cyan);
}

.footer-bottom {
  padding: 17px 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(117, 205, 255, .07);
  color: #50697a;
  font-size: .7rem;
}

.footer-bottom a:hover {
  color: var(--cyan);
}

/* FOCUS */
a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-console {
    max-width: 760px;
  }

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

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

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

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

@media (max-width: 860px) {
  .section {
    padding: 74px 0;
  }

  .positioning-card,
  .split,
  .cta-panel {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .split-reverse > :first-child,
  .split-reverse > :last-child {
    order: initial;
  }

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

  .price-card:last-child {
    grid-column: 1 / -1;
  }

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

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

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

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

@media (max-width: 680px) {
  :root {
    --header-h: 66px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header .brand-copy small {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .console-metrics {
    grid-template-columns: 1fr;
  }

  .evidence-footer,
  .preview-footer {
    flex-direction: column;
    gap: 4px;
  }

  .console-muted {
    display: none;
  }

  .positioning-card {
    padding: 22px;
  }

  .feature-grid,
  .security-grid,
  .pricing-grid,
  .deployment-grid,
  .selector-grid {
    grid-template-columns: 1fr;
  }

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

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

  .workflow-step {
    min-height: auto;
  }

  .workflow-step h3 {
    margin-top: 14px;
  }

  .architecture-strip {
    grid-template-columns: 1fr;
  }

  .egress-branches {
    grid-template-columns: 1fr;
  }

  .cta-checks {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}
