:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: 'Manrope', sans-serif;
}

body[data-page='home'] {
  overflow-x: hidden;
}

html.mobile-nav-open,
body[data-page='home'].mobile-nav-open {
  height: 100%;
  overflow: hidden;
}

body[data-page='home'].mobile-nav-open {
  position: fixed;
  inset: 0;
  width: 100%;
}

.hero-shell {
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.86), transparent 28%),
    radial-gradient(circle at 76% 18%, rgba(206, 242, 255, 0.68), transparent 26%),
    linear-gradient(135deg, #dcedf8 0%, #d1e8f5 32%, #bfe0f4 56%, #c9e2f2 100%);
}

.hero-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(229, 242, 251, 0.42) 0%, rgba(216, 237, 248, 0.04) 24%, rgba(140, 184, 220, 0.1) 100%),
    linear-gradient(90deg, rgba(10, 25, 42, 0.08) 0%, transparent 38%, transparent 100%);
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  pointer-events: none;
}

.ambient-top {
  top: -10%;
  left: 18%;
  width: 24rem;
  height: 24rem;
  background: rgba(255, 255, 255, 0.52);
}

.ambient-left {
  left: -6%;
  bottom: 16%;
  width: 22rem;
  height: 22rem;
  background: rgba(128, 210, 255, 0.18);
}

.ambient-bottom {
  right: 18%;
  bottom: -8%;
  width: 26rem;
  height: 26rem;
  background: rgba(23, 143, 255, 0.18);
}

.hero-video,
.video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-section,
.hero-section > .hero-layout,
.hero-copy-column,
.hero-cards-column {
  position: relative;
  z-index: 2;
}

.hero-video {
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-video-loading {
  position: absolute;
  inset: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(216, 237, 248, 0.92);
  opacity: 1;
  visibility: visible;
  transition: opacity 280ms ease, visibility 280ms ease;
  will-change: opacity;
}

.hero-video-loading.is-instant {
  transition: none;
}

.hero-video-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-video-loading__spinner {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.45);
  border-top-color: #188fff;
  border-right-color: rgba(24, 143, 255, 0.72);
  box-shadow: 0 18px 45px rgba(24, 143, 255, 0.18);
  animation: hero-spinner 0.8s linear infinite;
}

.video-placeholder {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(233, 246, 253, 0.9) 0%, rgba(226, 242, 253, 0.7) 35%, rgba(201, 230, 245, 0.2) 100%),
    radial-gradient(circle at 48% 42%, rgba(45, 137, 255, 0.45), transparent 16%),
    radial-gradient(circle at 48% 56%, rgba(5, 116, 255, 0.85), transparent 18%),
    radial-gradient(circle at 52% 52%, rgba(228, 240, 255, 0.5), transparent 22%);
}

.video-placeholder__glow {
  position: absolute;
  inset: 18% 24% 10%;
  border-radius: 45% 45% 38% 38%;
  background:
    radial-gradient(circle at 50% 32%, rgba(113, 209, 255, 0.88), rgba(22, 133, 255, 0.72) 38%, rgba(6, 39, 106, 0.18) 72%, transparent 74%),
    radial-gradient(circle at 36% 58%, rgba(73, 114, 255, 0.76), transparent 18%),
    radial-gradient(circle at 62% 74%, rgba(255, 252, 252, 0.58), transparent 15%);
  filter: blur(12px);
  opacity: 0.88;
  animation: float-glow 9s ease-in-out infinite alternate;
}

.video-placeholder__grain {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.2;
  mask-image: radial-gradient(circle at 50% 50%, black 36%, transparent 78%);
}

.hero-wordmark {
  letter-spacing: 0.18em;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.3);
}

.hero-title,
[data-hero-copy],
.hero-action,
[data-hero-card],
[data-hero-chip],
[data-hero-header] {
  opacity: 0;
  will-change: transform, opacity;
}

.hero-title {
  clip-path: inset(0 100% 0 0);
}

.hero-nav-shell {
  position: relative;
  z-index: 50;
  border-radius: 999px;
  /* border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 20px 50px rgba(76, 118, 165, 0.12); */
}

.hero-menu-button {
  position: relative;
  z-index: 60;
}

.hero-menu-icon {
  display: inline-flex;
  width: 18px;
  height: 14px;
  flex-direction: column;
  justify-content: space-between;
}

.hero-menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.hero-menu-button.is-open .hero-menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hero-menu-button.is-open .hero-menu-icon span:nth-child(2) {
  opacity: 0;
}

.hero-menu-button.is-open .hero-menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: var(--mobile-nav-top, 5.5rem) 1rem 1rem;
  overflow: hidden;
  background: transparent;
}

.hero-mobile-nav[hidden] {
  display: none !important;
}

.hero-mobile-nav__panel {
  display: flex;
  flex-direction: column;
  width: min(100%, 28rem);
  gap: 0.65rem;
  min-height: 0;
  max-height: var(--mobile-nav-panel-max-height, min(70dvh, 34rem));
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable both-edges;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.76), rgba(223, 240, 251, 0.42));
  padding: 1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 24px 60px rgba(65, 102, 145, 0.18);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  height: auto;
}

.hero-mobile-nav__panel::-webkit-scrollbar {
  width: 10px;
}

.hero-mobile-nav__panel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.hero-mobile-nav__panel::-webkit-scrollbar-thumb {
  background: rgba(31, 61, 93, 0.38);
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.hero-mobile-nav__panel a,
.hero-mobile-nav__panel button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  border: 0;
  padding: 0.95rem 1rem;
  color: #1f3d5d;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.24);
  width: 100%;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}

.hero-mobile-nav__panel {
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 61, 93, 0.38) rgba(255, 255, 255, 0.18);
}

.hero-mobile-nav__cta {
  margin-top: 0.35rem;
  background: linear-gradient(135deg, #1588ff, #0066ff) !important;
  color: white !important;
}

.home-footer {
  position: relative;
  background:
    radial-gradient(circle at 0% 0%, rgba(65, 92, 255, 0.18), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(40, 180, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #071121 0%, #050b17 100%);
  color: #f8fbff;
}

.home-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%),
    radial-gradient(circle at 50% 0%, rgba(70, 91, 255, 0.12), transparent 32%);
  pointer-events: none;
}

.home-footer__inner {
  position: relative;
  z-index: 1;
}

.home-footer__ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(72px);
  opacity: 0.42;
  pointer-events: none;
}

.home-footer__ambient--one {
  top: 4rem;
  left: 8%;
  width: 18rem;
  height: 18rem;
  background: rgba(87, 109, 255, 0.24);
}

.home-footer__ambient--two {
  right: 6%;
  top: 2rem;
  width: 16rem;
  height: 16rem;
  background: rgba(36, 188, 255, 0.18);
}

.home-footer__cta {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(16rem, 0.7fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(175, 209, 255, 0.12);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(17, 29, 49, 0.92), rgba(12, 19, 35, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 80px rgba(3, 9, 20, 0.35);
}

.home-footer__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 227, 150, 0.18);
  background: rgba(33, 64, 57, 0.45);
  color: #d7ffe5;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-footer__eyebrow::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #2dde72;
  box-shadow: 0 0 14px rgba(45, 222, 114, 0.6);
}

.home-footer__title {
  margin: 1.15rem 0 0;
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.home-footer__copy {
  margin: 1rem 0 0;
  max-width: 42rem;
  color: rgba(220, 231, 245, 0.82);
  font-size: 1.02rem;
  line-height: 1.8;
}

.home-footer__cta-actions {
  display: grid;
  gap: 0.9rem;
}

.home-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.75rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.home-footer__button:hover {
  transform: translateY(-1px);
}

.home-footer__button--primary {
  color: #fff;
  background: linear-gradient(90deg, #6c4fff 0%, #22b6ff 100%);
  box-shadow: 0 18px 42px rgba(38, 116, 255, 0.22);
}

.home-footer__button--secondary {
  color: #f4f8ff;
  border: 1px solid rgba(139, 169, 212, 0.16);
  background: rgba(9, 16, 30, 0.82);
}

.home-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.75fr));
  gap: 2rem;
  padding: 2.5rem 0 2rem;
}

.home-footer__brand-copy {
  max-width: 22rem;
  margin: 1.15rem 0 0;
  color: rgba(203, 214, 230, 0.8);
  line-height: 1.85;
}

.home-footer__logo img {
  width: auto;
  max-width: 13rem;
  height: 2.65rem;
  object-fit: contain;
}

.home-footer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.home-footer__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(138, 158, 193, 0.14);
  border-radius: 999px;
  background: rgba(14, 23, 40, 0.75);
  color: #eef5ff;
  font-size: 0.88rem;
  font-weight: 700;
}

.home-footer__nav h3 {
  margin: 0;
  color: #f6fbff;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-footer__nav {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.home-footer__nav a,
.home-footer__bottom-links a {
  color: rgba(213, 224, 240, 0.8);
  text-decoration: none;
  transition: color 180ms ease;
}

.home-footer__nav a:hover,
.home-footer__bottom-links a:hover {
  color: #ffffff;
}

.home-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(119, 140, 177, 0.14);
  color: rgba(176, 190, 212, 0.72);
  font-size: 0.92rem;
}

.home-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.15rem;
}

@keyframes hero-spinner {
  to {
    transform: rotate(360deg);
  }
}

.hero-card-scroller {
  width: 100%;
}

.hero-card-grid {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.card-primary-title {
  font-size: clamp(2rem, 2.5vw, 3rem);
}

.hero-card--security .card-primary-title {
  max-width: none;
  font-size: clamp(1.95rem, 2.2vw, 2.75rem);
  line-height: 1.02;
  text-wrap: balance;
}

.card-feature-title {
  font-size: clamp(1.8rem, 2.2vw, 3rem);
}

.card-feature-copy,
.card-stat-copy {
  font-size: clamp(0.92rem, 0.95vw, 1rem);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.card-stat-value {
  font-size: clamp(3.6rem, 4.8vw, 5.5rem);
}

.glass-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -20px 40px rgba(255, 255, 255, 0.05),
    0 22px 56px rgba(60, 96, 150, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.42) 18%, rgba(154, 220, 255, 0.65) 48%, rgba(255, 255, 255, 0.16) 76%, rgba(255, 255, 255, 0.78));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.98;
}

.glass-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.46), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(136, 218, 255, 0.18), transparent 24%);
  pointer-events: none;
  opacity: 0.9;
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

.glass-card--light {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 255, 0.62) 55%, rgba(202, 231, 255, 0.34) 100%),
    rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.42);
}

.glass-card--ghost {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(128, 190, 255, 0.12) 48%, rgba(137, 210, 255, 0.08) 100%),
    rgba(188, 223, 248, 0.12);
}

.card-shell--tall,
.card-shell--feature,
.card-shell--stat {
  min-height: 210px;
}

.chip-avatars {
  position: relative;
  z-index: 2;
}

.hero-core {
  position: absolute;
  right: 9%;
  bottom: 7%;
  border-radius: 999px;
  filter: blur(10px);
}

.hero-core--main {
  width: 24rem;
  height: 24rem;
  background:
    radial-gradient(circle at 40% 35%, rgba(86, 207, 255, 0.85), rgba(0, 116, 255, 0.82) 42%, rgba(8, 31, 79, 0.12) 72%, transparent 74%);
  opacity: 0.6;
}

.hero-core--halo {
  width: 36rem;
  height: 36rem;
  right: -2%;
  bottom: -4%;
  background: radial-gradient(circle, rgba(97, 177, 255, 0.2), transparent 62%);
}

.icon-badge,
.orb-logo,
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-badge {
  width: 4rem;
  height: 4rem;
  border-radius: 1.5rem;
  font-size: 1.85rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.orb-logo {
  width: 4rem;
  height: 4rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 34% 34%, rgba(208, 238, 255, 0.95), rgba(85, 168, 255, 0.88) 38%, rgba(19, 104, 255, 0.92) 68%, rgba(0, 67, 144, 0.92) 100%);
  box-shadow: 0 10px 28px rgba(51, 134, 255, 0.28);
}

.avatar {
  width: 2.2rem;
  height: 2.2rem;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background-size: cover;
  background-position: center;
}

.avatar-one {
  background: linear-gradient(145deg, #0a1118, #727b88);
}

.avatar-two {
  background: linear-gradient(145deg, #f8c7a2, #734536);
}

.avatar-three {
  background: linear-gradient(145deg, #8b653d, #2f1c14);
}

.avatar-four {
  background: linear-gradient(145deg, #d78b6d, #401d15);
}

@keyframes float-glow {
  0% {
    transform: translate3d(-2%, 0, 0) scale(0.98);
  }

  100% {
    transform: translate3d(2%, -2%, 0) scale(1.02);
  }
}

@media (max-width: 1024px) {
  .hero-shell {
    min-height: 100vh;
  }

  .hero-nav-shell {
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      0 18px 48px rgba(76, 118, 165, 0.14);
  }

  .hero-wordmark {
    font-size: 24vw;
  }

  .video-placeholder__glow {
    inset: 22% 14% 26%;
  }

  .hero-card-grid {
    gap: 0.9rem;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .hero-section {
    padding-top: 8.75rem;
    padding-bottom: 3rem;
  }

  .hero-layout {
    gap: 2.25rem;
  }

  .hero-copy-column,
  .hero-cards-column {
    width: 100%;
  }

  .hero-copy-column {
    display: block;
  }

  .hero-cards-column {
    padding-bottom: 0;
  }

  .hero-title {
    max-width: 8ch;
    font-size: clamp(4.25rem, 9vw, 6.2rem);
    line-height: 0.9;
  }

  [data-hero-copy] {
    max-width: min(40rem, 90%);
  }

  [data-hero-actions] {
    margin-top: 2rem;
  }

  .chip-avatars {
    display: none !important;
  }

  .hero-card-scroller {
    width: 100vw;
    margin-left: -2rem;
    margin-right: -2rem;
    padding: 0 2rem 0.75rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hero-card-scroller::-webkit-scrollbar {
    display: none;
  }

  .hero-card-grid {
    display: flex;
    width: max-content;
    min-width: 100%;
    gap: 1rem;
    padding-right: 2rem;
    align-items: stretch;
  }

  .hero-card {
    width: min(24rem, 72vw);
    min-width: min(24rem, 72vw);
    max-width: none;
    scroll-snap-align: center;
  }

  .hero-card--security {
    min-height: 19rem;
  }

  .hero-card--agent {
    min-height: 19rem;
  }

  .hero-card--stat {
    min-height: 19rem;
  }

  .card-primary-title {
    max-width: 11ch;
    font-size: clamp(2.6rem, 5vw, 3.7rem);
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-card--security .card-primary-title {
    max-width: none;
    font-size: clamp(2.2rem, 4.1vw, 3.1rem);
  }

  .card-feature-title {
    max-width: 9ch;
    font-size: clamp(2.2rem, 4.4vw, 3.1rem);
  }

  .card-feature-copy,
  .card-stat-copy {
    max-width: 24rem;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .card-stat-value {
    font-size: clamp(3.5rem, 7vw, 4.8rem);
  }

  .card-shell--tall,
  .card-shell--feature,
  .card-shell--stat {
    transform: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-nav-shell {
    border-radius: 26px;
    padding: 0.95rem 1rem;
  }

  .hero-nav-shell img {
    width: auto;
    max-width: 12rem;
    height: 2.4rem;
  }

  .hero-title {
    font-size: clamp(3.8rem, 10vw, 5.1rem);
  }

  [data-hero-actions] {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .hero-action {
    width: 100%;
    justify-content: space-between;
  }

  .hero-card--security,
  .hero-card--agent,
  .hero-card--stat {
    min-height: 18rem;
  }
}

@media (min-width: 1280px) {
  .hero-card-grid {
    align-items: end;
    gap: 1rem;
  }

  .card-shell--tall {
    transform: translateY(3.5rem);
  }

  .card-shell--feature {
    transform: translateY(1.5rem);
  }

  .card-shell--stat {
    transform: translateY(1.5rem);
  }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  .hero-card-grid {
    gap: 0.9rem;
  }

  .card-feature-title {
    font-size: clamp(1.85rem, 2vw, 2.5rem);
  }

  .card-feature-copy,
  .card-stat-copy {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .card-stat-value {
    font-size: clamp(3.25rem, 4vw, 4.4rem);
  }
}

@media (max-width: 767px) {
  html,
  body {
    min-height: 100%;
  }

  .hero-shell {
    min-height: auto;
    overflow-y: auto;
  }

  body {
    overflow-x: hidden;
  }

  [data-hero-header] {
    padding-top: 1rem;
  }

  .video-placeholder__glow {
    inset: 26% 6% 38%;
    filter: blur(16px);
  }

  .hero-nav-shell {
    gap: 0.75rem;
    border-radius: 24px;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

  .hero-nav-shell > a {
    min-width: 0;
  }

  .hero-nav-shell img {
    width: auto;
    max-width: min(48vw, 10rem);
    height: 2.25rem;
  }

  .hero-mobile-nav {
    justify-content: stretch;
    padding: var(--mobile-nav-top, 5.5rem) 1rem 1rem;
  }

  .hero-mobile-nav__panel {
    width: 100%;
    max-height: var(--mobile-nav-panel-max-height, calc(100dvh - 6.5rem));
    gap: 0.55rem;
    border-radius: 24px;
    padding: 0.85rem;
  }

  .hero-mobile-nav__panel a,
  .hero-mobile-nav__panel button {
    min-height: 3.25rem;
    padding: 0.85rem 0.95rem;
    font-size: 0.92rem;
  }

  .hero-section {
    padding-top: 6.5rem;
    padding-bottom: 2.5rem;
  }

  .hero-layout {
    gap: 1.75rem;
  }

  .hero-copy-column,
  .hero-cards-column {
    width: 100%;
  }

  .hero-copy-column {
    display: block;
  }

  .hero-title {
    max-width: 8ch;
    font-size: clamp(3rem, 16vw, 4.5rem);
    line-height: 0.9;
    text-wrap: balance;
  }

  [data-hero-copy] {
    max-width: none;
    margin-top: 1rem;
    font-size: 0.98rem;
    line-height: 1.75;
    color: rgba(241, 248, 255, 0.92);
  }

  [data-hero-actions] {
    margin-top: 1.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .hero-action {
    width: 100%;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    font-size: 0.94rem;
  }

  .chip-avatars {
    position: static;
    margin-bottom: 1rem;
    width: 100%;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    border-radius: 24px;
    font-size: 0.86rem;
  }

  .chip-avatars > span {
    min-width: 0;
    line-height: 1.4;
  }

  .hero-card-scroller {
    --hero-card-mobile-width: min(84vw, 320px);
    --hero-card-mobile-tail-space: max(1rem, calc(100vw - var(--hero-card-mobile-width) - 1rem));
    width: 100%;
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 0 1rem 0.5rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x proximity;
    scroll-padding-left: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
  }

  .hero-card-scroller::-webkit-scrollbar {
    display: none;
  }

  .hero-card-grid {
    width: max-content;
    min-width: 100%;
    margin-top: 0.5rem;
    padding-right: var(--hero-card-mobile-tail-space);
    align-items: stretch;
  }

  .hero-card-scroller.is-dragging {
    cursor: grabbing;
  }

  .hero-card-grid > [data-hero-card] {
    width: var(--hero-card-mobile-width);
    min-width: var(--hero-card-mobile-width);
    max-width: none;
    scroll-snap-align: start;
  }

  .hero-card--security > .flex {
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
  }

  .hero-card--security > .flex > :first-child,
  .hero-card--security > .flex > :last-child {
    width: 100%;
  }

  .card-shell--tall,
  .card-shell--feature,
  .card-shell--stat {
    min-height: 220px;
  }

  .card-primary-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .hero-card--security .card-primary-title {
    max-width: none;
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1;
  }

  .card-feature-title {
    font-size: clamp(1.55rem, 8vw, 2.35rem);
  }

  .card-feature-copy,
  .card-stat-copy {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .card-stat-value {
    font-size: clamp(3rem, 18vw, 4.35rem);
  }

  .icon-badge,
  .orb-logo {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.2rem;
  }

  .home-footer {
    padding-top: 3rem;
  }

  .home-footer__cta,
  .home-footer__grid {
    grid-template-columns: 1fr;
  }

  .home-footer__cta {
    gap: 1.4rem;
    padding: 1.35rem;
    border-radius: 1.6rem;
  }

  .home-footer__title {
    max-width: none;
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .home-footer__copy,
  .home-footer__brand-copy {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .home-footer__grid {
    gap: 1.5rem;
    padding-top: 1.8rem;
  }

  .home-footer__nav {
    gap: 0.75rem;
  }

  .home-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-footer__bottom-links {
    justify-content: flex-start;
    gap: 0.9rem;
  }
}

@media (min-width: 768px) and (max-width: 1535px) {
  .hero-mobile-nav {
    padding: var(--mobile-nav-top, 6rem) 2rem 1.5rem;
  }

  .hero-mobile-nav__panel {
    max-height: var(--mobile-nav-panel-max-height, calc(100dvh - 7rem));
  }

  .home-footer__cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-footer__grid {
    grid-template-columns: minmax(0, 1fr) repeat(2, minmax(0, 0.8fr));
  }
}

@media (max-width: 479px) {
  .hero-shell::after {
    background:
      linear-gradient(180deg, rgba(224, 239, 249, 0.52) 0%, rgba(216, 237, 248, 0.1) 26%, rgba(116, 164, 205, 0.14) 100%),
      linear-gradient(90deg, rgba(10, 25, 42, 0.12) 0%, transparent 42%, transparent 100%);
  }

  .hero-title {
    font-size: clamp(2.7rem, 15vw, 3.7rem);
  }

  .chip-avatars {
    align-items: flex-start;
  }

  .hero-card-grid > [data-hero-card] {
    width: min(calc(100vw - 2.25rem), 320px);
    min-width: min(calc(100vw - 2.25rem), 320px);
  }
}