:root {
  --bg: #f7f6ff;
  --bg2: #ffffff;
  --text: #17132a;
  --muted: rgba(23, 19, 42, 0.7);
  --border: rgba(23, 19, 42, 0.12);
  --brand: #8a4dff;
  --brand2: #2ee5ff;
  --brand3: #4b2a89;
  --ok: #179261;
  --danger: #c32432;
  --radius: 16px;
  --shadow: 0 18px 40px rgba(23, 19, 42, 0.1);
  --shadow2: 0 10px 22px rgba(23, 19, 42, 0.08);
  --max: 1280px;
  --pad: 18px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --page-gradient-spot-1: rgba(138, 77, 255, 0.14);
  --page-gradient-spot-2: rgba(46, 229, 255, 0.16);
  --hero-gradient-spot-1: rgba(138, 77, 255, 0.2);
  --hero-gradient-spot-2: rgba(46, 229, 255, 0.18);
  --header-height: 84px;
  --cta-gradient-start: #5d2ddf;
  --cta-gradient-mid: #3f46d7;
  --cta-gradient-end: #0079a8;
  --hero-title-max: 1160px;
}

@media (min-width: 1600px) {
  :root {
    --max: 1360px;
    --hero-title-max: 1240px;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  color: var(--text);
}

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  background:
    radial-gradient(1000px 520px at 8% -2%, var(--page-gradient-spot-1), transparent 62%),
    radial-gradient(820px 500px at 94% 4%, var(--page-gradient-spot-2), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

body.theme-prism {
  --hero-gradient-spot-1: rgba(0, 173, 117, 0.26);
  --hero-gradient-spot-2: rgba(112, 235, 189, 0.24);
}

body.theme-guardian {
  --hero-gradient-spot-1: rgba(255, 138, 51, 0.3);
  --hero-gradient-spot-2: rgba(255, 189, 72, 0.24);
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.skip-link {
  position: absolute;
  left: 10px;
  top: -64px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  border: 2px solid #17132a;
  background: #ffffff;
  color: #17132a;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(23, 19, 42, 0.16);
  transition: top 160ms ease;
}

.skip-link:focus-visible {
  top: 10px;
}

main#main-content:focus {
  outline: 3px solid rgba(75, 42, 137, 0.78);
  outline-offset: 4px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: saturate(160%) blur(12px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--border);
  transition: transform 220ms ease, opacity 220ms ease;
  will-change: transform, opacity;
}

body.subnav-collided .header {
  transform: translateY(calc(-1 * var(--header-height)));
  opacity: 0;
  pointer-events: none;
}

body.nav-open.subnav-collided .header {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand-main-logo {
  min-width: 0;
}

.brand-main-logo-img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(138, 77, 255, 0.24);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-level {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(23, 19, 42, 0.64);
  margin-bottom: 2px;
}

.brand-name {
  font-size: 18px;
  color: #25184d;
}

.brand-rainbow .brand-name {
  color: #2b185b;
}

.brand-prism .brand-name {
  color: #4b2a89;
}

.brand-guardian .brand-name {
  color: #253f69;
}

.navlinks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border-radius: 11px;
  border: 1px solid rgba(23, 19, 42, 0.14);
  background: rgba(255, 255, 255, 0.86);
}

.lang-switch-btn {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(23, 19, 42, 0.82);
  min-width: 38px;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.lang-switch-btn:hover {
  background: rgba(23, 19, 42, 0.08);
}

.lang-switch-btn.is-active {
  background: rgba(138, 77, 255, 0.18);
  color: #341a6d;
  box-shadow: inset 0 0 0 1px rgba(138, 77, 255, 0.38);
}

.lang-switch-btn:focus-visible {
  outline: 3px solid #17132a;
  outline-offset: 2px;
}

.theme-toggle {
  padding: 8px 10px;
  border-radius: 11px;
  border: 1px solid rgba(23, 19, 42, 0.16);
  background: rgba(255, 255, 255, 0.84);
  color: rgba(23, 19, 42, 0.84);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.theme-toggle:hover {
  background: #ffffff;
  border-color: rgba(23, 19, 42, 0.26);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(23, 19, 42, 0.12);
}

.theme-toggle:focus-visible {
  outline: 3px solid #17132a;
  outline-offset: 2px;
}

.theme-toggle-icon {
  font-size: 14px;
}

.theme-toggle-label {
  letter-spacing: 0.01em;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(23, 19, 42, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: #17132a;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(23, 19, 42, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(23, 19, 42, 0.32);
  box-shadow: 0 14px 24px rgba(23, 19, 42, 0.14);
}

.nav-toggle:focus-visible {
  outline: 3px solid #17132a;
  outline-offset: 2px;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
  transform-origin: center;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.header.menu-open .nav-toggle-bars {
  background: transparent;
}

.header.menu-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.header.menu-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.navlinks a {
  padding: 8px 10px;
  border-radius: 11px;
  border: 1px solid transparent;
  color: rgba(23, 19, 42, 0.76);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.navlinks a:not(.cta):hover {
  background: rgba(23, 19, 42, 0.04);
  border-color: rgba(23, 19, 42, 0.1);
  color: var(--text);
}

.navlinks a:not(.cta):focus-visible {
  outline: 3px solid #17132a;
  outline-offset: 2px;
}

.navlinks a.active {
  background: rgba(138, 77, 255, 0.14);
  border-color: rgba(138, 77, 255, 0.34);
  color: #341a6d;
}

.navlinks .cta {
  background: linear-gradient(135deg, var(--cta-gradient-start) 0%, var(--cta-gradient-mid) 45%, var(--cta-gradient-end) 100%);
  color: #fff;
  font-weight: 900;
  border: 0;
  box-shadow: 0 14px 30px rgba(63, 70, 215, 0.34), 0 8px 16px rgba(0, 121, 168, 0.24);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.navlinks .cta:hover {
  background: linear-gradient(135deg, var(--cta-gradient-start) 0%, var(--cta-gradient-mid) 45%, var(--cta-gradient-end) 100%);
  color: #fff;
  border: 0;
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.03);
  box-shadow: 0 20px 36px rgba(63, 70, 215, 0.38), 0 12px 22px rgba(0, 121, 168, 0.28);
}

.navlinks .cta.active {
  background: linear-gradient(135deg, var(--cta-gradient-start) 0%, var(--cta-gradient-mid) 45%, var(--cta-gradient-end) 100%);
  color: #fff;
  border: 0;
  outline: 3px solid #17132a;
  outline-offset: 2px;
  box-shadow: 0 12px 28px rgba(63, 70, 215, 0.32), 0 8px 20px rgba(0, 121, 168, 0.26);
}

.navlinks .cta:active {
  transform: translateY(0);
}

.hero {
  padding: 72px 0 30px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(860px 480px at 10% 8%, var(--hero-gradient-spot-1), transparent 62%),
    radial-gradient(760px 420px at 92% 14%, var(--hero-gradient-spot-2), transparent 62%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(75, 42, 137, 0.85);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}

h1 {
  margin: 12px 0 12px;
  max-width: 860px;
  font-size: 55px;
  line-height: auto;
  letter-spacing: 0em;
  color: var(--brand3);
}

.hero-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  max-width: min(var(--hero-title-max), 100%);
  width: 100%;
}

.hero-title-logo {
  order: 2;
  width: min(34%, 360px);
  max-width: 360px;
  min-width: 170px;
  height: auto;
  flex: 0 1 auto;
  object-fit: contain;
  margin-top: 6px;
}

.hero-title-text {
  order: 1;
  display: inline-block;
  max-width: none;
  flex: 1 1 60%;
}

.lead {
  max-width: 840px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(23, 19, 42, 0.1);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow2);
}

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

.trial-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 30px 0px 10px;
}

.trial-form {
  display: flex;
  flex: 1 1 520px;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  margin: 0;
}

.trial-form input[type="email"] {
  min-width: 220px;
  max-width: 300px;
  flex: 1 1 300px;
}

.trial-form .btn {
  white-space: nowrap;
}

.hero .trial-form input[type="email"] {
  min-width: 260px;
  max-width: 360px;
  flex: 1 1 360px;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 15px;
}

.hero .trial-form .btn {
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
}

.trial-consent {
  display: none;
  flex: 1 1 100%;
  width: 100%;
  margin-top: 2px;
  padding: 10px 12px;
}

.trial-consent.is-visible {
  display: block;
}

.trial-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(23, 19, 42, 0.82);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.trial-consent-label input[type="checkbox"] {
  margin-top: 1px;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: #4a3ed3;
}

.trial-consent-label input[type="checkbox"][aria-invalid="true"] {
  outline: 2px solid #b42318;
  outline-offset: 2px;
}

.trial-consent-error {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: #b42318;
}

.btn {
  display: inline-flex;
  align-items: center;
  cursor:pointer;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(23, 19, 42, 0.16);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font-weight: 800;
  padding: 12px 16px;
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, filter 180ms ease;
}

.btn:hover {
  border-color: rgba(23, 19, 42, 0.24);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(23, 19, 42, 0.12);
}

.btn.primary {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--cta-gradient-start) 0%, var(--cta-gradient-mid) 45%, var(--cta-gradient-end) 100%);
  box-shadow: 0 14px 30px rgba(63, 70, 215, 0.34), 0 8px 16px rgba(0, 121, 168, 0.24);
}

.btn.primary:hover {
  filter: saturate(1.08) brightness(1.03);
  box-shadow: 0 20px 36px rgba(63, 70, 215, 0.38), 0 12px 22px rgba(0, 121, 168, 0.28);
}

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

.btn:focus-visible,
.navlinks .cta:focus-visible {
  outline: 3px solid #17132a;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .nav-toggle,
  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after,
  .theme-toggle,
  .navlinks .cta,
  .skip-link {
    transition: none;
  }

  .btn:hover,
  .navlinks .cta:hover {
    transform: none;
  }
}

.btn.small {
  padding: 10px 12px;
  border-radius: 12px;
}

.section {
  padding: 30px 0;
}

.section p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.72;
}

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

.card {
  grid-column: span 4;
  border-radius: var(--radius);
  border: 1px solid rgba(23, 19, 42, 0.1);
  padding: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow2);
}

.card.span6 {
  grid-column: span 6;
}

.card.span8 {
  grid-column: span 8;
}

.card.span12 {
  grid-column: span 12;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.product-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.product-card-head h3 {
  margin: 0;
}

.product-card-logo {
  max-width: 48%;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.home-page .product-card-logo {
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid rgba(23, 19, 42, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 16px rgba(23, 19, 42, 0.08);
}

.card ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.72;
}

.feature-blocks {
  display: grid;
  gap: 26px;
}

.feature-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 24px;
  padding: 80px 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.prismlive-features-section .feature-block {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 40px);
}

.guardian-features-section .feature-block {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 40px);
}

.feature-blocks > .feature-block:first-of-type {
  padding-top: 60px;
}

.feature-block + .feature-block {
  position: relative;
}

.feature-block + .feature-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50vw;
  max-width: 560px;
  min-width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 19, 42, 0.2), transparent);
}

.use-cases-blocks {
  gap: 34px;
}

.use-cases-blocks > .feature-block {
  position: relative;
  padding: 42px 30px 34px;
  border-radius: 24px;
  border: 1px solid rgba(13, 111, 82, 0.2);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(235, 250, 242, 0.9));
  box-shadow: 0 14px 28px rgba(16, 67, 52, 0.08);
  overflow: hidden;
}

.use-cases-blocks > .feature-block + .feature-block::before {
  display: none;
}

.use-cases-blocks .feature-visual::before {
  inset: 18px 14px;
  background: radial-gradient(circle at 34% 36%, rgba(11, 157, 112, 0.2), rgba(86, 191, 154, 0.16) 70%, transparent 100%);
}

.use-cases-blocks .feature-float {
  border-color: rgba(13, 111, 82, 0.22);
  background: rgba(244, 255, 250, 0.9);
  box-shadow: 0 12px 24px rgba(16, 67, 52, 0.14);
  color: #0b6a4f;
}

.feature-copy p.use-case-context {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(9, 95, 68, 0.88);
}

.feature-copy p.use-case-outcome {
  margin-bottom: 0;
  color: rgba(9, 95, 68, 0.9);
}

.feature-copy p.use-case-outcome strong {
  color: #07573f;
}

.feature-copy {
  min-width: 0;
}

.feature-copy-group {
  min-width: 0;
}

.feature-copy h2,
.feature-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  color: #24184c;
}

.feature-copy p {
  margin: 0 0 12px;
  color: rgba(23, 19, 42, 0.78);
  line-height: 1.75;
  font-size: 16px;
}

.feature-copy p:last-child {
  margin-bottom: 0;
}

.feature-visual {
  position: relative;
  min-height: 184px;
}

.feature-visual::before {
  content: "";
  position: absolute;
  inset: 16px 14px;
  border-radius: 999px;
  background: radial-gradient(circle at 34% 36%, rgba(138, 77, 255, 0.18), rgba(46, 229, 255, 0.14) 70%, transparent 100%);
  filter: blur(0.3px);
}

.feature-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  min-width: 96px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 19, 42, 0.1);
  box-shadow: 0 14px 26px rgba(23, 19, 42, 0.16);
  color: #2a1858;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: floatChip 5.4s ease-in-out infinite;
  backdrop-filter: blur(5px);
}

.feature-float.is-top {
  top: 12px;
  right: 16px;
  animation-delay: 0s;
}

.feature-float.is-middle {
  top: 72px;
  left: 8px;
  animation-delay: 0.7s;
}

.feature-float.is-bottom {
  bottom: 8px;
  right: 34px;
  animation-delay: 1.3s;
}

.feature-media-left .feature-copy {
  order: 2;
}

.feature-media-left .feature-visual {
  order: 1;
}

@keyframes floatChip {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

.feature-video-slot {
  min-height: 260px;
}

.overview-arguments {
  margin-top: 0;
}

.overview-feature-separator {
  height: 1px;
  width: 50vw;
  max-width: 560px;
  min-width: 180px;
  margin: 10px auto 28px;
  background: linear-gradient(90deg, transparent, rgba(23, 19, 42, 0.2), transparent);
}

.overview-section-head {
  margin: 0 auto 18px;
  max-width: 620px;
  text-align: center;
}

.overview-section-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(23, 19, 42, 0.56);
}

.overview-arguments-title {
  margin: 0 auto 40px;
  font-size: clamp(22px, 2.4vw, 32px);
    max-width: 24ch;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #24184c;
}

.overview-arguments-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 16px;
}

.overview-argument {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(23, 19, 42, 0.14);
  background:
    radial-gradient(120% 95% at 100% 0%, rgba(138, 77, 255, 0.14), transparent 58%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(240, 237, 255, 0.92));
  box-shadow: 0 16px 30px rgba(23, 19, 42, 0.1);
  padding: 20px 22px;
  overflow: hidden;
}

.overview-argument::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -28px;
  bottom: -42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 229, 255, 0.26), transparent 70%);
  pointer-events: none;
}

.overview-argument-main {
  grid-row: span 2;
  padding: 24px 24px 26px;
}

.overview-argument-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(23, 19, 42, 0.58);
}

.overview-argument-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5d2ddf;
}

.overview-argument h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.16;
  color: #24184c;
}

.overview-argument:not(.overview-argument-main) h3 {
  font-size: clamp(20px, 1.9vw, 24px);
}

.overview-argument p {
  margin: 0;
  color: rgba(23, 19, 42, 0.78);
  line-height: 1.7;
}

.overview-argument-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.overview-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(23, 19, 42, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: #2a1858;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.security-section-head {
  max-width: 760px;
}

.security-pillars-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.security-pillar {
  grid-column: span 4;
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(23, 19, 42, 0.14);
  background:
    radial-gradient(120% 92% at 100% 0%, rgba(138, 77, 255, 0.12), transparent 58%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(240, 237, 255, 0.9));
  box-shadow: 0 16px 30px rgba(23, 19, 42, 0.1);
  padding: 22px;
  overflow: hidden;
}

.security-pillar::before {
  content: none;
}

.security-pillar-main {
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
}

.security-pillar-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(23, 19, 42, 0.58);
}

.security-pillar-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5d2ddf;
}

.security-pillar h3 {
  margin: 0 0 8px;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.15;
  color: #24184c;
}

.security-pillar:not(.security-pillar-main) h3 {
  font-size: clamp(20px, 1.8vw, 24px);
}

.security-pillar p {
  margin: 0;
  color: rgba(23, 19, 42, 0.78);
  line-height: 1.72;
}

.security-pillar-main-copy p {
  margin: 0;
}

.security-pillar-list {
  margin: 0;
  padding: 0 0 0 18px;
  color: rgba(23, 19, 42, 0.78);
  line-height: 1.7;
}

.security-pillar-list li + li {
  margin-top: 8px;
}

.security-assurance-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.security-assurance-card {
  grid-column: span 3;
  border-radius: 20px;
  border: 1px solid rgba(23, 19, 42, 0.14);
  background:
    radial-gradient(120% 92% at 100% 0%, rgba(46, 229, 255, 0.14), transparent 58%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(236, 243, 255, 0.9));
  box-shadow: 0 14px 26px rgba(23, 19, 42, 0.1);
  padding: 20px 22px;
}

.security-assurance-card-main {
  grid-column: span 6;
}

.security-assurance-card h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.16;
  color: #24184c;
}

.security-assurance-card:not(.security-assurance-card-main) h3 {
  font-size: clamp(18px, 1.7vw, 22px);
}

.security-assurance-card p {
  margin: 0;
  color: rgba(23, 19, 42, 0.78);
  line-height: 1.72;
}

.security-assurance-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.security-assurance-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(23, 19, 42, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: #2a1858;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

body.theme-prism .security-pillar {
  background:
    radial-gradient(120% 92% at 100% 0%, rgba(13, 161, 117, 0.14), transparent 58%),
    linear-gradient(165deg, rgba(250, 255, 252, 0.97), rgba(227, 248, 237, 0.92));
  border-color: rgba(13, 111, 82, 0.2);
}

body.theme-prism .security-pillar-kicker::before {
  background: #0b9d70;
}

body.theme-prism .security-assurance-card {
  background:
    radial-gradient(120% 92% at 100% 0%, rgba(13, 161, 117, 0.12), transparent 58%),
    linear-gradient(165deg, rgba(250, 255, 252, 0.97), rgba(230, 250, 240, 0.9));
  border-color: rgba(13, 111, 82, 0.2);
}

body.theme-prism .security-assurance-tag {
  color: #0d6f52;
  border-color: rgba(13, 111, 82, 0.24);
}

body.theme-guardian .security-pillar {
  background:
    radial-gradient(120% 92% at 100% 0%, rgba(219, 129, 42, 0.18), transparent 58%),
    linear-gradient(165deg, rgba(255, 252, 246, 0.97), rgba(255, 236, 211, 0.92));
  border-color: rgba(188, 105, 31, 0.22);
}

body.theme-guardian .security-pillar-kicker::before {
  background: #cc7128;
}

body.theme-guardian .security-assurance-card {
  background:
    radial-gradient(120% 92% at 100% 0%, rgba(226, 139, 62, 0.16), transparent 58%),
    linear-gradient(165deg, rgba(255, 252, 246, 0.97), rgba(255, 236, 211, 0.9));
  border-color: rgba(188, 105, 31, 0.22);
}

body.theme-guardian .security-assurance-tag {
  color: #8e4c1a;
  border-color: rgba(142, 76, 26, 0.26);
}

body.theme-prism .overview-argument {
  background:
    radial-gradient(120% 95% at 100% 0%, rgba(13, 161, 117, 0.14), transparent 58%),
    linear-gradient(165deg, rgba(250, 255, 252, 0.97), rgba(227, 248, 237, 0.92));
}

body.theme-prism .overview-argument-kicker::before {
  background: #0b9d70;
}

body.theme-prism .overview-tag {
  color: #0d6f52;
  border-color: rgba(13, 111, 82, 0.24);
}

body.theme-guardian .overview-argument {
  background:
    radial-gradient(120% 95% at 100% 0%, rgba(219, 129, 42, 0.18), transparent 58%),
    linear-gradient(165deg, rgba(255, 252, 246, 0.97), rgba(255, 236, 211, 0.93));
}

body.theme-guardian .overview-argument-kicker::before {
  background: #cc7128;
}

body.theme-guardian .overview-tag {
  color: #8e4c1a;
  border-color: rgba(142, 76, 26, 0.26);
}

.video-placeholder {
  position: relative;
  z-index: 1;
  width: min(92%, 420px);
  min-height: 220px;
  border-radius: 22px;
  border: 1px dashed rgba(76, 58, 130, 0.34);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(236, 231, 255, 0.8));
  box-shadow: 0 20px 36px rgba(23, 19, 42, 0.14);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.video-placeholder::before {
  content: "▶";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #5d2ddf, #0079a8);
  box-shadow: 0 8px 18px rgba(23, 19, 42, 0.2);
}

.video-placeholder-kicker {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(23, 19, 42, 0.56);
}

.video-placeholder-title {
  font-size: 27px;
  line-height: 1.1;
  font-weight: 900;
  color: #24184c;
}

.video-placeholder-meta {
  font-size: 13px;
  color: rgba(23, 19, 42, 0.66);
}

.use-cases-media-placeholder::before {
  content: "";
  display: none;
}

.use-cases-media-placeholder {
  border-style: solid;
}

.feature-image-placeholder {
  min-height: 200px;
  padding: 18px;
  text-align: right;
  align-items: flex-end;
}

.feature-image-placeholder .video-placeholder-title {
  font-size: clamp(22px, 2vw, 24px);
}

body.theme-prism .video-placeholder {
  border-color: rgba(20, 142, 101, 0.34);
  background: linear-gradient(160deg, rgba(245, 255, 251, 0.96), rgba(222, 246, 236, 0.86));
}

body.theme-prism .video-placeholder::before {
  background: linear-gradient(135deg, #089f70, #2ca079);
}

body.theme-guardian .video-placeholder {
  border-color: rgba(215, 124, 40, 0.36);
  background: linear-gradient(160deg, rgba(255, 251, 244, 0.96), rgba(255, 234, 205, 0.84));
}

body.theme-guardian .video-placeholder::before {
  background: linear-gradient(135deg, #d8752d, #c75b1c);
}

.faq-section h2,
.faq-section h3 {
  margin: 0 auto 40px;
  font-size: clamp(22px, 2.4vw, 32px);
  max-width: 24ch;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #24184c;
}

.faq-section-head {
  margin-bottom: 12px;
}

.faq-section-intro {
  margin: 0 auto;
  max-width: 56ch;
  color: rgba(23, 19, 42, 0.72);
  line-height: 1.65;
  font-size: 15px;
}

.faq-list {
  border-top: 1px solid rgba(23, 19, 42, 0.16);
}

.faq-item {
  border-bottom: 1px solid rgba(23, 19, 42, 0.12);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 0;
  font-weight: 800;
  color: #24184c;
}

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

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(23, 19, 42, 0.16);
  color: #24184c;
  font-size: 18px;
  line-height: 1;
  flex: 0 0 auto;
}

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

.faq-item p {
  margin: 0 0 16px;
  color: rgba(23, 19, 42, 0.78);
  line-height: 1.75;
  max-width: 84ch;
}

.faq-answer-content p {
  margin: 0 0 16px;
  color: rgba(23, 19, 42, 0.78);
  line-height: 1.75;
  max-width: 84ch;
}

.faq-answer-content ul,
.faq-answer-content ol {
  margin: 0 0 16px 22px;
  color: rgba(23, 19, 42, 0.78);
  line-height: 1.75;
  max-width: 84ch;
}

.faq-answer-content li + li {
  margin-top: 6px;
}

.faq-answer-content a {
  color: #245ee3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.94em;
  padding: 1px 5px;
  border-radius: 6px;
  background: rgba(31, 95, 239, 0.1);
}

.divider {
  height: 1px;
  margin: 60px 0;
  background: linear-gradient(90deg, transparent, rgba(23, 19, 42, 0.14), transparent);
}

.callout {
  border-radius: var(--radius);
  border: 1px solid rgba(138, 77, 255, 0.2);
  padding: 16px;
  background: linear-gradient(135deg, rgba(138, 77, 255, 0.12), rgba(46, 229, 255, 0.1));
  box-shadow: var(--shadow);
}

.callout.is-focus-highlight {
  animation: calloutPulse 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.trial-form input[type="email"].is-focus-highlight {
  border-color: rgba(26, 181, 133, 0.72);
  box-shadow: 0 0 0 4px rgba(26, 181, 133, 0.34), 0 12px 24px rgba(12, 89, 67, 0.2);
  animation: inputFocusPulse 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.callout > strong {
  display: block;
  margin-bottom: 6px;
}

.callout > p {
  margin: 0 0 8px;
  color: rgba(23, 19, 42, 0.82);
}

.overview-try-head {
  margin-bottom: 14px;
}

.callout .trial-cta {
  margin: 12px 0 0;
}

.callout .trial-form {
  flex: 1 1 100%;
}

@keyframes calloutPulse {
  0% {
    box-shadow: var(--shadow);
    border-color: rgba(138, 77, 255, 0.2);
    transform: translateY(0);
  }
  32% {
    box-shadow: 0 28px 48px rgba(26, 181, 133, 0.34);
    border-color: rgba(26, 181, 133, 0.6);
    transform: translateY(-3px) scale(1.006);
  }
  100% {
    box-shadow: var(--shadow);
    border-color: rgba(138, 77, 255, 0.2);
    transform: translateY(0);
  }
}

@keyframes inputFocusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(26, 181, 133, 0), 0 10px 20px rgba(12, 89, 67, 0);
    transform: translateY(0);
  }
  32% {
    box-shadow: 0 0 0 8px rgba(26, 181, 133, 0.34), 0 16px 30px rgba(12, 89, 67, 0.24);
    transform: translateY(-1px);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(26, 181, 133, 0), 0 10px 20px rgba(12, 89, 67, 0);
    transform: translateY(0);
  }
}

.resource-status-error {
  border-color: rgba(195, 36, 50, 0.28);
  background: linear-gradient(135deg, rgba(195, 36, 50, 0.1), rgba(255, 198, 198, 0.22));
}

.resources-grid {
  margin-top: 14px;
}

.resource-card {
  grid-column: span 4;
}

.resource-card--prism {
  border-color: rgba(15, 153, 111, 0.26);
  background:
    radial-gradient(120% 95% at 100% 0%, rgba(41, 189, 135, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.9);
}

.resource-card--guardian {
  border-color: rgba(212, 119, 37, 0.28);
  background:
    radial-gradient(120% 95% at 100% 0%, rgba(242, 161, 86, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.9);
}

.resource-card p {
  margin-bottom: 10px;
}

.resource-source-pill {
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(23, 19, 42, 0.14);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(23, 19, 42, 0.78);
  background: rgba(255, 255, 255, 0.82);
}

.resource-card--prism .resource-source-pill {
  border-color: rgba(15, 153, 111, 0.3);
  color: #0b6a4f;
  background: rgba(236, 255, 248, 0.9);
}

.resource-card--guardian .resource-source-pill {
  border-color: rgba(212, 119, 37, 0.3);
  color: #9e4e12;
  background: rgba(255, 247, 237, 0.9);
}

.resource-meta {
  font-size: 13px;
  color: rgba(23, 19, 42, 0.6);
}

.resource-empty {
  grid-column: span 12;
}

.resource-article-shell {
  max-width: min(100%, 1080px);
}

.resource-article-back {
  margin-bottom: 12px;
}

.resource-article-shell .resource-reader {
  margin-top: 0;
}

.resource-reader {
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(23, 19, 42, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow2);
  padding: 18px;
}

.resource-reader--prism {
  border-color: rgba(15, 153, 111, 0.28);
  background:
    radial-gradient(120% 95% at 100% 0%, rgba(41, 189, 135, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.92);
}

.resource-reader--guardian {
  border-color: rgba(212, 119, 37, 0.3);
  background:
    radial-gradient(120% 95% at 100% 0%, rgba(242, 161, 86, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.92);
}

.resource-reader-head {
  margin-bottom: 12px;
}

.resource-reader-head h3 {
  margin: 0 0 6px;
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1.18;
  color: #24184c;
}

.resource-reader-head .resource-meta {
  margin: 0;
}

.resource-reader-body p,
.resource-reader-body ul,
.resource-reader-body ol {
  margin: 0 0 14px;
  color: rgba(23, 19, 42, 0.82);
  line-height: 1.75;
  max-width: 88ch;
}

.resource-reader-body ul,
.resource-reader-body ol {
  padding-left: 20px;
}

.resource-reader-body li + li {
  margin-top: 6px;
}

.resource-reader-body h3,
.resource-reader-body h4 {
  margin: 0 0 10px;
  color: #24184c;
  line-height: 1.2;
}

.resource-reader-body h3 {
  font-size: clamp(20px, 2vw, 26px);
}

.resource-reader-body h4 {
  font-size: clamp(17px, 1.6vw, 21px);
}

.resource-reader-body a {
  color: #245ee3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.resource-reader-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.94em;
  padding: 1px 5px;
  border-radius: 6px;
  background: rgba(31, 95, 239, 0.1);
}

.product-subnav-wrap {
  padding-top: 20px;
  padding-bottom: 10px;
  position: sticky;
  top: var(--header-height);
  z-index: 19;
  background: linear-gradient(
    180deg,
    rgba(247, 246, 255, 0.92) 0%,
    rgba(247, 246, 255, 0.78) 62%,
    rgba(247, 246, 255, 0.38) 100%
  );
  -webkit-backdrop-filter: saturate(145%) blur(8px);
  backdrop-filter: saturate(145%) blur(8px);
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 14px,
    #000 calc(100% - 14px),
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 14px,
    #000 calc(100% - 14px),
    transparent 100%
  );
}

body.subnav-collided .product-subnav-wrap {
  top: 0;
  z-index: 20;
  background: linear-gradient(
    180deg,
    rgba(247, 246, 255, 0.96) 0%,
    rgba(247, 246, 255, 0.84) 62%,
    rgba(247, 246, 255, 0.44) 100%
  );
}

.product-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.84);
  padding: 10px;
  box-shadow: var(--shadow2);
}

.product-subnav a {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(23, 19, 42, 0.08);
  background: rgba(23, 19, 42, 0.03);
  font-size: 14px;
  font-weight: 800;
}

.product-subnav a:hover {
  background: rgba(23, 19, 42, 0.06);
}

.product-subnav a:focus-visible {
  outline: 3px solid #17132a;
  outline-offset: 2px;
}

.product-subnav a.active {
  border-color: rgba(138, 77, 255, 0.4);
  background: rgba(138, 77, 255, 0.14);
  color: #351a71;
}

.price {
  margin: 6px 0;
  font-size: 34px;
  color: #2c1a57;
  font-weight: 900;
}

.price small {
  font-size: 15px;
  color: var(--muted);
  font-weight: 700;
}

.pricing-section-head {
  max-width: 860px;
  margin-bottom: 10px;
}

.pricing-intro {
  margin: 0 0 24px;
  max-width: 74ch;
  font-size: 17px;
  line-height: 1.72;
  color: rgba(23, 19, 42, 0.82);
}

.pricing-plans-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.pricing-plan {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 22px;
  border: 1px solid rgba(23, 19, 42, 0.14);
  background:
    radial-gradient(120% 92% at 100% 0%, rgba(138, 77, 255, 0.12), transparent 58%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(240, 237, 255, 0.9));
  box-shadow: 0 16px 30px rgba(23, 19, 42, 0.1);
  padding: 22px;
}

.pricing-plan::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #5d2ddf, #0079a8);
}

.pricing-plan.is-featured {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(23, 19, 42, 0.14);
}

.pricing-plan-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(23, 19, 42, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: #2a1858;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-plan h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 33px);
  line-height: 1.14;
  color: #24184c;
}

.pricing-capacity {
  margin: 0;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(23, 19, 42, 0.82);
  font-weight: 700;
  line-height: 1.3;
}

.pricing-capacity-value {
  font-size: clamp(40px, 4vw, 58px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #2f1d5c;
}

.pricing-plan-live-price {
  margin: -4px 0 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  color: #2a1858;
}

.pricing-plan-live-price.is-muted {
  font-size: 15px;
  font-weight: 700;
  color: rgba(23, 19, 42, 0.6);
}

.pricing-plan-copy {
  margin: 0;
  color: rgba(23, 19, 42, 0.8);
  line-height: 1.72;
}

.pricing-plan-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(23, 19, 42, 0.8);
  line-height: 1.68;
}

.pricing-plan-list li + li {
  margin-top: 8px;
}

.pricing-plan .actions {
  margin-top: auto;
  padding-top: 8px;
}

.pricing-plan .actions .btn {
  width: 100%;
}

.pricing-footnote {
  margin: 16px 0 0;
  color: rgba(23, 19, 42, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.pricing-footnote a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-footnote a:hover {
  color: rgba(23, 19, 42, 0.92);
}

body.theme-prism .pricing-plan {
  border-color: rgba(13, 111, 82, 0.2);
  background:
    radial-gradient(120% 92% at 100% 0%, rgba(13, 161, 117, 0.14), transparent 58%),
    linear-gradient(165deg, rgba(250, 255, 252, 0.97), rgba(227, 248, 237, 0.92));
}

body.theme-prism .pricing-plan::before {
  background: linear-gradient(90deg, #0b9d70, #16be8e);
}

body.theme-prism .pricing-plan-label {
  color: #0d6f52;
  border-color: rgba(13, 111, 82, 0.24);
}

body.theme-prism .pricing-plan.is-featured {
  border-color: rgba(13, 111, 82, 0.3);
  box-shadow: 0 22px 40px rgba(13, 111, 82, 0.16);
}

body.theme-prism .pricing-plan.is-featured .pricing-plan-label {
  background: rgba(233, 250, 242, 0.94);
}

body.theme-prism .pricing-capacity {
  color: rgba(9, 95, 68, 0.88);
}

body.theme-prism .pricing-capacity-value {
  color: #086c4f;
}

body.theme-prism .pricing-plan-live-price {
  color: #0a6248;
}

body.theme-prism .pricing-plan-live-price.is-muted {
  color: rgba(9, 95, 68, 0.72);
}

body.theme-prism .pricing-footnote a:hover {
  color: #0a6148;
}

body.theme-guardian .pricing-plan {
  border-color: rgba(198, 115, 38, 0.22);
  background:
    radial-gradient(120% 92% at 100% 0%, rgba(226, 139, 62, 0.16), transparent 58%),
    linear-gradient(165deg, rgba(255, 252, 246, 0.97), rgba(255, 236, 211, 0.92));
}

body.theme-guardian .pricing-plan::before {
  background: linear-gradient(90deg, #cf6d25, #e98f3d);
}

body.theme-guardian .pricing-plan-label {
  color: #8f4d1a;
  border-color: rgba(153, 86, 35, 0.26);
}

body.theme-guardian .pricing-plan.is-featured {
  border-color: rgba(173, 99, 41, 0.32);
  box-shadow: 0 22px 40px rgba(153, 86, 35, 0.16);
}

body.theme-guardian .pricing-plan.is-featured .pricing-plan-label {
  background: rgba(255, 240, 220, 0.94);
}

body.theme-guardian .pricing-capacity {
  color: rgba(112, 60, 22, 0.9);
}

body.theme-guardian .pricing-capacity-value {
  color: #7c4215;
}

body.theme-guardian .pricing-plan-live-price {
  color: #7a4014;
}

body.theme-guardian .pricing-plan-live-price.is-muted {
  color: rgba(112, 60, 22, 0.72);
}

body.theme-guardian .pricing-footnote a:hover {
  color: #7a4014;
}

.footer {
  margin-top: 40px;
  padding: 60px 0 40px;
  background:
    radial-gradient(1100px 460px at 8% -18%, rgba(138, 77, 255, 0.26), transparent 62%),
    radial-gradient(920px 420px at 96% -22%, rgba(46, 229, 255, 0.2), transparent 64%),
    #16142d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(238, 236, 255, 0.86);
}

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

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-logo-link {
  display: inline-flex;
  width: fit-content;
}

.footer-logo {
  width: min(210px, 100%);
  height: auto;
  object-fit: contain;
}

.footer-tagline {
  margin: 0;
  max-width: 32ch;
  color: rgba(238, 236, 255, 0.74);
  line-height: 1.6;
  font-size: 14px;
}

.footer-meta {
  margin: 0;
  color: rgba(238, 236, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-col h3 {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(238, 236, 255, 0.92);
}

.footer-col a {
  font-size: 14px;
  color: rgba(238, 236, 255, 0.8);
  text-decoration: none;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(46, 229, 255, 0.68);
  text-underline-offset: 3px;
}

.footer a {
  color: rgba(238, 236, 255, 0.82);
}

.footer a:focus-visible {
  outline: 3px solid #f5f4ff;
  outline-offset: 2px;
  border-radius: 4px;
}

.footer .footer-theme-toggle-wrap {
  margin-top: 8px;
}

.footer .footer-language-toggle-wrap {
  margin-top: 8px;
}

.footer .lang-switch {
  border-color: rgba(238, 236, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.footer .lang-switch-btn {
  color: rgba(238, 236, 255, 0.92);
}

.footer .lang-switch-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.footer .lang-switch-btn.is-active {
  background: rgba(123, 97, 255, 0.34);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(193, 178, 255, 0.44);
}

.footer .lang-switch-btn:focus-visible {
  outline: 3px solid #f5f4ff;
  outline-offset: 2px;
}

.theme-mode-wrap {
  display: grid;
  gap: 8px;
}

.theme-mode-title {
  margin: 0;
  color: rgba(238, 236, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.theme-mode-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  max-width: 100%;
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(238, 236, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.theme-mode-option {
  border: 1px solid transparent;
  background: transparent;
  color: rgba(238, 236, 255, 0.9);
  border-radius: 9px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.theme-mode-option:hover {
  border-color: rgba(238, 236, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
}

.theme-mode-option.is-active {
  color: #ffffff;
  border-color: rgba(238, 236, 255, 0.56);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.theme-mode-option:focus-visible {
  outline: 3px solid #f5f4ff;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .theme-mode-option {
    transition: none;
  }

  .callout.is-focus-highlight {
    animation: none;
    border-color: rgba(26, 181, 133, 0.46);
    box-shadow: 0 0 0 3px rgba(26, 181, 133, 0.22);
  }

  .trial-form input[type="email"].is-focus-highlight {
    animation: none;
    box-shadow: 0 0 0 3px rgba(26, 181, 133, 0.22);
  }

}

form {
  display: grid;
  gap: 12px;
}

.form-feedback {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 1.45;
}

.form-feedback.is-error {
  color: #7a1224;
  background: rgba(195, 36, 50, 0.08);
  border-color: rgba(195, 36, 50, 0.32);
}

.form-feedback.is-success {
  color: #14532d;
  background: rgba(23, 146, 97, 0.1);
  border-color: rgba(23, 146, 97, 0.28);
}

label {
  font-size: 13px;
  color: rgba(23, 19, 42, 0.74);
}

.field-error {
  min-height: 1.1em;
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #b42318;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 13px;
  border: 1px solid rgba(23, 19, 42, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding: 12px;
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #4a3ed3;
  box-shadow: 0 0 0 4px rgba(74, 62, 211, 0.24);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #17132a;
  outline-offset: 2px;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.16);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

body.theme-dark {
  --bg: #070c18;
  --bg2: #0b1222;
  --text: #e8eeff;
  --muted: rgba(232, 238, 255, 0.74);
  --border: rgba(151, 176, 255, 0.25);
  --brand: #7f8fff;
  --brand2: #2bb4f2;
  --brand3: #edf3ff;
  --shadow: 0 20px 36px rgba(0, 0, 0, 0.42);
  --shadow2: 0 12px 24px rgba(0, 0, 0, 0.34);
  --page-gradient-spot-1: rgba(84, 118, 255, 0.22);
  --page-gradient-spot-2: rgba(21, 182, 255, 0.18);
  --hero-gradient-spot-1: rgba(77, 117, 255, 0.22);
  --hero-gradient-spot-2: rgba(49, 180, 255, 0.2);
  color-scheme: dark;
}

body.theme-dark.theme-prism {
  --hero-gradient-spot-1: rgba(31, 195, 138, 0.28);
  --hero-gradient-spot-2: rgba(81, 226, 175, 0.22);
}

body.theme-dark.theme-guardian {
  --hero-gradient-spot-1: rgba(247, 152, 70, 0.3);
  --hero-gradient-spot-2: rgba(255, 192, 93, 0.24);
}

body.theme-dark .skip-link {
  border-color: rgba(228, 236, 255, 0.8);
  background: rgba(10, 18, 34, 0.98);
  color: #edf3ff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

body.theme-dark main#main-content:focus {
  outline-color: #e9efff;
}

body.theme-dark .header {
  background: rgba(8, 14, 28, 0.88);
  border-bottom-color: rgba(153, 179, 255, 0.24);
}

body.theme-dark .brand-level {
  color: rgba(201, 214, 255, 0.72);
}

body.theme-dark .brand-name,
body.theme-dark .brand-rainbow .brand-name,
body.theme-dark .brand-prism .brand-name,
body.theme-dark .brand-guardian .brand-name {
  color: #edf3ff;
}

body.theme-dark .nav-toggle {
  border-color: rgba(153, 179, 255, 0.3);
  background: rgba(17, 28, 52, 0.9);
  color: #e8eeff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.36);
}

body.theme-dark .nav-toggle:hover {
  border-color: rgba(187, 205, 255, 0.48);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.42);
}

body.theme-dark .navlinks a:not(.cta) {
  color: rgba(228, 236, 255, 0.84);
}

body.theme-dark .navlinks a:not(.cta):hover {
  background: rgba(151, 176, 255, 0.12);
  border-color: rgba(151, 176, 255, 0.3);
  color: #f2f6ff;
}

body.theme-dark .navlinks a.active {
  background: rgba(126, 151, 255, 0.28);
  border-color: rgba(167, 190, 255, 0.44);
  color: #f1f5ff;
}

body.theme-dark .lang-switch {
  border-color: rgba(151, 176, 255, 0.26);
  background: rgba(12, 22, 43, 0.84);
}

body.theme-dark .lang-switch-btn {
  color: rgba(223, 232, 255, 0.9);
}

body.theme-dark .lang-switch-btn:hover {
  background: rgba(151, 176, 255, 0.18);
}

body.theme-dark .lang-switch-btn.is-active {
  background: rgba(151, 176, 255, 0.26);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(151, 176, 255, 0.46);
}

body.theme-dark .theme-mode-title {
  color: rgba(198, 212, 252, 0.72);
}

body.theme-dark .theme-mode-switch {
  border-color: rgba(151, 176, 255, 0.42);
  background: rgba(20, 34, 61, 0.88);
}

body.theme-dark .theme-mode-option {
  color: rgba(232, 238, 255, 0.94);
}

body.theme-dark .theme-mode-option:hover {
  border-color: rgba(192, 209, 255, 0.48);
  background: rgba(46, 66, 103, 0.54);
}

body.theme-dark .theme-mode-option.is-active {
  border-color: rgba(192, 209, 255, 0.58);
  background: rgba(76, 104, 156, 0.62);
}

body.theme-dark .theme-mode-option:focus-visible {
  outline-color: #e9efff;
}

body.theme-dark .kicker {
  color: rgba(194, 208, 255, 0.88);
}

body.theme-dark h1,
body.theme-dark .feature-copy h2,
body.theme-dark .feature-copy h3,
body.theme-dark .overview-arguments-title,
body.theme-dark .faq-section h2,
body.theme-dark .faq-section h3,
body.theme-dark .price,
body.theme-dark .video-placeholder-title,
body.theme-dark .faq-item summary {
  color: #edf3ff;
}

body.theme-dark .section p,
body.theme-dark .feature-copy p,
body.theme-dark .lead,
body.theme-dark .callout > p,
body.theme-dark .trial-consent-label,
body.theme-dark .faq-item p,
body.theme-dark .resource-meta,
body.theme-dark label {
  color: rgba(224, 233, 255, 0.78);
}

body.theme-dark .lead,
body.theme-dark .card,
body.theme-dark .product-subnav,
body.theme-dark .callout {
  border-color: rgba(151, 176, 255, 0.24);
  background: rgba(14, 23, 43, 0.8);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34);
}

body.theme-dark .card ul {
  color: rgba(224, 233, 255, 0.78);
}

body.theme-dark .brand-main-logo,
body.theme-dark .footer-logo-link {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

body.theme-dark.home-page .product-card-logo {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 0;
}

body.theme-dark .pricing-intro,
body.theme-dark .pricing-plan-copy,
body.theme-dark .pricing-plan-list,
body.theme-dark .pricing-footnote {
  color: rgba(222, 232, 255, 0.8);
}

body.theme-dark .pricing-plan {
  border-color: rgba(151, 176, 255, 0.28);
  background:
    radial-gradient(120% 92% at 100% 0%, rgba(126, 151, 255, 0.22), transparent 58%),
    linear-gradient(165deg, rgba(17, 28, 52, 0.94), rgba(10, 18, 34, 0.9));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34);
}

body.theme-dark .pricing-plan::before {
  background: linear-gradient(90deg, #7f98ff, #5fb6ff);
}

body.theme-dark .pricing-plan.is-featured {
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.38);
}

body.theme-dark .pricing-plan-label {
  color: #d7e6ff;
  border-color: rgba(151, 176, 255, 0.28);
  background: rgba(15, 25, 47, 0.72);
}

body.theme-dark .pricing-plan.is-featured .pricing-plan-label {
  color: #0f1e3b;
  border-color: rgba(188, 209, 255, 0.72);
  background: linear-gradient(135deg, #eef5ff, #c9ddff);
  box-shadow: 0 8px 18px rgba(88, 124, 213, 0.38);
}

body.theme-dark .pricing-plan h3 {
  color: #edf3ff;
}

body.theme-dark .pricing-capacity {
  color: rgba(224, 233, 255, 0.82);
}

body.theme-dark .pricing-capacity-value {
  color: #edf3ff;
}

body.theme-dark .pricing-plan-live-price {
  color: #edf3ff;
}

body.theme-dark .pricing-plan-live-price.is-muted {
  color: rgba(222, 232, 255, 0.72);
}

body.theme-dark .pricing-footnote a:hover {
  color: #ffffff;
}

body.theme-dark.theme-prism .pricing-plan {
  border-color: rgba(58, 189, 140, 0.34);
  background:
    radial-gradient(120% 92% at 100% 0%, rgba(30, 184, 122, 0.26), transparent 58%),
    linear-gradient(165deg, rgba(11, 36, 29, 0.94), rgba(8, 23, 19, 0.9));
}

body.theme-dark.theme-prism .pricing-plan::before {
  background: linear-gradient(90deg, #35c89a, #53ddb2);
}

body.theme-dark.theme-prism .pricing-plan-label {
  color: #bff3e0;
  border-color: rgba(84, 210, 163, 0.32);
  background: rgba(12, 43, 34, 0.72);
}

body.theme-dark.theme-prism .pricing-plan.is-featured .pricing-plan-label {
  color: #0a3f30;
  border-color: rgba(147, 245, 206, 0.72);
  background: linear-gradient(135deg, #edfff7, #baf6df);
  box-shadow: 0 8px 18px rgba(24, 132, 95, 0.34);
}

body.theme-dark.theme-prism .pricing-capacity {
  color: rgba(199, 243, 226, 0.9);
}

body.theme-dark.theme-prism .pricing-capacity-value {
  color: #d3ffe9;
}

body.theme-dark.theme-prism .pricing-plan-live-price {
  color: #d3ffe9;
}

body.theme-dark.theme-prism .pricing-plan-live-price.is-muted {
  color: rgba(199, 243, 226, 0.76);
}

body.theme-dark.theme-guardian .pricing-plan {
  border-color: rgba(224, 146, 81, 0.34);
  background:
    radial-gradient(120% 92% at 100% 0%, rgba(224, 136, 64, 0.28), transparent 58%),
    linear-gradient(165deg, rgba(48, 28, 14, 0.92), rgba(28, 17, 9, 0.88));
}

body.theme-dark.theme-guardian .pricing-plan::before {
  background: linear-gradient(90deg, #ef9f56, #f5bf7d);
}

body.theme-dark.theme-guardian .pricing-plan-label {
  color: #ffd5ae;
  border-color: rgba(242, 176, 120, 0.44);
  background: rgba(59, 33, 16, 0.74);
}

body.theme-dark.theme-guardian .pricing-plan.is-featured .pricing-plan-label {
  color: #5d2e0a;
  border-color: rgba(255, 212, 170, 0.76);
  background: linear-gradient(135deg, #fff1df, #ffd6ab);
  box-shadow: 0 8px 18px rgba(194, 117, 52, 0.34);
}

body.theme-dark.theme-guardian .pricing-capacity {
  color: rgba(255, 222, 192, 0.92);
}

body.theme-dark.theme-guardian .pricing-capacity-value {
  color: #ffe9cf;
}

body.theme-dark.theme-guardian .pricing-plan-live-price {
  color: #ffe9cf;
}

body.theme-dark.theme-guardian .pricing-plan-live-price.is-muted {
  color: rgba(255, 222, 192, 0.78);
}

body.theme-dark .feature-block + .feature-block::before,
body.theme-dark .overview-feature-separator,
body.theme-dark .divider {
  background: linear-gradient(90deg, transparent, rgba(177, 197, 255, 0.3), transparent);
}

body.theme-dark .feature-visual::before {
  background: radial-gradient(circle at 34% 36%, rgba(126, 151, 255, 0.24), rgba(78, 185, 255, 0.2) 70%, transparent 100%);
}

body.theme-dark .feature-float {
  background: rgba(19, 30, 55, 0.9);
  border-color: rgba(151, 176, 255, 0.25);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
  color: #deebff;
}

body.theme-dark .use-cases-blocks > .feature-block {
  border-color: rgba(76, 168, 135, 0.34);
  background: linear-gradient(165deg, rgba(11, 33, 28, 0.88), rgba(13, 47, 37, 0.78));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
}

body.theme-dark .use-cases-blocks .feature-float {
  border-color: rgba(103, 196, 163, 0.34);
  background: rgba(16, 51, 40, 0.88);
  color: #aef2d8;
}

body.theme-dark .feature-copy p.use-case-context,
body.theme-dark .feature-copy p.use-case-outcome {
  color: rgba(184, 242, 219, 0.9);
}

body.theme-dark .feature-copy p.use-case-outcome strong {
  color: #baf6df;
}

body.theme-dark .overview-section-kicker,
body.theme-dark .video-placeholder-kicker {
  color: rgba(203, 218, 255, 0.84);
}

body.theme-dark .overview-arguments-title {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.26);
}

body.theme-dark .overview-argument {
  border-color: rgba(151, 176, 255, 0.26);
  background:
    radial-gradient(120% 95% at 100% 0%, rgba(126, 151, 255, 0.22), transparent 58%),
    linear-gradient(165deg, rgba(17, 28, 52, 0.94), rgba(10, 18, 34, 0.9));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34);
}

body.theme-dark.theme-prism .overview-argument {
  background:
    radial-gradient(120% 95% at 100% 0%, rgba(30, 184, 122, 0.26), transparent 58%),
    linear-gradient(165deg, rgba(11, 36, 29, 0.94), rgba(8, 23, 19, 0.9));
}

body.theme-dark.theme-prism .overview-argument-kicker::before {
  background: #38d39f;
}

body.theme-dark .overview-argument h3 {
  color: #edf3ff;
}

body.theme-dark.theme-guardian .overview-argument {
  background:
    radial-gradient(120% 95% at 100% 0%, rgba(239, 150, 68, 0.28), transparent 58%),
    linear-gradient(165deg, rgba(44, 29, 15, 0.94), rgba(28, 18, 10, 0.9));
}

body.theme-dark.theme-guardian .overview-argument-kicker::before {
  background: #f6a35d;
}

body.theme-dark .overview-argument-kicker {
  color: rgba(198, 212, 252, 0.74);
}

body.theme-dark .overview-argument p {
  color: rgba(222, 232, 255, 0.8);
}

body.theme-dark .overview-tag {
  color: #d7e6ff;
  border-color: rgba(151, 176, 255, 0.28);
  background: rgba(15, 25, 47, 0.72);
}

body.theme-dark.theme-prism .overview-benefits-block .overview-section-kicker {
  color: rgba(184, 242, 219, 0.88);
}

body.theme-dark.theme-prism .overview-benefits-block .overview-arguments-title {
  color: #e8fff5;
}

body.theme-dark.theme-prism .overview-benefits-block .overview-argument h3 {
  color: #e8fff5;
}

body.theme-dark .security-pillar,
body.theme-dark .security-assurance-card {
  border-color: rgba(151, 176, 255, 0.28);
  background:
    radial-gradient(120% 92% at 100% 0%, rgba(126, 151, 255, 0.22), transparent 58%),
    linear-gradient(165deg, rgba(17, 28, 52, 0.94), rgba(10, 18, 34, 0.9));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34);
}

body.theme-dark.theme-prism .security-pillar,
body.theme-dark.theme-prism .security-assurance-card {
  border-color: rgba(58, 189, 140, 0.34);
  background:
    radial-gradient(120% 92% at 100% 0%, rgba(30, 184, 122, 0.26), transparent 58%),
    linear-gradient(165deg, rgba(11, 36, 29, 0.94), rgba(8, 23, 19, 0.9));
}

body.theme-dark.theme-guardian .security-pillar,
body.theme-dark.theme-guardian .security-assurance-card {
  border-color: rgba(224, 146, 81, 0.34);
  background:
    radial-gradient(120% 92% at 100% 0%, rgba(224, 136, 64, 0.28), transparent 58%),
    linear-gradient(165deg, rgba(48, 28, 14, 0.92), rgba(28, 17, 9, 0.88));
}

body.theme-dark .security-pillar-kicker {
  color: rgba(198, 212, 252, 0.74);
}

body.theme-dark .security-pillar-kicker::before {
  background: #8fa8ff;
}

body.theme-dark.theme-prism .security-pillar-kicker::before {
  background: #3bd5a5;
}

body.theme-dark.theme-guardian .security-pillar-kicker::before {
  background: #efb070;
}

body.theme-dark .security-pillar h3,
body.theme-dark .security-assurance-card h3 {
  color: #edf3ff;
}

body.theme-dark .security-pillar p,
body.theme-dark .security-pillar-list,
body.theme-dark .security-assurance-card p {
  color: rgba(222, 232, 255, 0.8);
}

body.theme-dark.theme-prism .security-pillar p,
body.theme-dark.theme-prism .security-pillar-list,
body.theme-dark.theme-prism .security-assurance-card p {
  color: rgba(199, 243, 226, 0.86);
}

body.theme-dark.theme-guardian .security-pillar h3,
body.theme-dark.theme-guardian .security-assurance-card h3 {
  color: #fff1e3;
}

body.theme-dark.theme-guardian .security-pillar p,
body.theme-dark.theme-guardian .security-pillar-list,
body.theme-dark.theme-guardian .security-assurance-card p {
  color: rgba(255, 228, 204, 0.86);
}

body.theme-dark .security-assurance-tag {
  color: #d7e6ff;
  border-color: rgba(151, 176, 255, 0.28);
  background: rgba(15, 25, 47, 0.72);
}

body.theme-dark.theme-prism .security-assurance-tag {
  color: #bff3e0;
  border-color: rgba(84, 210, 163, 0.32);
  background: rgba(12, 43, 34, 0.72);
}

body.theme-dark.theme-guardian .security-assurance-tag {
  color: #ffd5ae;
  border-color: rgba(242, 176, 120, 0.44);
  background: rgba(59, 33, 16, 0.74);
}

body.theme-dark .video-placeholder {
  border-color: rgba(151, 176, 255, 0.32);
  background: linear-gradient(160deg, rgba(16, 27, 50, 0.95), rgba(10, 18, 34, 0.9));
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.38);
}

body.theme-dark .video-placeholder-meta {
  color: rgba(206, 220, 255, 0.68);
}

body.theme-dark .faq-list {
  border-top-color: rgba(151, 176, 255, 0.28);
}

body.theme-dark .faq-item {
  border-bottom-color: rgba(151, 176, 255, 0.2);
}

body.theme-dark .faq-item summary::after {
  border-color: rgba(151, 176, 255, 0.34);
  color: #edf3ff;
}

body.theme-dark .faq-answer-content ul,
body.theme-dark .faq-answer-content ol,
body.theme-dark .faq-answer-content p {
  color: rgba(218, 229, 255, 0.86);
}

body.theme-dark .faq-answer-content a {
  color: #a8c6ff;
}

body.theme-dark .faq-answer-content code {
  background: rgba(112, 151, 255, 0.2);
}

body.theme-dark .resource-status-error {
  border-color: rgba(236, 97, 108, 0.42);
  background: linear-gradient(135deg, rgba(133, 20, 36, 0.36), rgba(64, 14, 26, 0.4));
}

body.theme-dark .resource-card--prism {
  border-color: rgba(58, 189, 140, 0.34);
  background:
    radial-gradient(120% 95% at 100% 0%, rgba(30, 184, 122, 0.24), transparent 60%),
    rgba(11, 36, 29, 0.9);
}

body.theme-dark .resource-card--guardian {
  border-color: rgba(224, 146, 81, 0.34);
  background:
    radial-gradient(120% 95% at 100% 0%, rgba(224, 136, 64, 0.26), transparent 60%),
    rgba(44, 29, 15, 0.9);
}

body.theme-dark .resource-card h3 {
  color: #edf3ff;
}

body.theme-dark .resource-card .actions .btn {
  border-color: rgba(173, 196, 255, 0.42);
  background: linear-gradient(180deg, rgba(22, 37, 70, 0.98), rgba(16, 28, 54, 0.98));
  color: #f2f7ff;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.32);
}

body.theme-dark .resource-card .actions .btn:visited {
  color: #f2f7ff;
}

body.theme-dark .resource-card .actions .btn:hover {
  border-color: rgba(201, 218, 255, 0.66);
  background: linear-gradient(180deg, rgba(32, 52, 94, 0.99), rgba(22, 37, 70, 0.99));
  color: #ffffff;
}

body.theme-dark .resource-card--prism .actions .btn {
  border-color: rgba(112, 235, 189, 0.54);
  background: linear-gradient(180deg, rgba(13, 64, 50, 0.98), rgba(10, 50, 39, 0.98));
  color: #effff8;
}

body.theme-dark .resource-card--prism .actions .btn:visited {
  color: #effff8;
}

body.theme-dark .resource-card--prism .actions .btn:hover {
  border-color: rgba(151, 246, 209, 0.72);
  background: linear-gradient(180deg, rgba(17, 84, 65, 0.99), rgba(13, 64, 50, 0.99));
  color: #ffffff;
}

body.theme-dark .resource-card--guardian .actions .btn {
  border-color: rgba(255, 194, 141, 0.56);
  background: linear-gradient(180deg, rgba(101, 57, 26, 0.98), rgba(82, 46, 21, 0.98));
  color: #fff2e5;
}

body.theme-dark .resource-card--guardian .actions .btn:visited {
  color: #fff2e5;
}

body.theme-dark .resource-card--guardian .actions .btn:hover {
  border-color: rgba(255, 217, 184, 0.78);
  background: linear-gradient(180deg, rgba(124, 70, 32, 0.99), rgba(101, 57, 26, 0.99));
  color: #ffffff;
}

body.theme-dark .resource-source-pill {
  border-color: rgba(151, 176, 255, 0.34);
  color: rgba(228, 236, 255, 0.9);
  background: rgba(17, 28, 52, 0.84);
}

body.theme-dark .resource-card--prism .resource-source-pill {
  border-color: rgba(84, 210, 163, 0.35);
  color: #bff3e0;
  background: rgba(12, 43, 34, 0.78);
}

body.theme-dark .resource-card--guardian .resource-source-pill {
  border-color: rgba(242, 176, 120, 0.45);
  color: #ffd5ae;
  background: rgba(59, 33, 16, 0.82);
}

body.theme-dark .resource-reader {
  border-color: rgba(151, 176, 255, 0.3);
  background: rgba(14, 23, 43, 0.9);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34);
}

body.theme-dark .resource-reader--prism {
  border-color: rgba(58, 189, 140, 0.34);
  background:
    radial-gradient(120% 95% at 100% 0%, rgba(30, 184, 122, 0.24), transparent 60%),
    rgba(11, 36, 29, 0.9);
}

body.theme-dark .resource-reader--guardian {
  border-color: rgba(224, 146, 81, 0.34);
  background:
    radial-gradient(120% 95% at 100% 0%, rgba(224, 136, 64, 0.26), transparent 60%),
    rgba(44, 29, 15, 0.9);
}

body.theme-dark .resource-reader-head h3,
body.theme-dark .resource-reader-body h3,
body.theme-dark .resource-reader-body h4 {
  color: #edf3ff;
}

body.theme-dark .resource-reader-body p,
body.theme-dark .resource-reader-body ul,
body.theme-dark .resource-reader-body ol {
  color: rgba(218, 229, 255, 0.86);
}

body.theme-dark .resource-reader-body a {
  color: #a8c6ff;
}

body.theme-dark .resource-reader-body code {
  background: rgba(112, 151, 255, 0.2);
}

body.theme-dark .product-subnav-wrap {
  background: linear-gradient(
    180deg,
    rgba(8, 14, 28, 0.9) 0%,
    rgba(8, 14, 28, 0.76) 62%,
    rgba(8, 14, 28, 0.28) 100%
  );
}

body.theme-dark.subnav-collided .product-subnav-wrap {
  background: linear-gradient(
    180deg,
    rgba(8, 14, 28, 0.96) 0%,
    rgba(8, 14, 28, 0.84) 62%,
    rgba(8, 14, 28, 0.42) 100%
  );
}

body.theme-dark .product-subnav {
  border-color: rgba(151, 176, 255, 0.26);
  background: rgba(12, 22, 43, 0.88);
}

body.theme-dark .product-subnav a {
  border-color: rgba(151, 176, 255, 0.2);
  background: rgba(151, 176, 255, 0.08);
  color: rgba(228, 236, 255, 0.86);
}

body.theme-dark .product-subnav a:hover {
  background: rgba(151, 176, 255, 0.16);
}

body.theme-dark .product-subnav a.active {
  border-color: rgba(167, 190, 255, 0.46);
  background: rgba(126, 151, 255, 0.28);
  color: #f1f5ff;
}

body.theme-dark .footer {
  border-top-color: rgba(151, 176, 255, 0.2);
}

body.theme-dark input,
body.theme-dark select,
body.theme-dark textarea {
  border-color: rgba(151, 176, 255, 0.28);
  background: rgba(12, 22, 43, 0.92);
  color: #e8eeff;
}

body.theme-dark input::placeholder,
body.theme-dark textarea::placeholder {
  color: rgba(198, 212, 252, 0.6);
}

body.theme-dark input:focus,
body.theme-dark select:focus,
body.theme-dark textarea:focus {
  border-color: rgba(167, 190, 255, 0.56);
  box-shadow: 0 0 0 4px rgba(103, 132, 235, 0.26);
}

body.theme-dark .form-feedback.is-error {
  color: #ffccd4;
  background: rgba(142, 24, 45, 0.4);
  border-color: rgba(244, 127, 149, 0.45);
}

body.theme-dark .form-feedback.is-success {
  color: #d1ffe4;
  background: rgba(18, 97, 62, 0.36);
  border-color: rgba(62, 199, 138, 0.44);
}

body.theme-dark .btn:focus-visible,
body.theme-dark .navlinks a:not(.cta):focus-visible,
body.theme-dark .navlinks .cta:focus-visible,
body.theme-dark .product-subnav a:focus-visible,
body.theme-dark .theme-toggle:focus-visible {
  outline-color: #e9efff;
}

@media (max-width: 980px) {
  h1 {
    font-size: 55px;
  }

  .hero .trial-form input[type="email"] {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    flex: 1 1 100%;
    min-height: 0;
    padding: 12px;
    font-size: 15px;
  }

  .card,
  .card.span6,
  .card.span8 {
    grid-column: span 12;
  }

  .pricing-plan {
    grid-column: span 12;
  }

  .pricing-plan.is-featured {
    transform: none;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-media-left .feature-copy,
  .feature-media-left .feature-visual {
    order: initial;
  }

  .feature-copy h2,
  .feature-copy h3 {
    font-size: 22px;
  }

  .use-cases-blocks > .feature-block {
    padding: 36px 22px 26px;
  }

  .use-cases-blocks {
    gap: 24px;
  }

  .overview-arguments-grid {
    grid-template-columns: 1fr;
  }

  .overview-argument-main {
    grid-row: auto;
  }

  .security-pillar,
  .security-assurance-card,
  .security-pillar-main,
  .security-assurance-card-main {
    grid-column: span 12;
  }

  .security-pillar-main {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .video-placeholder {
    width: min(100%, 520px);
    min-height: 200px;
    padding: 18px;
  }

  .video-placeholder-title {
    font-size: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

@media (max-width: 720px) {
  .nav {
    flex-direction: row;
    align-items: center;
    position: relative;
    gap: 10px;
  }

  .brand-main-logo-img {
    width: 158px;
  }

  body.nav-js .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .navlinks {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 25;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 34px rgba(23, 19, 42, 0.16);
    backdrop-filter: blur(8px) saturate(150%);
  }

  body.nav-js .navlinks {
    display: none;
  }

  body.nav-js .header.menu-open .navlinks {
    display: flex;
  }

  .navlinks a {
    text-align: left;
    padding: 10px 12px;
  }

  .navlinks .lang-switch {
    align-self: stretch;
    justify-content: flex-start;
    margin: 2px 0;
  }

  .navlinks .lang-switch-btn {
    min-width: 44px;
  }

  .navlinks .cta {
    text-align: center;
  }

  body.nav-open {
    overflow: hidden;
  }

  h1 {
    font-size: 55px;
  }

  .hero-title {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }

  .hero-title-logo {
    order: 1;
    width: min(44%, 190px);
    min-width: 110px;
    max-width: 190px;
    margin-top: 0;
  }

  .hero-title-text {
    order: 2;
    flex: 1 1 auto;
    width: 100%;
  }

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

  .btn {
    width: 100%;
  }

  .product-card-logo {
    max-height: 30px;
  }

  .security-pillar,
  .security-assurance-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .security-pillar-main {
    padding: 20px 16px;
  }

  .security-pillar-list {
    padding-left: 16px;
  }

  .use-cases-blocks > .feature-block {
    padding: 32px 16px 22px;
    border-radius: 18px;
  }

  .use-cases-blocks {
    gap: 18px;
  }

  .feature-copy p.use-case-context {
    font-size: 13px;
  }

  .trial-form {
    flex-direction: column;
    width: 100%;
  }

  .trial-form input[type="email"] {
    width: 100%;
    min-width: 0;
    max-width: none;
    flex: 1 1 auto;
  }

  .video-placeholder {
    min-height: 170px;
    border-radius: 16px;
  }

  .video-placeholder-title {
    font-size: 20px;
  }

  .faq-item summary {
    font-size: 15px;
  }

  .footer {
    padding-top: 28px;
  }

  .footer-sitemap {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body.theme-dark .navlinks {
    border-color: rgba(151, 176, 255, 0.28);
    background: rgba(8, 14, 28, 0.96);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
  }

  body.theme-dark .navlinks .lang-switch {
    border-color: rgba(151, 176, 255, 0.3);
    background: rgba(12, 22, 43, 0.92);
  }
}
