:root {
  --blue-900: #18347f;
  --blue-700: #315cce;
  --blue-600: #3d63e0;
  --blue-500: #5a87ef;
  --blue-100: #eaf0ff;
  --ink: #101828;
  --muted: #667085;
  --border: #e4e7ec;
  --surface: #fff;
  --dark: #0a1022;
  --dark-2: #101a33;
  --display: "Space Grotesk", "Inter", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, monospace;
  --max: 1240px;
  --header: 82px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 12px 30px rgba(16, 24, 40, 0.07);
  --shadow-md: 0 22px 55px rgba(16, 24, 40, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body);
  color: #f5f7fb;
  background: #0b0d10;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body,
a,
button,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  border: 0;
}
img,
video {
  display: block;
  max-width: 100%;
}
:focus-visible {
  outline: 3px solid rgba(61, 99, 224, 0.28);
  outline-offset: 3px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  padding: 0 26px;
  background: rgba(13, 15, 18, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: 0.45s var(--ease);
}
.site-header.scrolled {
  height: 70px;
  background: rgba(13, 15, 18, 0.97);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}
.header-inner {
  width: min(var(--max), 100%);
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 198px;
  position: relative;
  z-index: 2;
}
.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  width: 184px;
  height: 56px;
  overflow: visible;
}
.brand-logo {
  width: 184px;
  height: 56px;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  border-radius: 10px;
  filter: drop-shadow(0 8px 18px rgba(61, 99, 224, 0.08));
}
.brand-wordmark {
  font: 700 1.05rem var(--display);
  white-space: nowrap;
}
.brand-wordmark[hidden] {
  display: none;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: auto;
}
.main-nav a {
  position: relative;
  padding: 10px 0;
  color: #b5bdca;
  font-size: 0.82rem;
  font-weight: 600;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-500));
  transform: translateX(-50%);
  transition: width 0.35s var(--ease);
}
.main-nav a:hover,
.main-nav a.active {
  color: #7da2ff;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 17px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 10px 22px rgba(49, 92, 206, 0.2);
  font-size: 0.8rem;
  font-weight: 700;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border-radius: 12px;
  background: #15181d;
  border: 1px solid #2a2f38;
  cursor: pointer;
  padding: 11px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: #f5f7fb;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  height: 3px;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-700), var(--blue-500));
}
.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section {
  position: relative;
  overflow: clip;
  padding: 132px 0;
}
.section-light {
  background: linear-gradient(180deg, #0d0f12, #111318);
  color: #f5f7fb;
}
.section-dark {
  background:
    radial-gradient(
      circle at 80% 12%,
      rgba(90, 135, 239, 0.14),
      transparent 32%
    ),
    linear-gradient(150deg, var(--dark), var(--dark-2) 52%, #17244a);
  color: #fff;
}
.hero {
  min-height: 920px;
  padding-top: 160px;
  display: grid;
  align-items: center;
}
.hero-layout,
.two-column {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}
.hero-copy {
  max-width: 670px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #cbd9ff;
  font: 700 0.67rem/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow.dark {
  color: #7da2ff;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7aa7ff;
  box-shadow:
    0 0 0 6px rgba(122, 167, 255, 0.11),
    0 0 16px rgba(122, 167, 255, 0.55);
}
h1,
h2,
h3,
p {
  margin: 0;
}
.hero h1,
.subhero h1 {
  margin-top: 20px;
  max-width: 900px;
  font: 700 clamp(3.5rem, 7vw, 7rem)/0.93 var(--display);
  letter-spacing: -0.055em;
}
.hero h1 em,
.subhero h1 em {
  color: #9bbdff;
  font-style: normal;
}
.hero-lead {
  max-width: 630px;
  margin-top: 26px;
  color: #b8c4da;
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 19px;
  border-radius: 13px;
  font-size: 0.83rem;
  font-weight: 700;
  transition: 0.3s var(--ease);
}
.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 16px 34px rgba(54, 96, 205, 0.25);
}
.button-ghost {
  color: #eaf0ff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.button-dark {
  color: #fff;
  background: var(--ink);
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 40px;
  color: #8090ad;
  font: 700 0.65rem var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.section-heading h2,
.section-intro h2 {
  margin-top: 16px;
  font: 700 clamp(2.6rem, 4.5vw, 4.9rem)/0.96 var(--display);
  letter-spacing: -0.05em;
  color: #f5f7fb;
}
.section-dark .section-heading h2,
.section-dark .section-intro h2 {
  color: #fff;
}
.section-heading p,
.section-intro p {
  margin-top: 19px;
  max-width: 680px;
  color: #9aa4b5;
  font-size: 0.98rem;
}
.section-dark .section-heading p,
.section-dark .section-intro p {
  color: #aebad2;
}
.center {
  text-align: center;
}
.center > p {
  margin-left: auto;
  margin-right: auto;
}
.brand-strip-section {
  padding: 28px 0;
  border-block: 1px solid #262a31;
  background: #0e1014;
}
.brand-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.strip-item {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 16px;
  border-left: 1px solid #2a2f38;
  color: #9aa4b5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.62rem;
}
.strip-item b {
  color: var(--blue-600);
  font: 700 0.68rem var(--mono);
}
.process-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-top: 52px;
}
.process-card,
.feature-card,
.pain-card,
.quote-panel,
.security-layer {
  position: relative;
  overflow: hidden;
  border: 1px solid #2b3039;
  border-radius: 18px;
  background: #14171c;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  padding: 26px;
  color: #f5f7fb;
}
.process-card {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
  min-height: 255px;
}
.process-card b {
  display: block;
  margin-top: 52px;
  font: 700 1.2rem var(--display);
}
.process-card p,
.feature-card p,
.pain-card p {
  margin-top: 10px;
  color: #9aa4b5;
  font-size: 0.82rem;
}
.process-card p {
  color: #92a0bb;
}
.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}
.feature-card {
  min-height: 215px;
}
.feature-card > b {
  font: 700 1.08rem var(--display);
}
.feature-card strong {
  display: inline-block;
  margin-top: 20px;
  color: var(--blue-600);
  font: 700 0.63rem var(--mono);
  letter-spacing: 0.08em;
}
.product-grid {
  display: grid;
  grid-template-columns: 1.13fr 0.87fr 0.87fr;
  gap: 14px;
  margin-top: 50px;
}
.product-card {
  position: relative;
  min-height: 640px;
  padding: 21px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.085),
    rgba(255, 255, 255, 0.028)
  );
  transition: 0.5s var(--ease);
}
.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(120, 167, 255, 0.3);
  box-shadow: 0 34px 75px rgba(0, 0, 0, 0.18);
}
.product-card-large {
  min-height: 690px;
}
.product-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-kicker {
  color: #9aa9c9;
  font: 700 0.62rem var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.product-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
}
.product-card h3 {
  margin-top: 23px;
  font: 700 1.45rem var(--display);
}
.product-card p {
  margin-top: 10px;
  color: #98a6c1;
  font-size: 0.82rem;
}
.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: #b9ccff;
  font: 700 0.73rem var(--mono);
}
.showcase-grid,
.page-case-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  margin-top: 50px;
}
.showcase-item,
.page-case-item {
  min-height: 290px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #2a303a;
  background: #11151c;
}
.showcase-item.wide {
  min-height: 600px;
  grid-row: span 2;
}
.security-layout {
  align-items: start;
}
.security-stack {
  display: grid;
  gap: 9px;
}
.security-layer {
  display: grid;
  grid-template-columns: 44px 110px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 82px;
}
.security-layer > b {
  font: 700 0.83rem var(--mono);
  letter-spacing: 0.07em;
}
.security-layer > small {
  color: #9aa4b5;
}
.architecture-card {
  max-width: 940px;
  margin: 55px auto 0;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.arch-row {
  display: grid;
  grid-template-columns: 42px 160px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 70px;
}
.arch-row span,
.arch-row b {
  font: 700 0.7rem var(--mono);
  letter-spacing: 0.08em;
}
.arch-row span {
  color: #7e8db0;
}
.arch-row b {
  color: #e9efff;
}
.arch-row em {
  color: #95a3bf;
  font-size: 0.86rem;
}
.arch-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(120, 167, 255, 0.25),
    rgba(255, 255, 255, 0.04)
  );
  margin-left: 42px;
}
.contact-section {
  background:
    radial-gradient(
      circle at 8% 8%,
      rgba(145, 182, 255, 0.17),
      transparent 25%
    ),
    radial-gradient(
      circle at 92% 86%,
      rgba(255, 255, 255, 0.12),
      transparent 27%
    ),
    linear-gradient(145deg, #2447a5, #365fcb 48%, #79a8ff);
}
.contact-layout {
  grid-template-columns: 0.9fr 1.1fr;
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.contact-links a {
  display: inline-flex;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: 700 0.72rem var(--mono);
}
.contact-direct-email {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  font: 600 0.72rem var(--mono);
}
.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(21, 46, 114, 0.24);
  backdrop-filter: blur(18px);
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 13px;
  background: #111318;
  color: #f5f7fb;
  outline: none;
  padding: 13px 14px;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.form-feedback {
  min-height: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}
.form-feedback.success {
  color: #e4f0ff;
}
.form-feedback.error {
  color: #ffe6e6;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.site-footer {
  padding: 55px 0 25px;
  background: #0b0d10;
  border-top: 1px solid #262a31;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
}
.footer-main p {
  max-width: 420px;
  margin: 15px 0 0;
  color: #9aa4b5;
  font-size: 0.84rem;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-nav a {
  padding: 8px 0;
  color: #9aa4b5;
  font-size: 0.78rem;
  font-weight: 600;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  margin-top: 36px;
  border-top: 1px solid #262a31;
  color: #7f8999;
  font: 600 0.61rem var(--mono);
}
.skip-link {
  position: fixed;
  z-index: 300;
  top: 16px;
  left: 16px;
  padding: 13px 20px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 0.3s var(--ease);
}
.skip-link:focus {
  transform: translateY(0);
}
.subhero {
  min-height: 820px;
  padding-top: 150px;
}
.product-benefit {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}
.product-benefit div {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.product-benefit b {
  color: var(--blue-500);
  font: 700 0.65rem var(--mono);
}
.product-benefit span {
  color: #99a7bf;
  font-size: 0.82rem;
}
.center-callout {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.error-page {
  min-height: calc(100vh - var(--header));
  display: grid;
  align-items: center;
  padding: 190px 0 130px;
  position: relative;
  background: linear-gradient(150deg, var(--dark), var(--dark-2) 52%, #17244a);
  color: #fff;
}
.error-code {
  margin-top: 16px;
  font: 700 clamp(5rem, 16vw, 10rem)/0.85 var(--display);
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #fff, #9bbdff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.error-page h1 {
  margin-top: 16px;
  font: 700 clamp(1.7rem, 3.2vw, 2.5rem)/1.25 var(--display);
}
.error-page p {
  margin-top: 16px;
  color: #b8c4da;
}
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity 0.8s ease,
    transform 1s var(--ease),
    filter 0.8s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal,
.reveal-up {
  transform: translate3d(0, 48px, 0);
}
.reveal-left {
  transform: translate3d(-55px, 20px, 0);
}
.reveal-right {
  transform: translate3d(55px, 20px, 0);
}
.reveal-scale {
  transform: scale(0.94);
}
.visible {
  opacity: 1;
  filter: blur(0);
  transform: none;
}
@media (max-width: 1120px) {
  .hero-layout,
  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-card-large {
    grid-column: 1/-1;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .showcase-grid,
  .page-case-grid {
    grid-template-columns: 1fr 1fr;
  }
  .showcase-item.wide {
    grid-row: auto;
  }
}
@media (max-width: 860px) {
  .site-header {
    padding: 0 17px;
  }
  .main-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav.mobile-open {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px;
    border: 1px solid #2b3039;
    border-radius: 18px;
    background: rgba(13, 15, 18, 0.98);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
  }
  .main-nav.mobile-open a {
    padding: 13px 10px;
    border-bottom: 1px solid #272c34;
    color: #c0c7d2;
  }
  .main-nav.mobile-open a:last-child {
    border-bottom: 0;
  }
  .section-shell {
    width: min(var(--max), calc(100% - 34px));
  }
  .section {
    padding: 102px 0;
  }
  .hero {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 110px;
  }
  .hero h1,
  .subhero h1 {
    font-size: clamp(3.2rem, 11vw, 5.8rem);
  }
  .brand-strip {
    grid-template-columns: 1fr 1fr;
  }
  .feature-grid,
  .process-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-card-large {
    grid-column: auto;
  }
  .showcase-grid,
  .page-case-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-nav {
    justify-content: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .brand-logo-wrap,
  .brand-logo {
    width: 160px;
    height: 48px;
  }
  .brand {
    min-width: 160px;
  }
  .hero h1,
  .subhero h1 {
    font-size: clamp(2.9rem, 13vw, 4.6rem);
  }
  .hero-actions {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .brand-strip,
  .feature-grid,
  .process-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card,
  .product-card-large {
    min-height: auto;
  }
  .security-layer {
    grid-template-columns: 32px 1fr;
  }
  .security-layer small {
    grid-column: 2;
  }
  .arch-row {
    grid-template-columns: 30px 1fr;
  }
  .arch-row em {
    grid-column: 2;
  }
  .contact-form {
    padding: 20px;
  }
  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 320px;
}
.media-frame > video,
.media-frame > img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.media-frame > video {
  position: absolute;
  inset: 0;
  background: #0a1022;
}
.media-frame > img[data-img-fallback] {
  position: relative;
}
.media-frame .media-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  background:
    radial-gradient(
      circle at 70% 25%,
      rgba(90, 135, 239, 0.16),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(242, 246, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    );
  color: #fff;
}
.media-frame .media-fallback[hidden] {
  display: none;
}
.media-frame .media-fallback span,
.video-placeholder span {
  display: block;
  color: #9bbdff;
  font: 700 0.65rem var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.media-frame .media-fallback b,
.video-placeholder b {
  display: block;
  margin-top: 9px;
  color: #fff;
  font: 700 1rem var(--display);
}
.media-controls-note {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(10, 16, 34, 0.72);
  color: #dbe6ff;
  font: 700 0.58rem var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}
.video-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.video-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  border: 1px dashed rgba(61, 99, 224, 0.35);
  border-radius: 22px;
  background: linear-gradient(145deg, #11151c, #0d1016);
}
.video-placeholder b {
  color: #f5f7fb;
}
@media (max-width: 560px) {
  .video-placeholder-grid {
    grid-template-columns: 1fr;
  }
  .media-frame,
  .media-frame > video,
  .media-frame > img {
    min-height: 260px;
  }
}

/* Card pointer halo */
.pain-card,
.feature-card,
.process-card,
.quote-panel,
.security-layer,
.company-points > div,
.product-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pain-card::before,
.feature-card::before,
.process-card::before,
.quote-panel::before,
.security-layer::before,
.company-points > div::before,
.product-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle 190px at var(--mx, 50%) var(--my, 50%),
    rgba(61, 99, 224, 0.18) 0%,
    rgba(61, 99, 224, 0.09) 28%,
    rgba(61, 99, 224, 0.03) 48%,
    transparent 72%
  );
  opacity: 0;
  transform: scale(0.86);
  transition:
    opacity 0.28s ease,
    transform 0.55s var(--ease);
}

.pain-card.is-hovered::before,
.feature-card.is-hovered::before,
.process-card.is-hovered::before,
.quote-panel.is-hovered::before,
.security-layer.is-hovered::before,
.company-points > div.is-hovered::before,
.product-card.is-hovered::before,
.pain-card:hover::before,
.feature-card:hover::before,
.process-card:hover::before,
.quote-panel:hover::before,
.security-layer:hover::before,
.company-points > div:hover::before,
.product-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.pain-card > *,
.feature-card > *,
.process-card > *,
.quote-panel > *,
.security-layer > *,
.company-points > div > *,
.product-card > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .pain-card::before,
  .feature-card::before,
  .process-card::before,
  .quote-panel::before,
  .security-layer::before,
  .company-points > div::before,
  .product-card::before {
    transition: none;
  }
}
