*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  color: var(--black);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 113, 227, 0.08), transparent 28%),
    radial-gradient(
      circle at 88% 14%,
      rgba(184, 195, 232, 0.22),
      transparent 34%
    ),
    linear-gradient(180deg, #fbfbfd 0%, #f5f7fb 42%, #eef2f8 100%);
  --ui-fg: #f5f5f7;
  --ui-surface: rgba(15, 30, 55, 0.48);
  --ui-border: rgba(255, 255, 255, 0.18);
  --ui-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  transition:
    background-color 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 26px;
}
.nav-links a {
  text-decoration: none;
  padding-bottom: 2px;
  transition:
    color 0.2s,
    border-color 0.2s;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-bottom: 0;
  color: rgba(29, 29, 31, 0.56);
}
.nav-links a:hover {
  color: rgba(255, 255, 255, 1);
  border-bottom-color: rgba(255, 255, 255, 0.4);
}
.nav-links a.active {
  color: rgba(255, 255, 255, 1);
  border-bottom-color: rgba(255, 255, 255, 0.4);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.hamburger {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  display: none;
  background: rgba(29, 29, 31, 0.06);
  border: 1px solid rgba(29, 29, 31, 0.08);
}
.hamburger span {
  width: 14px;
  height: 1.5px;
  display: block;
  border-radius: 2px;
  background: var(--black);
  transition:
    transform 0.22s ease,
    opacity 0.18s ease;
}
@media (max-width: 700px) {
  .nav-links {
    display: none;
  }
  .nav-right {
    gap: 6px;
  }
}
.morph-logo {
  white-space: nowrap;
  will-change: font-size, top, left, letter-spacing, color;
  font-weight: 700;
  filter: none;
  display: none;
  position: static;
  left: auto;
  top: auto;
  transform: none;
  font-size: 22px;
  line-height: 1;
  color: var(--black);
  z-index: auto;
  pointer-events: auto;
  letter-spacing: -0.055em;
}
@media (max-width: 700px) {
  .morph-logo {
    left: 22px;
    top: 50px;
  }
}
.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--noise-url);
  background-repeat: repeat;
  background-size: 200px 200px;
  background:
    radial-gradient(
      ellipse 60% 44% at 50% 26%,
      rgba(184, 195, 232, 0.1),
      transparent 58%
    ),
    radial-gradient(
      ellipse 72% 54% at 48% 92%,
      rgba(45, 95, 90, 0.16),
      transparent 62%
    );
  opacity: 0.018;
  pointer-events: none;
  content: none;
  display: none;
}
.hero-reg {
  position: absolute;
  line-height: 1;
  color: rgba(29, 29, 31, 0.42);
  top: calc(var(--nav-h) + 42px);
  right: 58px;
  font-size: 18px;
  font-weight: 600;
}
.hero-brand {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-brand h1 {
  font-size: clamp(80px, 20.6vw, 380px);
  line-height: 0.88;
  color: var(--black);
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: -0.075em;
  visibility: hidden;
}
.hero-tagline {
  align-items: center;
  gap: 8px;
  justify-content: center;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: center;
  display: block;
  width: auto;
  max-width: 980px;
  margin: 0 auto clamp(18px, 2vw, 28px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: clamp(15px, 1.5vw, 22px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.5;
  margin-bottom: var(--hero-rhythm);
  color: rgba(245, 245, 247, 0.76);
  -webkit-text-fill-color: rgba(245, 245, 247, 0.76);
}
.hero-tagline::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--btn);
  animation: hero-pulse 2.2s ease-in-out infinite;
  display: none;
}
@keyframes hero-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.7);
  }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245, 245, 247, 0.55);
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(184, 195, 232, 0.7);
  animation: hero-pulse 2.2s ease-in-out infinite;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  transform: none;
  margin-bottom: 28px;
}
.hero-trust {
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: rgba(245, 245, 247, 0.48);
  -webkit-text-fill-color: rgba(245, 245, 247, 0.48);
  transform: none;
}
.product-video-wrap {
  line-height: 0;
  box-shadow: var(--glass-shadow), var(--glass-inset);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  position: relative;
  margin: 0 auto clamp(76px, 7vw, 104px);
  border-radius: clamp(30px, 3vw, 46px);
  align-items: center;
  justify-content: center;
  --product-frame-pad: clamp(18px, 1.8vw, 30px);
  width: min(1180px, calc(100vw - 160px));
  max-width: 1180px;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  padding: var(--product-frame-pad);
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 255, 255, 0.78)
  );
  border: 1px solid rgba(255, 255, 255, 0.78);
  margin-bottom: clamp(72px, 7vw, 104px);
}
.btn-pill {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  background: var(--btn);
  border: 1px solid rgba(0, 113, 227, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow:
    0 16px 36px rgba(0, 113, 227, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  padding: 13px 24px;
}
.btn-pill:hover {
  background: #0077ed;
  transform: translateY(-1px);
  box-shadow:
    0 22px 52px rgba(0, 113, 227, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-pill-ghost {
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.2s;
  color: var(--btn);
  background: transparent;
  border: 0;
  box-shadow: none;
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 10px;
}
.product-section {
  padding: 100px 48px;
  position: relative;
  z-index: 1;
  margin-top: -1px;
  padding-top: clamp(108px, 8vw, 132px);
}
.product-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: var(--noise-url);
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0;
}
.product-section > * {
  position: relative;
  z-index: 1;
}
.section-label {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--btn);
  margin-bottom: 28px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(45, 95, 90, 0.08);
  border: 1px solid rgba(45, 95, 90, 0.2);
}
.section-label::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--btn);
}
.product-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
@media (max-width: 700px) {
  .product-header {
    grid-template-columns: 1fr;
  }
}
.product-header h2 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 0.95;
  color: var(--black);
}
.product-header-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 700px;
  margin: 24px auto 0;
  align-items: center;
  gap: 18px;
}
.product-header-right p {
  font-size: 16px;
  color: rgba(13, 13, 13, 0.6);
  line-height: 1.75;
}
.infra-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  width: fit-content;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 2px 10px rgba(13, 13, 13, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: rgba(13, 13, 13, 0.55);
}
.infra-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--btn);
}
.p-tab {
  flex: 1;
  background: transparent;
  border: none;
  font-family: var(--font);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
  padding: 15px 16px;
  color: #6e6e73;
  font-size: 13px;
}
.p-tab:hover {
  color: var(--black);
}
.agent-status {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: #86868b;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.agent-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ccc;
  transition: background 0.3s;
}
.agent-status.live::before {
  background: var(--btn);
  box-shadow: 0 0 6px rgba(45, 95, 90, 0.4);
  animation: pulse 2s infinite;
}
.agent-status.talk::before {
  background: var(--btn);
  box-shadow: 0 0 8px rgba(45, 95, 90, 0.4);
  animation: pulse 0.7s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.vis-row {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.42);
}
.tm {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 86%;
}
.tm.ag {
  align-self: flex-start;
}
.tm.us {
  align-self: flex-end;
}
.tm-who {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.tm.us .tm-who {
  color: var(--muted);
  text-align: right;
}
.tm-txt {
  line-height: 1.5;
  border-radius: 18px;
  font-size: 13.5px;
  padding: 10px 14px;
}
.tm.ag .tm-txt {
  border: 1px solid rgba(45, 95, 90, 0.15);
  color: var(--black);
  border-radius: 4px 12px 12px 12px;
  background: #e8f2ff;
  border-color: rgba(0, 113, 227, 0.12);
}
.tm.us .tm-txt {
  border: 1px solid var(--border);
  border-radius: 12px 4px 12px 12px;
  background: #f5f5f7;
  color: rgba(29, 29, 31, 0.68);
}
.tm.partial .tm-txt {
  opacity: 0.5;
}
.call-btn {
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  border: none;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.call-btn.start {
  color: var(--white);
  background: var(--btn);
}
.call-btn.end {
  background: #fbeaea;
  border: 1px solid rgba(200, 50, 50, 0.2);
  color: #b03030;
}
.call-btn.end:hover {
  background: #f5d5d5;
}
.call-btn.loading {
  border: 1px solid rgba(45, 95, 90, 0.2);
  cursor: not-allowed;
  background: #e8f2ff;
  border-color: rgba(0, 113, 227, 0.12);
  color: var(--btn);
}
.marquee-wrap {
  position: relative;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  background: #030405;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  width: clamp(70px, 8vw, 140px);
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #0d0d0d 0%, transparent 100%);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #0d0d0d 0%, transparent 100%);
}
.marquee-track span {
  font-size: clamp(28px, 3.8vw, 52px);
  color: rgba(255, 255, 255, 0.76);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  word-spacing: 0.12em;
  letter-spacing: -0.045em;
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.05;
  padding: 0;
  margin: 0 clamp(22px, 3.2vw, 52px);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.marquee-dot {
  font-size: clamp(10px, 1.5vw, 18px);
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0.55em;
  margin: 0 clamp(10px, 1.6vw, 22px);
  padding: 0;
  letter-spacing: 0;
  word-spacing: 0;
  color: rgba(255, 255, 255, 0.24);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.numbers-section {
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 65% 55% at 18% 55%,
      rgba(45, 95, 90, 0.42),
      transparent 58%
    ),
    radial-gradient(
      ellipse 55% 50% at 82% 30%,
      rgba(184, 195, 232, 0.18),
      transparent 55%
    ),
    radial-gradient(
      ellipse 45% 40% at 50% 100%,
      rgba(139, 126, 200, 0.14),
      transparent 52%
    ),
    #080810;
}
.numbers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--noise-url);
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.035;
}
.industries-section {
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 1), transparent 34%),
    #f5f5f7;
}
.industries-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 700px) {
  .industries-header {
    grid-template-columns: 1fr;
  }
}
.industries-header h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--black);
}
.industries-header p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  align-self: flex-end;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  gap: 16px;
  position: relative;
  z-index: 3;
}
@media (max-width: 960px) {
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}
.ind-card {
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  transition:
    border-color 0.22s,
    background 0.22s,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s;
  cursor: default;
  border-radius: 30px;
  padding: 30px 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.ind-card.plus {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-style: dashed;
}
.ind-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.72),
      rgba(255, 255, 255, 0.18)
    ),
    radial-gradient(
      circle at 30% 20%,
      rgba(0, 113, 227, 0.35),
      transparent 45%
    ),
    rgba(0, 113, 227, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 10px 26px rgba(31, 38, 71, 0.08);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}
.ind-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #0071e3;
}
.ind-card h3 {
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--black);
  font-size: 18px;
  letter-spacing: -0.025em;
}
.ind-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #6e6e73;
}
.ind-plus-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 10px;
}
.build-section {
  padding: 120px 48px;
  position: relative;
  background:
    radial-gradient(
      ellipse 65% 55% at 85% 15%,
      rgba(184, 195, 232, 0.15),
      transparent 55%
    ),
    radial-gradient(
      ellipse 55% 50% at 8% 75%,
      rgba(45, 95, 90, 0.28),
      transparent 55%
    ),
    radial-gradient(
      ellipse 45% 40% at 55% 105%,
      rgba(139, 126, 200, 0.12),
      transparent 52%
    ),
    #090912;
  padding-bottom: clamp(110px, 10vw, 160px);
  padding-left: 48px;
  padding-right: 48px;
  padding-top: clamp(168px, 12vw, 228px);
  overflow: hidden;
}
.build-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: var(--noise-url);
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.035;
}
.build-section > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 700px) {
  .build-inner {
    grid-template-columns: 1fr;
  }
}
.build-inner h2 {
  font-weight: 800;
  letter-spacing: -2px;
  color: #f5f5f7;
  margin-top: 0;
  margin-bottom: 28px;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(44px, 4.9vw, 74px);
  line-height: 0.98;
}
.build-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.8;
  margin-bottom: 16px;
}
.build-list {
  list-style: none;
  margin-bottom: 36px;
  margin-top: 0;
  border-top: 0;
  padding: 22px 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(32px) saturate(170%);
  -webkit-backdrop-filter: blur(32px) saturate(170%);
}
.build-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(245, 245, 247, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 16px 0;
}
.build-list li::before {
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  padding-top: 2px;
  color: var(--btn);
  content: "+";
}
.build-section .section-label {
  background: rgba(184, 195, 232, 0.1);
  border-color: rgba(184, 195, 232, 0.22);
  color: rgba(184, 195, 232, 0.9);
}
.build-section .section-label::before {
  background: rgba(184, 195, 232, 0.9);
}
.build-timeline {
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 28px 70px rgba(0, 0, 0, 0.34);
  margin-top: 18px;
}
.build-timeline-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 10px;
}
.build-timeline-value {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(180deg, #fff 20%, rgba(255, 255, 255, 0.66));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.build-timeline-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 6px;
}
.contact-section {
  padding: 120px 48px 100px;
  background:
    radial-gradient(
      ellipse 70% 60% at 15% 85%,
      rgba(45, 95, 90, 0.38),
      transparent 55%
    ),
    radial-gradient(
      ellipse 55% 50% at 88% 18%,
      rgba(184, 195, 232, 0.16),
      transparent 55%
    ),
    radial-gradient(
      ellipse 45% 38% at 50% 50%,
      rgba(139, 126, 200, 0.1),
      transparent 52%
    ),
    #07070f;
  position: relative;
  overflow: hidden;
  padding-top: clamp(188px, 13vw, 248px);
  padding-bottom: clamp(116px, 9vw, 156px);
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: var(--noise-url);
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.035;
}
.contact-section > * {
  position: relative;
  z-index: 1;
}
.contact-headline {
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.87;
  margin: 0 auto 52px;
  font-weight: 700;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.68) 82%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: var(--ls-display);
  margin-top: 0;
  margin-bottom: clamp(42px, 4.5vw, 72px);
  max-width: 1180px;
}
.contact-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  gap: 22px;
  margin-bottom: clamp(62px, 5.6vw, 88px);
}
.cta-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.cta-link:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.5);
}
.contact-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: clamp(62px, 5.4vw, 86px);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: clamp(78px, 8vw, 128px);
  align-items: start;
}
.contact-info h3 {
  font-weight: 700;
  color: #f5f5f7;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}
.contact-info p {
  color: rgba(255, 255, 255, 0.45);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 460px;
}
.contact-email {
  font-size: 18px;
  font-weight: 600;
  color: rgba(184, 195, 232, 0.9);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(184, 195, 232, 0.35);
  padding-bottom: 2px;
  transition:
    color 0.2s,
    border-color 0.2s;
  display: inline-block;
  margin-top: 4px;
}
.contact-email:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  width: 100%;
  justify-self: end;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 14px;
  color: #ffffff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  resize: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  min-height: 54px;
  padding: 17px 20px;
  border-radius: 16px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}
.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(41, 151, 255, 0.6);
  box-shadow:
    0 0 0 4px rgba(41, 151, 255, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.contact-form .btn-pill {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  min-height: 58px;
}
.contact-section .section-label {
  background: rgba(184, 195, 232, 0.1);
  border-color: rgba(184, 195, 232, 0.22);
  color: rgba(184, 195, 232, 0.9);
}
.contact-section .section-label::before {
  background: rgba(184, 195, 232, 0.9);
}
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
  background: #000;
}
.footer-logo {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.24);
}
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.product-header,
.industries-header,
.build-inner,
.contact-section {
  position: relative;
  isolation: isolate;
}
.ghost-section-text {
  text-transform: uppercase;
  text-rendering: geometricPrecision;
  opacity: 1;
  position: absolute;
  font-family: var(--font);
  font-weight: 800;
  user-select: none;
  width: min(1080px, calc(100vw - 88px));
  max-width: 1080px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  font-size: clamp(64px, 10.5vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.075em;
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
  text-align: center;
}
.product-header > *,
.industries-header > *,
.build-inner > *,
.contact-section > * {
  position: relative;
  z-index: 1;
}
.contact-section .ghost-section-text {
  z-index: 0;
  color: rgba(245, 245, 247, 0.058);
  text-align: center;
  width: min(980px, calc(100vw - 96px));
  max-width: 980px;
  font-size: clamp(68px, 10.5vw, 166px);
  top: clamp(42px, 4.6vw, 78px);
}
.contact-section > *:not(.ghost-section-text) {
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .contact-section {
    padding-top: clamp(118px, 22vw, 170px);
  }
}
@media (max-width: 520px) {
  .ghost-section-text {
    width: 150vw;
    font-size: clamp(62px, 27vw, 150px);
    letter-spacing: -0.09em;
  }
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 2px;
}
:root {
  --white: #ffffff;
  --black: #1d1d1f;
  --muted: rgba(29, 29, 31, 0.58);
  --border: rgba(0, 0, 0, 0.08);
  --btn: #0071e3;
  --nav-h: 54px;
  --surface: #f5f5f7;
  --font:
    "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --glass-bg: rgba(255, 255, 255, 0.56);
  --glass-bg-strong: rgba(255, 255, 255, 0.74);
  --glass-border: rgba(255, 255, 255, 0.68);
  --glass-border-dark: rgba(255, 255, 255, 0.14);
  --glass-shadow:
    0 28px 90px rgba(31, 38, 71, 0.16), 0 8px 24px rgba(31, 38, 71, 0.08);
  --glass-inset:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18);
  --glass-blur: blur(34px) saturate(180%);
  --hero-rhythm: 64px;
  --ls-hero: -0.02em;
  --ls-heading: -0.035em;
  --ls-display: -0.045em;
  --ls-subheading: -0.015em;
  --ls-card-heading: -0.02em;
  --ls-ghost: -0.055em;
  --ls-label: 0.08em;
  --noise-url: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.70' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
html {
  background: var(--surface);
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
.btn-pill-ghost::after,
.cta-link::after {
  content: ">";
}
.btn-pill-ghost:hover {
  background: transparent;
  border-color: transparent;
  color: #005bb5;
  transform: none;
  box-shadow: none;
}
.hero {
  padding: calc(var(--nav-h) + 32px) 48px 44px;
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: clamp(145px, 17vh, 190px);
  padding-bottom: clamp(96px, 12vh, 142px);
  justify-content: flex-start;
  background:
    radial-gradient(
      circle at 18% 10%,
      rgba(255, 197, 168, 0.74),
      transparent 32%
    ),
    radial-gradient(
      circle at 78% 18%,
      rgba(185, 141, 246, 0.64),
      transparent 34%
    ),
    radial-gradient(
      circle at 48% 86%,
      rgba(127, 92, 255, 0.54),
      transparent 44%
    ),
    linear-gradient(180deg, #f7b8b5 0%, #bd95ee 43%, #8069ff 100%);
  position: relative;
  transform: translateZ(0);
  clip-path: none;
  -webkit-clip-path: none;
  overflow: hidden;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: clamp(190px, 20vw, 420px)
    clamp(100px, 8.8vw, 180px);
  border-bottom-right-radius: clamp(190px, 20vw, 420px)
    clamp(100px, 8.8vw, 180px);
  background-clip: border-box;
  box-shadow: none;
  margin-bottom: 0;
  z-index: 2;
}
.hero-left p {
  max-width: min(1100px, 92vw);
  margin: 0 auto 26px;
  margin-top: 0;
  color: #f5f5f7;
  -webkit-text-fill-color: #f5f5f7;
  font-size: clamp(62px, 7.2vw, 104px);
  font-weight: 900;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
  letter-spacing: 0em;
  line-height: 1.05;
  margin-bottom: var(--hero-rhythm);
  position: relative;
  display: inline-block;
  isolation: isolate;
  overflow: visible;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.product-section,
.industries-section {
  padding: 118px 48px;
  overflow: hidden;
  color: #1d1d1f;
  background:
    radial-gradient(
      circle at 14% 0%,
      rgba(255, 191, 166, 0.12),
      transparent 34%
    ),
    radial-gradient(
      circle at 86% 10%,
      rgba(143, 108, 255, 0.1),
      transparent 36%
    ),
    linear-gradient(180deg, #fbf7f2 0%, #f3eee8 48%, #faf6f0 100%);
}
.product-video-wrap video {
  background: #fff;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
  border-radius: max(18px, calc(44px - var(--product-frame-pad)));
  box-shadow:
    0 14px 42px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.section-label,
.infra-tag {
  color: #6e6e73;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 13px;
  font-weight: 600;
}
.section-label::before,
.infra-tag::before {
  background: var(--btn);
}
.product-header,
.industries-header {
  display: block;
  margin: 0 auto 74px;
  position: relative;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  margin-bottom: clamp(54px, 5vw, 78px);
  text-align: center;
  overflow: visible;
}
.product-header h2,
.industries-header h2,
.build-inner h2 {
  color: var(--black);
  font-size: clamp(48px, 6.8vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.product-header-right p,
.industries-header p {
  color: #6e6e73;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}
.p-tab.active {
  color: var(--btn);
  border-bottom-color: var(--btn);
}
.tm.ag .tm-who {
  color: var(--btn);
}
.call-btn.start:hover {
  background: #0077ed;
}
.numbers-section,
.build-section,
.contact-section {
  padding: 128px 48px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% -12%,
      rgba(0, 113, 227, 0.34),
      transparent 32%
    ),
    radial-gradient(
      circle at 14% 82%,
      rgba(96, 165, 250, 0.18),
      transparent 34%
    ),
    radial-gradient(
      circle at 86% 72%,
      rgba(184, 195, 232, 0.14),
      transparent 32%
    ),
    linear-gradient(180deg, #05070c 0%, #080b14 52%, #030405 100%);
  color: #f5f5f7;
}
.numbers-section::before,
.build-section::before,
.contact-section::before {
  opacity: 0.018;
}
.build-section .build-inner h2,
.contact-headline {
  color: #f5f5f7;
}
.build-inner p,
.contact-info p {
  color: rgba(245, 245, 247, 0.58);
}
.build-section .section-label,
.contact-section .section-label {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(245, 245, 247, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.ind-card:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(255, 255, 255, 0.86);
  transform: translateY(-7px) scale(1.01);
  box-shadow:
    0 34px 100px rgba(31, 38, 71, 0.18),
    0 12px 32px rgba(31, 38, 71, 0.1),
    var(--glass-inset);
}
.build-inner,
.contact-grid {
  max-width: 1180px;
  margin: 0 auto;
}
.build-timeline-sub,
.build-timeline-label {
  color: rgba(245, 245, 247, 0.48);
}
.cta-link,
.contact-email {
  color: #2997ff;
  border-color: rgba(41, 151, 255, 0.32);
}
.cta-link:hover,
.contact-email:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
}
@media (max-width: 960px) {
  .top-nav {
    min-width: unset;
    width: min(720px, calc(100vw - 32px));
  }
}
@media (max-width: 700px) {
  .top-nav {
    background: rgba(255, 255, 255, 0.82);
  }
  .hero,
  .product-section,
  .industries-section,
  .numbers-section,
  .build-section,
  .contact-section {
    padding-left: 22px;
    padding-right: 22px;
  }
  .product-video-wrap,
  .ind-card,
  .build-timeline {
    border-radius: 24px;
  }
  .product-header h2,
  .industries-header h2,
  .build-inner h2 {
    font-size: clamp(38px, 12vw, 56px);
  }
  .contact-grid,
  .build-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *:not(.hero-buzz),
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}
.top-nav.scrolled {
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 28px 76px rgba(31, 38, 71, 0.18),
    0 8px 24px rgba(31, 38, 71, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}
.nav-links a:hover,
.nav-links a.active {
  color: rgba(29, 29, 31, 0.92);
  border-bottom-color: rgba(0, 113, 227, 0.4);
}
.hero::before {
  width: min(980px, 78vw);
  transform: translateX(-50%);
  border-radius: 999px;
  filter: blur(34px);
  inset: auto 0 0 0;
  opacity: 0.035;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(170px, 19vh, 280px);
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    ellipse 94% 110% at 50% 100%,
    rgba(238, 245, 255, 0.3) 0%,
    rgba(96, 165, 250, 0.07) 45%,
    rgba(3, 4, 5, 0) 78%
  );
}
.product-section::before,
.industries-section::before {
  content: "";
  position: absolute;
  inset: 32px;
  border-radius: 46px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.48),
      rgba(255, 255, 255, 0.12)
    ),
    radial-gradient(
      circle at 25% 20%,
      rgba(255, 255, 255, 0.6),
      transparent 24%
    );
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0.48;
  pointer-events: none;
  z-index: 0;
}
.product-video-wrap::after {
  content: "";
  position: absolute;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.44),
    transparent 34%,
    rgba(255, 255, 255, 0.16)
  );
  inset: var(--product-frame-pad);
  border-radius: max(18px, calc(44px - var(--product-frame-pad)));
  pointer-events: none;
}
.infra-tag,
.btn-pill-ghost {
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    0 12px 30px rgba(31, 38, 71, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
}
.ind-card,
.build-timeline,
.contact-form input,
.contact-form textarea {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inset);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.tm.ag .tm-txt,
.tm.us .tm-txt {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 8px 22px rgba(31, 38, 71, 0.06);
  backdrop-filter: blur(16px) saturate(170%);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
}
.numbers-section::after,
.build-section::after,
.contact-section::after {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 46px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    ),
    radial-gradient(
      circle at 28% 0%,
      rgba(255, 255, 255, 0.12),
      transparent 28%
    );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
  pointer-events: none;
  z-index: 0;
}
.numbers-section > *,
.build-section > *,
.contact-section > * {
  position: relative;
  z-index: 1;
}
.build-timeline,
.contact-form input,
.contact-form textarea {
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(255, 191, 166, 0.07),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.076),
      rgba(255, 255, 255, 0.028)
    );
  border: 1px solid var(--glass-border-dark);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(32px) saturate(170%);
  -webkit-backdrop-filter: blur(32px) saturate(170%);
  border-color: rgba(255, 255, 255, 0.115);
}
.ghost-section-text.light {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.24);
  color: rgba(29, 29, 31, 0.03);
}
.ghost-section-text.dark {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  color: rgba(245, 245, 247, 0.055);
}
@media (max-width: 700px) {
  .hero-left {
    border-radius: 26px;
  }
  .product-section::before,
  .industries-section::before,
  .numbers-section::after,
  .build-section::after,
  .contact-section::after {
    inset: 12px;
    border-radius: 28px;
  }
}
@keyframes logoOJump {
  0% {
    transform: translateY(0) scaleX(1) scaleY(1);
  }
  18% {
    transform: translateY(2px) scaleX(1.08) scaleY(0.88);
  }
  48% {
    transform: translateY(-10px) scaleX(0.94) scaleY(1.08);
  }
  72% {
    transform: translateY(1px) scaleX(1.03) scaleY(0.96);
  }
  100% {
    transform: translateY(0) scaleX(1) scaleY(1);
  }
}
.top-nav .morph-logo {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  white-space: nowrap;
}
.hero-brand,
.hero-brand h1,
.hero-reg {
  display: none;
}
.hero-left {
  margin-top: 0;
  border-radius: 0;
  position: relative;
  z-index: 2;
  max-width: min(1080px, calc(100vw - 56px));
  margin: 0 auto;
  padding: 0;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: none;
  text-shadow:
    0 22px 66px rgba(0, 0, 0, 0.42),
    0 2px 18px rgba(22, 9, 52, 0.32);
}
.build-inner .section-label {
  display: none;
}
.build-inner > .reveal:first-of-type {
  align-self: start;
  max-width: 520px;
}
.build-inner > .reveal:first-of-type h2 {
  margin-top: 0;
}
.build-inner > .reveal:nth-of-type(2) {
  align-self: start;
  max-width: 560px;
  justify-self: end;
}
.build-list li:first-child {
  padding-top: 0;
}
.build-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
@media (max-width: 960px) {
  .hero {
    padding-top: 104px;
    padding-bottom: 78px;
  }
  .hero-left {
    max-width: calc(100vw - 32px);
  }
}
@media (max-width: 700px) {
  .morph-logo {
    font-size: 20px;
  }
  .hero-left {
    padding: 22px 18px;
  }
  .build-list {
    padding: 20px;
    border-radius: 24px;
  }
}
#product {
  scroll-margin-top: 96px;
  background:
    radial-gradient(
      ellipse 92% 50% at 50% 0%,
      rgba(96, 165, 250, 0.12),
      transparent 62%
    ),
    linear-gradient(180deg, #eef5ff 0%, #f7faff 36%, #eef3fb 100%);
}
@media (max-width: 1100px) {
  .product-video-wrap {
    max-height: calc(100vh - 150px);
  }
  .product-video-wrap video {
    max-height: calc(100vh - 150px);
  }
}
@media (max-width: 700px) {
  .product-video-wrap {
    aspect-ratio: auto;
  }
  .product-video-wrap video {
    max-height: 62vh;
  }
}
.product-section,
.industries-section,
.numbers-section,
.build-section,
.contact-section {
  overflow: hidden;
}
.product-header .ghost-section-text {
  top: clamp(0px, 1.4vw, 18px);
  font-size: clamp(96px, 15vw, 250px);
  color: rgba(29, 29, 31, 0.038);
}
.industries-header .ghost-section-text {
  top: clamp(4px, 1.6vw, 22px);
}
.build-inner {
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
  width: min(1120px, 100%);
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(44px, 5vw, 78px);
  align-items: start;
  position: relative;
  isolation: isolate;
  padding-top: clamp(150px, 10.6vw, 210px);
}
.build-inner > .reveal {
  min-width: 0;
  width: 100%;
  justify-self: stretch;
  align-self: start;
  position: relative;
  z-index: 2;
}
@media (max-width: 960px) {
  .ghost-section-text,
  .product-header .ghost-section-text,
  .build-inner .ghost-section-text {
    font-size: clamp(66px, 19vw, 160px);
    letter-spacing: -0.085em;
  }
  .build-inner > .reveal:first-of-type,
  .build-inner > .reveal:nth-of-type(2) {
    max-width: 100%;
    justify-self: stretch;
  }
}
@media (max-width: 700px) {
  .ghost-section-text,
  .product-header .ghost-section-text,
  .build-inner .ghost-section-text {
    width: 120%;
    font-size: clamp(58px, 22vw, 122px);
    letter-spacing: -0.075em;
  }
}
.top-nav .nav-right {
  flex-shrink: 0;
  min-width: 142px;
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 12px;
  margin: 0;
}
@media (max-width: 1100px) {
  .product-video-wrap {
    width: min(960px, calc(100vw - 72px));
  }
}
@media (max-width: 700px) {
  .product-video-wrap {
    --product-frame-pad: 12px;
    max-height: none;
  }
  .product-video-wrap video,
  .product-video-wrap::after {
    border-radius: 18px;
  }
}
.top-nav {
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: clamp(24px, 3vw, 44px);
  position: fixed;
  top: 22px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 900;
  width: fit-content;
  min-width: unset;
  max-width: calc(100vw - 40px);
  height: 50px;
  padding: 6px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ui-surface);
  border: 1px solid var(--ui-border);
  box-shadow:
    var(--ui-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    top 0.28s ease,
    transform 0.28s ease;
}
.top-nav .nav-links {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: gap 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 900px) {
  .top-nav {
    width: min(720px, calc(100vw - 28px));
    min-width: unset;
    column-gap: 20px;
    padding-left: 22px;
  }
  .hero-corner-logo {
    right: 34px;
  }
}
@media (max-width: 700px) {
  .top-nav {
    display: flex;
    min-width: unset;
    padding-left: 16px;
  }
  .hero-corner-logo {
    right: 24px;
  }
}
.hero-corner-demo {
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s,
    border-color 0.22s,
    background 0.22s;
  position: absolute;
  z-index: 20;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.26);
  top: 28px;
  right: clamp(26px, 4vw, 58px);
  left: auto;
  width: auto;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.018em;
  white-space: nowrap;
  text-decoration: none;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background:
    radial-gradient(
      circle at 28% 18%,
      rgba(95, 165, 255, 0.55),
      transparent 34%
    ),
    radial-gradient(circle at 76% 82%, rgba(0, 34, 78, 0.88), transparent 42%),
    linear-gradient(135deg, #08264a 0%, #063d73 42%, #020814 100%);
  border: 1px solid rgba(205, 229, 255, 0.46);
  box-shadow:
    0 18px 58px rgba(0, 0, 0, 0.3),
    0 8px 26px rgba(0, 113, 227, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(0, 0, 0, 0.42);
}
.hero-corner-demo:hover {
  border-color: rgba(205, 229, 255, 0.5);
  box-shadow:
    0 20px 54px rgba(3, 28, 64, 0.36),
    0 8px 24px rgba(0, 113, 227, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
  transform: translateY(-1px) scale(1.025);
}
@media (max-width: 900px) {
  .top-nav {
    height: 48px;
    padding: 6px 18px;
  }
  .top-nav .nav-links {
    gap: 18px;
  }
  .top-nav .nav-links a {
    font-size: 12px;
  }
  .hero-corner-demo {
    height: 44px;
    padding: 0 18px;
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .hero-corner-logo {
    top: 28px;
    left: 34px;
  }
  .hero-corner-demo {
    top: 24px;
    right: 34px;
  }
}
.hero-corner-logo .logo-o {
  display: inline-block;
  font: inherit;
  letter-spacing: inherit;
}
.hero-corner-logo .logo-io {
  display: inline-block;
  font: inherit;
  color: #1d1d1f;
  -webkit-text-fill-color: #1d1d1f;
  font-size: 0.92em;
  letter-spacing: -0.055em;
  margin-left: 0.04em;
  opacity: 0.96;
}
html,
body,
button,
input,
textarea,
select,
a {
  font-family: var(--font);
}
.product-header .ghost-section-text,
.industries-header .ghost-section-text {
  top: 0;
}
@media (max-width: 960px) {
  .ghost-section-text {
    width: min(760px, calc(100vw - 56px));
    font-size: clamp(58px, 15vw, 136px);
    letter-spacing: -0.078em;
  }
  .build-inner .ghost-section-text,
  .contact-section .ghost-section-text {
    width: min(720px, calc(100vw - 56px));
    font-size: clamp(58px, 16vw, 138px);
    text-align: center;
  }
}
@media (max-width: 700px) {
  .ghost-section-text,
  .build-inner .ghost-section-text,
  .contact-section .ghost-section-text {
    text-align: center;
  }
}
html,
body,
button,
input,
textarea,
select,
a,
.nav-links a,
.btn-pill,
.btn-pill-ghost,
.hero-tagline,
.hero-trust,
.infra-tag,
.agent-status,
.p-tab,
.tm-who,
.build-list li,
.build-timeline-label,
.build-timeline-sub,
.cta-link,
.contact-email,
.footer-links a,
.footer-copy,
.call-btn,
.ind-plus-icon {
  font-family: var(--font);
}
.product-header h2,
.industries-header h2,
.build-inner h2,
.contact-headline {
  font-family: var(--font);
  line-height: 1.04;
  letter-spacing: -0.058em;
  position: relative;
  z-index: 5;
}
.build-inner .ghost-section-text {
  line-height: 0.86;
  color: rgba(245, 245, 247, 0.056);
  z-index: 1;
  top: 0;
  left: 50%;
  width: min(980px, calc(100vw - 96px));
  max-width: 980px;
  transform: translateX(-50%);
  font-size: clamp(70px, 10.5vw, 166px);
  text-align: center;
}
.build-inner > div.reveal:nth-of-type(2) {
  position: relative;
  z-index: 5;
  grid-column: 1;
  justify-self: start;
  align-self: start;
  width: 100%;
  max-width: 540px;
}
.build-inner > div.reveal:nth-of-type(3) {
  position: relative;
  max-width: 560px;
  width: 100%;
  z-index: 5;
  grid-column: 2;
  justify-self: stretch;
  align-self: start;
}
@media (max-width: 960px) {
  .ghost-section-text,
  .build-inner .ghost-section-text,
  .contact-section .ghost-section-text {
    width: min(720px, calc(100vw - 56px));
    font-size: clamp(54px, 15vw, 128px);
    letter-spacing: -0.068em;
  }
  .product-header,
  .industries-header {
    padding-top: clamp(84px, 16vw, 124px);
  }
  .build-section {
    padding-left: 28px;
    padding-right: 28px;
  }
  .build-inner {
    gap: 36px;
    padding-top: clamp(88px, 16vw, 126px);
  }
}
@media (max-width: 700px) {
  .product-header h2,
  .industries-header h2,
  .build-inner h2,
  .contact-headline {
    line-height: 1.08;
    letter-spacing: -0.046em;
  }
  .product-header,
  .industries-header {
    padding-top: clamp(62px, 18vw, 88px);
  }
  .contact-section .ghost-section-text {
    top: 36px;
  }
}
.hero::before,
.hero::after {
  content: none;
  display: none;
}
.hero-corner-logo {
  position: absolute;
  z-index: 20;
  gap: 0;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.34);
  top: 32px;
  left: clamp(26px, 4vw, 58px);
  right: auto;
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 780;
  line-height: 1;
  letter-spacing: -0.075em;
  white-space: nowrap;
  text-decoration: none;
  color: var(--ui-fg, #f5f5f7);
  -webkit-text-fill-color: var(--ui-fg, #f5f5f7);
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
}
.hero-btns .btn-pill-ghost {
  color: #f5f5f7;
  -webkit-text-fill-color: #f5f5f7;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.hero-btns .btn-pill {
  background:
    radial-gradient(
      circle at 28% 18%,
      rgba(150, 210, 255, 0.7),
      transparent 34%
    ),
    linear-gradient(135deg, #0a84ff 0%, #0066cc 45%, #003b7a 100%);
  border: 1px solid rgba(180, 220, 255, 0.42);
}
html,
body {
  overflow-x: hidden;
  background: #eef5ff;
}
body.ui-on-light {
  --ui-fg: #1d1d1f;
  --ui-surface: rgba(255, 255, 255, 0.74);
  --ui-border: rgba(29, 29, 31, 0.08);
  --ui-shadow: 0 18px 58px rgba(31, 38, 71, 0.12);
}
section {
  position: relative;
}
body.ui-scrolled .top-nav {
  transform: translateX(-50%) scale(0.965);
  top: 12px;
  left: clamp(92px, 9vw, 176px);
  right: clamp(92px, 9vw, 176px);
  height: 58px;
  padding: 0 16px 0 26px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.145),
      rgba(255, 255, 255, 0.045)
    ),
    rgba(8, 16, 31, 0.3);
  border-color: rgba(255, 255, 255, 0.17);
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(28px) saturate(138%);
  -webkit-backdrop-filter: blur(28px) saturate(138%);
}
.top-nav .nav-links a {
  font-family: var(--font);
  white-space: nowrap;
  text-shadow: none;
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
  border: 0;
  padding: 0;
  color: rgba(245, 245, 247, 0.76);
  -webkit-text-fill-color: rgba(245, 245, 247, 0.76);
  font-weight: 560;
  transition:
    color 0.42s ease,
    -webkit-text-fill-color 0.42s ease,
    font-size 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}
.top-nav .nav-links a:hover,
.top-nav .nav-links a.active {
  border-bottom-color: currentColor;
  color: rgba(255, 255, 255, 0.96);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.96);
}
.hero-corner-logo,
.hero-corner-demo {
  transition:
    color 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.28s ease,
    opacity 0.28s ease;
  position: fixed;
  z-index: 1200;
  isolation: isolate;
  display: none;
}
body.ui-on-light .hero-corner-logo {
  text-shadow: none;
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(29, 29, 31, 0.07);
  box-shadow:
    0 18px 46px rgba(31, 38, 71, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  color: #1d1d1f;
  -webkit-text-fill-color: #1d1d1f;
}
.hero-corner-logo.logo-jump .logo-o {
  animation: logoOJump 0.58s cubic-bezier(0.2, 0.9, 0.2, 1.25);
}
.hero::before,
.hero::after,
.hero-reg,
.hero-brand {
  content: none;
  display: none;
}
.hero-bottom {
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-tagline::before,
.hero-tagline::after {
  content: none;
  display: none;
}
.product-header > *:not(.ghost-section-text),
.industries-header > *:not(.ghost-section-text) {
  position: relative;
  z-index: 5;
}
.build-list,
.build-timeline {
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .top-nav {
    padding: 6px 18px;
  }
  .top-nav .nav-links {
    gap: 18px;
  }
  .top-nav .nav-links a {
    font-size: 12px;
  }
  .build-inner {
    grid-template-columns: 1fr;
    width: min(720px, 100%);
    max-width: 720px;
  }
  .build-inner > div.reveal:nth-of-type(2),
  .build-inner > div.reveal:nth-of-type(3) {
    grid-column: 1;
    justify-self: stretch;
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .top-nav {
    top: 12px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    transform: none;
  }
  .top-nav .nav-right {
    margin-left: auto;
  }
  .top-nav .hamburger {
    display: flex;
  }
  .ghost-section-text,
  .build-inner .ghost-section-text,
  .contact-section .ghost-section-text {
    width: calc(100vw - 32px);
    font-size: clamp(42px, 17vw, 86px);
    letter-spacing: -0.058em;
  }
  .build-section {
    padding-left: 22px;
    padding-right: 22px;
  }
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: marquee 34s linear infinite;
}
.num24 {
  display: inline-block;
  font-family: var(--font);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings:
    "lnum" 1,
    "tnum" 1,
    "kern" 1;
  letter-spacing: -0.048em;
  line-height: 0.92;
  transform: translateY(0.035em);
  vertical-align: baseline;
}
.marquee-track .num24 {
  line-height: 0.95;
  transform: translateY(0.025em);
  margin-right: 0.03em;
}
@supports (-webkit-text-stroke: 0 transparent) {
  .num24 {
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
  }
}
.top-nav,
.top-nav::before,
.top-nav::after,
.top-nav .nav-links a,
.hero-corner-logo,
.hero-corner-logo .logo-o,
.hero-corner-logo .logo-io,
.hero-corner-demo,
.btn-pill,
.btn-pill-ghost {
  transition:
    color 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-text-fill-color 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-backdrop-filter 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    right 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero,
.product-section,
.marquee-wrap,
.numbers-section,
.industries-section,
.build-section,
.contact-section,
footer {
  transition:
    background 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.marquee-wrap,
.product-video-wrap,
.ind-card,
.build-list,
.build-timeline,
.contact-form input,
.contact-form textarea {
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.top-nav,
.hero-corner-logo,
.hero-corner-demo,
.product-video-wrap,
.ind-card,
.build-list {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}
.ghost-section-text,
.ghost-section-text.light {
  color: transparent;
  background-image: linear-gradient(
    90deg,
    rgba(20, 24, 36, 0.14) 0%,
    rgba(34, 42, 62, 0.16) 16%,
    rgba(18, 53, 112, 0.24) 38%,
    rgba(12, 36, 84, 0.22) 52%,
    rgba(22, 30, 48, 0.16) 72%,
    rgba(28, 32, 40, 0.12) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.9;
  filter: saturate(112%);
}
.product-section .ghost-section-text,
.industries-section .ghost-section-text {
  opacity: 0.74;
}
.product-section .ghost-section-text {
  background-image: linear-gradient(
    90deg,
    rgba(22, 26, 36, 0.12) 0%,
    rgba(39, 48, 69, 0.16) 18%,
    rgba(9, 64, 146, 0.24) 46%,
    rgba(11, 42, 96, 0.21) 58%,
    rgba(23, 28, 40, 0.13) 100%
  );
  top: clamp(-78px, -5.5vw, -46px);
  font-size: clamp(92px, 13vw, 216px);
  line-height: 0.82;
  letter-spacing: -0.08em;
  opacity: 0.46;
  filter: saturate(105%) blur(0px);
  z-index: 1;
}
.industries-section .ghost-section-text,
.industries-section .ghost-section-text.light {
  background-image: linear-gradient(
    90deg,
    rgba(24, 28, 36, 0.11) 0%,
    rgba(44, 51, 68, 0.14) 20%,
    rgba(13, 76, 160, 0.18) 48%,
    rgba(23, 43, 88, 0.17) 62%,
    rgba(26, 30, 38, 0.11) 100%
  );
  opacity: 0.62;
}
@media (max-width: 700px) {
  .ghost-section-text,
  .ghost-section-text.light {
    opacity: 0.56;
  }
}
.product-section .product-header {
  margin-top: 0;
  padding-top: 0;
  position: relative;
  overflow: visible;
  margin-bottom: 80px;
}
.product-section .product-video-wrap {
  margin-top: 0;
  margin-bottom: clamp(74px, 6vw, 104px);
}
@media (max-width: 700px) {
  .product-section .product-header {
    margin-bottom: 34px;
  }
}
.product-section .product-header h2,
.product-section .product-header-right {
  position: relative;
  z-index: 5;
}
.product-section .product-header h2 {
  transform: translateY(clamp(12px, 1.2vw, 22px));
}
.product-section .product-header-right {
  transform: translateY(clamp(10px, 1vw, 18px));
}
@media (max-width: 700px) {
  .product-section .ghost-section-text {
    top: -34px;
    font-size: clamp(64px, 19vw, 96px);
    opacity: 0.36;
  }
  .product-section .product-header h2,
  .product-section .product-header-right {
    transform: translateY(8px);
  }
}
body,
html {
  background: #eef5ff;
}
.product-section::before,
.product-section::after {
  opacity: 0;
}
.hero-corner-logo .logo-o,
.hero-corner-logo .logo-io {
  display: inline-block;
  color: inherit;
  -webkit-text-fill-color: inherit;
}
.hero-bottom,
.hero-left,
.hero-btns,
.hero-trust {
  position: relative;
  z-index: 3;
}
body.ui-scrolled .hero-corner-logo {
  top: 16px;
  transform: translateY(2px) scale(0.96);
}
body.ui-scrolled .hero-corner-demo {
  top: 16px;
  transform: translateY(2px) scale(0.96);
}
@media (max-width: 700px) {
  .hero-corner-logo {
    top: 20px;
    left: 20px;
    font-size: 18px;
  }
  .hero-corner-demo {
    top: 60px;
    right: 20px;
    height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }
}
.nav-brand {
  display: none;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -0.075em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  color: rgba(245, 245, 247, 0.92);
  -webkit-text-fill-color: rgba(245, 245, 247, 0.92);
}
body.ui-on-light .nav-brand {
  color: #1d1d1f;
  -webkit-text-fill-color: #1d1d1f;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 48px 28px 40px;
  background: rgba(4, 6, 14, 0.97);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.24s;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(245, 245, 247, 0.8);
  font-size: 17px;
  font-family: var(--font);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.16);
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
  max-width: 360px;
}
.mobile-menu-nav a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 24px;
  border-radius: 16px;
  font-family: var(--font);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: rgba(245, 245, 247, 0.72);
  text-decoration: none;
  transition:
    background 0.16s,
    color 0.16s;
}
.mobile-menu-nav a:hover,
.mobile-menu-nav a:active {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}
.mobile-menu-divider {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 12px 0 8px;
  flex-shrink: 0;
}
.mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 40px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -0.015em;
  white-space: nowrap;
  text-decoration: none;
  color: #181022;
  -webkit-text-fill-color: #181022;
  background:
    radial-gradient(
      circle at 24% 18%,
      rgba(255, 255, 255, 0.72),
      transparent 32%
    ),
    linear-gradient(135deg, #ffffff 0%, #ffe0d0 32%, #c9b7ff 68%, #8f6cff 100%);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow:
    0 18px 48px rgba(143, 108, 255, 0.3),
    0 8px 24px rgba(255, 191, 166, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(43, 24, 168, 0.18);
}
@media (max-width: 700px) {
  .nav-brand {
    display: inline-flex;
    align-items: center;
  }
  .top-nav {
    justify-content: space-between;
    padding: 7px 10px 7px 18px;
    height: 52px;
  }
  .top-nav .nav-links {
    display: none;
  }
  .top-nav .nav-right {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .hamburger span {
    background: var(--ui-fg);
  }
  .hamburger {
    border-color: var(--ui-border);
  }
  body.ui-scrolled .top-nav {
    transform: none;
    top: 10px;
  }
  .hero-corner-logo,
  .hero-corner-demo {
    display: none;
  }
  .hero-tagline {
    font-weight: 400;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .build-section,
  .contact-section {
    background:
      radial-gradient(
        circle at 50% -12%,
        rgba(0, 113, 227, 0.28),
        transparent 38%
      ),
      radial-gradient(
        circle at 14% 82%,
        rgba(96, 165, 250, 0.14),
        transparent 42%
      ),
      radial-gradient(
        circle at 86% 72%,
        rgba(184, 195, 232, 0.1),
        transparent 38%
      ),
      linear-gradient(180deg, #05070c 0%, #080b14 60%, #030405 100%);
  }
  .contact-headline {
    letter-spacing: -0.055em;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 460px) {
  .ind-card {
    padding: 16px 14px;
    border-radius: 20px;
  }
  .ind-card h3 {
    font-size: 14px;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
  }
  .ind-card p {
    font-size: 12px;
    line-height: 1.5;
  }
  .ind-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    margin-bottom: 10px;
  }
  .ind-icon svg {
    width: 18px;
    height: 18px;
  }
  .ind-plus-icon {
    font-size: 22px;
    margin-bottom: 6px;
  }
}
.hero-left p .buzz-ring {
  display: inline-block;
  position: relative;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transform-origin: 50% 58%;
  will-change: transform;
}
.hero-left .hero-eyebrow {
  transform: none;
  margin-bottom: var(--hero-rhythm);
  font-size: clamp(18px, 2.2vw, 27px);
  font-weight: 600;
  letter-spacing: -0.035em;
  text-transform: none;
  color: rgba(29, 29, 31, 0.72);
}
@media (max-width: 700px) {
  :root {
    --hero-rhythm: 40px;
  }
  .hero-left {
    transform: none;
  }
  .hero-left .hero-eyebrow {
    transform: none;
    margin-bottom: var(--hero-rhythm);
    font-size: clamp(13px, 3.8vw, 17px);
    font-weight: 400;
    letter-spacing: -0.02em;
  }
  .hero-left p {
    letter-spacing: -0.01em;
  }
}
@media (max-width: 700px) {
  .section-label {
    margin-bottom: 20px;
  }
  .product-header,
  .industries-header {
    margin-bottom: 56px;
  }
  .build-inner h2 {
    margin-bottom: 20px;
  }
}
.hero .hero-left .hero-eyebrow {
  color: rgba(245, 245, 247, 0.72);
}
@media (max-width: 700px) {
  .hero {
    clip-path: none;
  }
}
.hero-left p::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(430px, 42vw, 720px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 30% 26%,
      rgba(120, 205, 255, 0.62),
      transparent 24%
    ),
    radial-gradient(
      circle at 68% 30%,
      rgba(115, 124, 255, 0.5),
      transparent 26%
    ),
    radial-gradient(
      circle at 72% 72%,
      rgba(74, 142, 255, 0.46),
      transparent 28%
    ),
    radial-gradient(
      circle at 30% 74%,
      rgba(184, 195, 232, 0.38),
      transparent 30%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.12),
      transparent 58%
    ),
    rgba(18, 62, 118, 0.1);
  box-shadow:
    0 0 80px rgba(0, 113, 227, 0.24),
    0 0 150px rgba(120, 205, 255, 0.1),
    inset 0 0 58px rgba(255, 255, 255, 0.1);
  animation: siriOrbFloat 7.5s ease-in-out infinite alternate;
  opacity: 0.46;
  filter: blur(28px) saturate(135%);
  mix-blend-mode: screen;
}
.hero-left p::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(360px, 36vw, 620px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  z-index: -1;
  pointer-events: none;
  background: conic-gradient(
    from 0deg,
    rgba(77, 163, 255, 0),
    rgba(77, 163, 255, 0.3),
    rgba(170, 124, 255, 0.24),
    rgba(255, 255, 255, 0.18),
    rgba(65, 195, 255, 0.26),
    rgba(77, 163, 255, 0)
  );
  animation:
    siriOrbSpin 12s linear infinite,
    siriOrbPulse 4.8s ease-in-out infinite;
  opacity: 0.42;
  filter: blur(32px) saturate(140%);
  mix-blend-mode: screen;
}
.hero-left p .buzz-ring,
.hero-left p .revenue-gradient {
  position: relative;
  z-index: 2;
  text-shadow:
    0 3px 14px rgba(0, 0, 0, 0.58),
    0 14px 52px rgba(0, 0, 0, 0.72),
    0 0 34px rgba(3, 9, 18, 0.38);
}
@keyframes siriOrbFloat {
  0% {
    border-radius: 50% 48% 52% 50%;
    transform: translate(-50%, -50%) scale(0.985) rotate(0deg);
    filter: blur(18px) saturate(155%);
  }
  35% {
    border-radius: 48% 54% 47% 53%;
    transform: translate(calc(-50% + 8px), calc(-50% - 5px)) scale(1.02)
      rotate(6deg);
    filter: blur(20px) saturate(175%);
  }
  70% {
    border-radius: 54% 47% 53% 48%;
    transform: translate(calc(-50% - 7px), calc(-50% + 6px)) scale(1.045)
      rotate(-5deg);
    filter: blur(17px) saturate(165%);
  }
  100% {
    border-radius: 50% 53% 48% 52%;
    transform: translate(-50%, -50%) scale(1.015) rotate(4deg);
    filter: blur(19px) saturate(170%);
  }
}
@keyframes siriOrbSpin {
  from {
    transform: translate(-50%, -50%) scale(0.94) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) scale(0.94) rotate(360deg);
  }
}
@keyframes siriOrbPulse {
  0%,
  100% {
    opacity: 0.62;
    width: clamp(340px, 35vw, 600px);
  }
  50% {
    opacity: 0.94;
    width: clamp(380px, 38vw, 660px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-left p::before,
  .hero-left p::after {
    animation: none;
  }
}
@media (max-width: 700px) {
  .hero-left p::before {
    width: min(92vw, 430px);
    filter: blur(14px) saturate(150%);
  }
  .hero-left p::after {
    width: min(82vw, 360px);
    filter: blur(18px) saturate(150%);
  }
}
.hero-left p .revenue-gradient {
  display: inline-block;
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(255, 255, 255, 0.98),
      transparent 30%
    ),
    radial-gradient(
      circle at 76% 86%,
      rgba(210, 228, 255, 0.72),
      transparent 42%
    ),
    linear-gradient(
      118deg,
      #ffffff 0%,
      #f6fbff 16%,
      #dff4ff 34%,
      #a9dcff 55%,
      #d7ccff 78%,
      #ffffff 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 3px 14px rgba(0, 0, 0, 0.42),
    0 12px 42px rgba(0, 0, 0, 0.46),
    0 0 22px rgba(170, 220, 255, 0.14);
  filter: drop-shadow(0 0 10px rgba(185, 220, 255, 0.1));
}
.top-nav,
body.ui-scrolled .top-nav,
body.ui-on-light .top-nav {
  position: fixed;
  top: 16px;
  left: 32px;
  right: 32px;
  transform: none;
  width: auto;
  max-width: none;
  min-width: 0;
  height: 74px;
  padding: 0 20px 0 34px;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.22),
      rgba(255, 255, 255, 0.1)
    ),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(32px) saturate(175%);
  -webkit-backdrop-filter: blur(32px) saturate(175%);
}
.top-nav .nav-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  color: #f5f5f7;
  -webkit-text-fill-color: #f5f5f7;
  font-size: 21px;
  font-weight: 820;
  letter-spacing: -0.075em;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
  opacity: 0.96;
  transform: scale(1);
  transform-origin: left center;
  transition:
    transform 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}
.top-island-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-decoration: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -0.02em;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(
      circle at 28% 16%,
      rgba(255, 255, 255, 0.22),
      transparent 34%
    ),
    linear-gradient(135deg, rgba(26, 35, 52, 0.96), rgba(10, 13, 26, 0.96));
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  height: 52px;
  padding: 0 30px;
  transition:
    height 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.42s ease,
    background 0.42s ease;
}
.top-island-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.top-nav .hamburger {
  display: none;
}
@media (max-width: 900px) {
  .top-nav,
  body.ui-scrolled .top-nav,
  body.ui-on-light .top-nav {
    grid-template-columns: 1fr auto;
  }
  .top-nav .nav-links {
    display: none;
  }
  .top-nav .nav-brand {
    font-size: 18px;
  }
  .top-island-cta {
    display: none;
  }
  .top-nav .hamburger {
    display: flex;
  }
}
.top-nav,
body.ui-on-light .top-nav {
  top: 18px;
  left: 32px;
  right: 32px;
  height: 78px;
  padding: 0 22px 0 36px;
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.07)
    ),
    rgba(8, 16, 31, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 24px 76px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(38px) saturate(165%);
  -webkit-backdrop-filter: blur(38px) saturate(165%);
  transition:
    top 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    left 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    right 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-backdrop-filter 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}
body.ui-scrolled .top-nav .nav-brand {
  transform: scale(0.92);
  opacity: 0.88;
}
body.ui-scrolled .top-nav .nav-links {
  gap: 30px;
}
body.ui-scrolled .top-nav .nav-links a {
  font-size: 14px;
  opacity: 0.86;
}
body.ui-scrolled .top-island-cta {
  height: 44px;
  padding: 0 22px;
}
@media (max-width: 900px) {
  .top-nav,
  body.ui-scrolled .top-nav,
  body.ui-on-light .top-nav {
    top: 12px;
    left: 14px;
    right: 14px;
    height: 62px;
    padding: 0 10px 0 20px;
  }
  body.ui-scrolled .top-nav .nav-brand {
    transform: none;
    opacity: 1;
  }
}
.hero-left p .hero-word-cycle {
  justify-items: center;
  align-items: center;
  line-height: 1.05;
  position: relative;
  display: inline-grid;
  grid-template-areas: "word";
  place-items: center;
  width: min(92vw, 8.8em);
  min-height: 1.08em;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  vertical-align: top;
}
.hero-left p .hero-word-cycle .cycle-word {
  display: inline-block;
  white-space: nowrap;
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
  will-change: opacity, transform, filter;
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  grid-area: word;
  position: relative;
  left: auto;
  right: auto;
  justify-self: center;
  text-align: center;
  transform: translate3d(0, 0.18em, 0) scale(0.985);
}
.hero-left p .hero-word-cycle .cycle-word.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}
.hero-left p .hero-word-cycle .cycle-word.is-leaving {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, -0.16em, 0) scale(0.985);
}
.product-video-wrap,
.ind-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.86),
    rgba(246, 238, 230, 0.7)
  );
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 24px 72px rgba(42, 28, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}
.product-section::before,
.product-section::after,
.industries-section::before,
.industries-section::after {
  background: radial-gradient(
    circle at 50% 0%,
    rgba(255, 255, 255, 0.62),
    transparent 52%
  );
}
.build-section,
.contact-section {
  position: relative;
  overflow: hidden;
}
.build-inner > div.reveal,
.contact-section > *:not(.ghost-section-text) {
  position: relative;
  z-index: 5;
}
.build-section .ghost-section-text,
.contact-section .ghost-section-text {
  position: absolute;
  top: clamp(38px, 4.2vw, 72px);
  left: 50%;
  transform: translateX(-50%);
  width: min(1040px, calc(100vw - 96px));
  max-width: 1040px;
  font-size: clamp(72px, 10.8vw, 176px);
  line-height: 0.84;
  letter-spacing: -0.074em;
  text-align: center;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  opacity: 1;
  color: rgba(245, 245, 247, 0.06);
  -webkit-text-fill-color: rgba(245, 245, 247, 0.06);
  background-image: none;
  filter: none;
}
@media (max-width: 700px) {
  .build-section,
  .contact-section {
    padding-top: 132px;
  }
  .build-section .ghost-section-text,
  .contact-section .ghost-section-text {
    top: 38px;
    width: calc(100vw - 32px);
    font-size: clamp(46px, 16vw, 88px);
    letter-spacing: -0.058em;
  }
  .build-inner {
    position: relative;
  }
  .build-inner > div.reveal:nth-of-type(2),
  .build-inner > div.reveal:nth-of-type(3) {
    grid-column: auto;
    max-width: none;
  }
}
.contact-headline,
.contact-row,
.contact-divider,
.contact-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.contact-info {
  max-width: 500px;
  padding-top: 8px;
}
.contact-form textarea {
  min-height: 148px;
  height: 148px;
  padding-top: 18px;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .contact-form {
    justify-self: stretch;
    max-width: none;
  }
  .contact-info {
    max-width: 620px;
  }
}
@media (max-width: 700px) {
  .contact-info p {
    margin-bottom: 26px;
  }
}
.impact-interactive-section {
  position: relative;
  overflow: hidden;
  padding: clamp(132px, 11vw, 188px) 48px clamp(116px, 9vw, 156px);
  background:
    radial-gradient(
      ellipse 72% 58% at 16% 18%,
      rgba(0, 113, 227, 0.18),
      transparent 56%
    ),
    radial-gradient(
      ellipse 58% 46% at 86% 22%,
      rgba(184, 195, 232, 0.16),
      transparent 56%
    ),
    radial-gradient(
      ellipse 52% 48% at 48% 82%,
      rgba(45, 95, 90, 0.16),
      transparent 56%
    ),
    linear-gradient(180deg, #07070f 0%, #050711 54%, #07070f 100%);
}
.impact-interactive-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--noise-url);
  opacity: 0.034;
  z-index: 0;
}
.impact-stage {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}
.impact-header {
  position: relative;
  text-align: center;
  margin-bottom: clamp(58px, 5.8vw, 92px);
}
.impact-header .ghost-section-text {
  top: -72px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: clamp(90px, 13vw, 224px);
  letter-spacing: -0.085em;
  color: rgba(245, 245, 247, 0.055);
  -webkit-text-fill-color: rgba(245, 245, 247, 0.055);
}
.impact-header h2 {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto 24px;
  color: #fff;
  font-size: clamp(54px, 6.7vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 800;
  text-wrap: balance;
}
.impact-header p {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  color: rgba(245, 245, 247, 0.6);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}
@media (max-width: 700px) {
  .impact-interactive-section {
    padding: 104px 22px 90px;
  }
  .impact-header .ghost-section-text {
    top: -46px;
    font-size: clamp(68px, 22vw, 116px);
  }
  .impact-header h2 {
    font-size: clamp(42px, 12vw, 68px);
  }
}
@media (min-width: 1060px) {
  .impact-interactive-section {
    padding-top: clamp(96px, 7.6vw, 132px);
    padding-bottom: clamp(86px, 6.8vw, 122px);
  }
  .impact-header {
    margin-bottom: clamp(34px, 3.4vw, 54px);
  }
  .impact-header .ghost-section-text {
    top: -46px;
    font-size: clamp(86px, 10.8vw, 186px);
  }
  .impact-header h2 {
    max-width: 980px;
    margin-bottom: 18px;
    font-size: clamp(48px, 5.2vw, 86px);
    line-height: 0.94;
  }
  .impact-header p {
    max-width: 720px;
    font-size: clamp(16px, 1.08vw, 19px);
    line-height: 1.48;
  }
}
.impact-interactive-section .impact-header {
  padding-top: clamp(92px, 7.2vw, 132px);
  margin-bottom: clamp(38px, 3.6vw, 58px);
}
.impact-interactive-section .impact-header .ghost-section-text {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: none;
  text-align: center;
  font-size: clamp(96px, 12.4vw, 214px);
  line-height: 0.72;
  letter-spacing: -0.086em;
  opacity: 1;
  color: rgba(245, 245, 247, 0.074);
  -webkit-text-fill-color: rgba(245, 245, 247, 0.074);
  z-index: 1;
}
.impact-interactive-section .impact-header h2 {
  position: relative;
  z-index: 3;
  max-width: 1120px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: clamp(48px, 5.05vw, 88px);
  line-height: 0.94;
}
.impact-interactive-section .impact-header p {
  position: relative;
  z-index: 3;
  max-width: 760px;
  color: rgba(245, 245, 247, 0.66);
  -webkit-text-fill-color: rgba(245, 245, 247, 0.66);
}
@media (min-width: 1400px) {
  .impact-interactive-section {
    padding-top: clamp(88px, 6.8vw, 118px);
  }
  .impact-interactive-section .impact-header {
    padding-top: clamp(96px, 6.8vw, 124px);
  }
}
@media (max-width: 700px) {
  .impact-interactive-section .impact-header {
    padding-top: 86px;
  }
  .impact-interactive-section .impact-header .ghost-section-text {
    top: 4px;
    font-size: clamp(66px, 20vw, 110px);
    letter-spacing: -0.07em;
  }
}
.numbers-section,
.impact-interactive-section,
.build-section,
.contact-section {
  background:
    radial-gradient(
      ellipse 72% 58% at 14% 12%,
      rgba(255, 197, 168, 0.15),
      transparent 56%
    ),
    radial-gradient(
      ellipse 62% 52% at 88% 16%,
      rgba(185, 141, 246, 0.22),
      transparent 56%
    ),
    radial-gradient(
      ellipse 54% 50% at 46% 90%,
      rgba(127, 92, 255, 0.2),
      transparent 58%
    ),
    linear-gradient(180deg, #12062d 0%, #13055f 48%, #12006a 100%);
}
@media (max-width: 700px) {
  .hero {
    background:
      radial-gradient(
        circle at 18% 8%,
        rgba(255, 197, 168, 0.7),
        transparent 36%
      ),
      radial-gradient(
        circle at 84% 20%,
        rgba(185, 141, 246, 0.62),
        transparent 38%
      ),
      linear-gradient(180deg, #f5b5b3 0%, #a987f7 100%);
  }
}
.revenue-gradient,
.hero-word-cycle .cycle-word {
  background: linear-gradient(
    140deg,
    #ffffff 30%,
    rgba(184, 195, 232, 0.78) 76%,
    rgba(45, 95, 90, 0.86) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .btn-pill,
.impact-interactive-section .btn-pill {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.96),
    rgba(232, 236, 248, 0.88)
  );
  color: #07070f;
  -webkit-text-fill-color: #07070f;
  border-color: rgba(255, 255, 255, 0.36);
}
.hero,
.numbers-section,
.impact-interactive-section,
.build-section,
.contact-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      ellipse 72% 62% at 18% 10%,
      rgba(255, 191, 166, 0.18),
      transparent 56%
    ),
    radial-gradient(
      ellipse 58% 48% at 82% 18%,
      rgba(143, 108, 255, 0.24),
      transparent 58%
    ),
    radial-gradient(
      ellipse 80% 58% at 48% 94%,
      rgba(43, 24, 168, 0.42),
      transparent 64%
    ),
    linear-gradient(180deg, #170c22 0%, #160934 42%, #0c0620 100%);
}
.hero::before,
.numbers-section::before,
.impact-interactive-section::before,
.build-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--noise-url);
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.035;
}
.hero::after,
.numbers-section::after,
.impact-interactive-section::after,
.build-section::after,
.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 62% 44% at 50% 6%,
      rgba(255, 230, 215, 0.075),
      transparent 58%
    ),
    radial-gradient(
      ellipse 78% 56% at 50% 96%,
      rgba(95, 64, 255, 0.18),
      transparent 62%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.1));
  opacity: 0.92;
}
.hero > *,
.numbers-section > *,
.impact-interactive-section > *,
.build-section > *,
.contact-section > * {
  position: relative;
  z-index: 1;
}
.hero .revenue-gradient,
.hero .hero-word-cycle .cycle-word {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #f5f5f7;
  -webkit-text-fill-color: #f5f5f7;
}
header .nav {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0.085)
  );
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow:
    0 24px 72px rgba(8, 6, 17, 0.34),
    0 8px 30px rgba(143, 108, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}
.revenue-gradient,
.hero-word-cycle .cycle-word,
.contact-headline,
.build-timeline-value {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #ffe0d0 32%,
    #c9b7ff 68%,
    #8f6cff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.impact-interactive-section .impact-header .ghost-section-text,
.build-section .ghost-section-text,
.contact-section .ghost-section-text {
  color: rgba(255, 255, 255, 0.07);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.07);
}
.btn-pill,
.top-island-cta {
  background:
    radial-gradient(
      circle at 25% 18%,
      rgba(255, 255, 255, 0.42),
      transparent 34%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 227, 255, 0.9));
  color: #181022;
  -webkit-text-fill-color: #181022;
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow:
    0 18px 44px rgba(43, 24, 168, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.btn-pill:hover,
.top-island-cta:hover {
  box-shadow:
    0 24px 58px rgba(43, 24, 168, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}
.contact-email,
.cta-link {
  color: rgba(220, 205, 255, 0.82);
  border-color: rgba(220, 205, 255, 0.28);
}
@media (max-width: 700px) {
  .hero,
  .numbers-section,
  .impact-interactive-section,
  .build-section,
  .contact-section {
    background:
      radial-gradient(
        ellipse 84% 58% at 18% 8%,
        rgba(255, 191, 166, 0.16),
        transparent 58%
      ),
      radial-gradient(
        ellipse 78% 52% at 82% 22%,
        rgba(143, 108, 255, 0.21),
        transparent 58%
      ),
      linear-gradient(180deg, #170c22 0%, #0c0620 100%);
  }
}
.hero-left p,
.hero-left p .hero-word-cycle,
.hero-left p .hero-word-cycle .cycle-word {
  letter-spacing: var(--ls-hero);
}
.product-header h2,
.industries-header h2,
.build-inner h2,
.impact-header h2 {
  letter-spacing: var(--ls-heading);
}
.product-header-right p,
.industries-header p,
.impact-header p,
.build-inner p,
.contact-info p {
  letter-spacing: var(--ls-subheading);
}
.ind-card h3,
.contact-info h3,
.build-timeline-value {
  letter-spacing: var(--ls-card-heading);
}
.ghost-section-text,
.product-header .ghost-section-text,
.industries-header .ghost-section-text,
.impact-header .ghost-section-text,
.build-inner .ghost-section-text,
.build-section .ghost-section-text,
.contact-section .ghost-section-text {
  letter-spacing: var(--ls-ghost);
}
.hero-eyebrow,
.section-label,
.infra-tag,
.build-timeline-label,
.tm-who,
.call-btn,
.btn-pill {
  letter-spacing: var(--ls-label);
}
.ind-card p,
.build-list li,
.contact-form input,
.contact-form textarea,
.cta-link,
.contact-email {
  letter-spacing: -0.005em;
}
@media (max-width: 700px) {
  .hero-left p,
  .hero-left p .hero-word-cycle,
  .hero-left p .hero-word-cycle .cycle-word {
    letter-spacing: -0.018em;
  }
  .product-header h2,
  .industries-header h2,
  .build-inner h2,
  .impact-header h2 {
    letter-spacing: -0.03em;
  }
  .ghost-section-text,
  .product-header .ghost-section-text,
  .industries-header .ghost-section-text,
  .impact-header .ghost-section-text,
  .build-inner .ghost-section-text,
  .build-section .ghost-section-text,
  .contact-section .ghost-section-text {
    letter-spacing: -0.045em;
  }
}
.build-inner .ghost-section-text,
.build-section .ghost-section-text {
  position: absolute;
  left: 50%;
  top: clamp(22px, 2.2vw, 42px);
  transform: translateX(-50%);
  width: 100%;
  max-width: none;
  text-align: center;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
  font-size: clamp(96px, 12.6vw, 230px);
  line-height: 0.72;
  letter-spacing: -0.055em;
  color: rgba(255, 255, 255, 0.105);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.105);
  background-image: none;
}
.build-inner > *:not(.ghost-section-text) {
  position: relative;
  z-index: 2;
}
#build .build-inner h2 {
  max-width: 560px;
  white-space: normal;
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.036em;
}
@media (max-width: 900px) {
  .build-inner {
    padding-top: clamp(112px, 18vw, 154px);
  }
  .build-inner .ghost-section-text,
  .build-section .ghost-section-text {
    top: 24px;
    font-size: clamp(72px, 22vw, 150px);
    letter-spacing: -0.05em;
  }
  .build-inner h2 {
    white-space: normal;
    font-size: clamp(38px, 10vw, 58px);
  }
}
.leakage-calculator-section {
  position: relative;
  overflow: hidden;
}
.leakage-stage {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.leakage-header {
  max-width: 1120px;
  margin: 0 auto clamp(38px, 4vw, 64px);
  text-align: center;
}
.leakage-header p,
.leakage-calculator-intro {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.leakage-calculator-intro {
  margin-top: clamp(42px, 5vw, 78px);
  margin-bottom: clamp(18px, 2vw, 28px);
  text-align: center;
  color: rgba(245, 245, 247, 0.62);
  -webkit-text-fill-color: rgba(245, 245, 247, 0.62);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.58;
  letter-spacing: -0.012em;
}
.leakage-industry-selector {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto clamp(20px, 2.2vw, 32px);
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.072);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}
.leakage-industry-pill,
.leakage-follow-selector button {
  appearance: none;
  border: 0;
  font-family: var(--font);
  cursor: pointer;
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.22s,
    color 0.22s,
    box-shadow 0.22s,
    border-color 0.22s;
}
.leakage-industry-pill {
  padding: 12px 18px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.leakage-industry-pill:hover {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.055);
}
.leakage-industry-pill.is-active {
  color: #181022;
  background:
    radial-gradient(
      circle at 26% 18%,
      rgba(255, 255, 255, 0.42),
      transparent 35%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 227, 255, 0.9));
  box-shadow:
    0 12px 34px rgba(43, 24, 168, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.leakage-card {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 14px;
  padding: 14px;
  margin-top: 0;
  border-radius: clamp(28px, 3vw, 44px);
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(255, 191, 166, 0.08),
      transparent 36%
    ),
    radial-gradient(
      circle at 90% 12%,
      rgba(143, 108, 255, 0.11),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.028)
    );
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
}
.leakage-input-panel,
.leakage-output-panel {
  border-radius: clamp(22px, 2.2vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.105);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.022)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.095);
}
.leakage-input-panel {
  padding: clamp(22px, 2.2vw, 34px);
  display: grid;
  gap: 15px;
}
.leakage-panel-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(220, 205, 255, 0.92);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(238, 219, 255, 0.16);
}
.leakage-panel-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe0d0, #8f6cff);
  box-shadow: 0 0 18px rgba(143, 108, 255, 0.5);
}
.leakage-control,
.leakage-follow-control {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.075);
  transition:
    background 0.22s,
    border-color 0.22s,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.leakage-control:hover,
.leakage-follow-control:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.115);
  transform: translateY(-1px);
}
.leakage-control-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 10px;
}
.leakage-control label,
.leakage-follow-control label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 680;
  line-height: 1.18;
  letter-spacing: -0.018em;
}
.leakage-control-head span {
  flex-shrink: 0;
  color: rgba(220, 205, 255, 0.94);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.leakage-control p {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12.5px;
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.leakage-control input[type="range"] {
  width: 100%;
  appearance: none;
  height: 7px;
  border-radius: 999px;
  outline: none;
  background: linear-gradient(
    90deg,
    #9c7cff var(--leakage-progress, 0%),
    rgba(255, 255, 255, 0.12) var(--leakage-progress, 0%)
  );
}
.leakage-control input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: radial-gradient(
    circle at 35% 25%,
    #ffffff,
    #ffe0d0 36%,
    #8f6cff 100%
  );
  box-shadow:
    0 8px 24px rgba(143, 108, 255, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  cursor: pointer;
}
.leakage-follow-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.leakage-follow-selector button {
  padding: 12px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 680;
  line-height: 1.1;
}
.leakage-follow-selector button span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.36);
}
.leakage-follow-selector button:hover {
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.84);
}
.leakage-follow-selector button.is-active {
  color: #181022;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.96),
    rgba(238, 227, 255, 0.88)
  );
  box-shadow:
    0 12px 30px rgba(43, 24, 168, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.leakage-follow-selector button.is-active span {
  color: rgba(24, 16, 34, 0.62);
}
.leakage-output-panel {
  padding: clamp(22px, 2.2vw, 34px);
  background:
    radial-gradient(
      circle at 18% 10%,
      rgba(255, 191, 166, 0.12),
      transparent 34%
    ),
    radial-gradient(
      circle at 82% 18%,
      rgba(143, 108, 255, 0.18),
      transparent 38%
    ),
    linear-gradient(165deg, rgba(33, 16, 50, 0.72), rgba(7, 4, 18, 0.76));
}
.leakage-output-topline {
  margin-bottom: 18px;
}
.leakage-output-topline span {
  display: inline-flex;
  margin-bottom: 9px;
  color: rgba(220, 205, 255, 0.94);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.leakage-output-topline p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.012em;
}
.leakage-output-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.leakage-output-card {
  min-height: 154px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.078),
    rgba(255, 255, 255, 0.026)
  );
  border: 1px solid rgba(255, 255, 255, 0.105);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.24s,
    background 0.24s;
}
.leakage-output-card:hover {
  transform: translateY(-2px);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.096),
    rgba(255, 255, 255, 0.034)
  );
  border-color: rgba(238, 219, 255, 0.17);
}
.leakage-output-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.leakage-output-card strong {
  display: block;
  margin-bottom: 9px;
  font-size: clamp(30px, 2.9vw, 46px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.055em;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #ffe0d0 34%,
    #c9b7ff 68%,
    #8f6cff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.leakage-output-card p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12.5px;
  line-height: 1.4;
  letter-spacing: -0.006em;
}
.leakage-output-card-total {
  grid-column: 1 / -1;
  min-height: 190px;
  padding: clamp(22px, 2.2vw, 32px);
  background:
    radial-gradient(
      circle at 18% 6%,
      rgba(255, 224, 208, 0.16),
      transparent 38%
    ),
    radial-gradient(
      circle at 82% 16%,
      rgba(143, 108, 255, 0.23),
      transparent 44%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.112),
      rgba(255, 255, 255, 0.04)
    );
  border-color: rgba(238, 219, 255, 0.22);
}
.leakage-output-card-total strong {
  font-size: clamp(48px, 5.6vw, 92px);
  letter-spacing: -0.068em;
}
.leakage-footer {
  max-width: 1180px;
  margin: clamp(48px, 5vw, 84px) auto 0;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 16px;
}
.leakage-footer p {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.44);
  font-size: 12.5px;
  line-height: 1.48;
  letter-spacing: -0.004em;
}
@media (max-width: 1060px) {
  .leakage-card {
    grid-template-columns: 1fr;
  }
  .leakage-output-grid {
    grid-template-columns: 1fr 1fr;
  }
  .leakage-footer {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .leakage-calculator-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .leakage-industry-selector {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  .leakage-industry-pill {
    width: 100%;
  }
  .leakage-input-panel,
  .leakage-output-panel {
    padding: 18px;
    border-radius: 22px;
  }
}
.leakage-comparison {
  max-width: 1180px;
  margin: clamp(52px, 5.5vw, 92px) auto 0;
}
.leakage-comparison-head {
  text-align: center;
  margin-bottom: clamp(14px, 1.8vw, 24px);
}
.leakage-comparison-head span {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(220, 205, 255, 0.9);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.leakage-comparison-head h3 {
  color: #fff;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 0.98;
  font-weight: 760;
  letter-spacing: -0.045em;
}
.leakage-comparison-list {
  display: grid;
  gap: 10px;
}
.leakage-comparison-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 26px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.064),
    rgba(255, 255, 255, 0.024)
  );
  border: 1px solid rgba(255, 255, 255, 0.095);
  box-shadow:
    0 22px 74px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}
.leakage-comparison-label,
.leakage-before,
.leakage-after {
  border-radius: 18px;
  padding: 16px 18px;
}
.leakage-comparison-label {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: -0.01em;
  background: rgba(255, 255, 255, 0.048);
  border: 1px solid rgba(255, 255, 255, 0.075);
}
.leakage-before,
.leakage-after {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13.5px;
  line-height: 1.45;
  letter-spacing: -0.006em;
  border: 1px solid rgba(255, 255, 255, 0.075);
}
.leakage-before {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  filter: saturate(0.6);
}
.leakage-after {
  background:
    radial-gradient(
      circle at 16% 0%,
      rgba(143, 108, 255, 0.34),
      transparent 52%
    ),
    radial-gradient(
      circle at 88% 16%,
      rgba(96, 165, 250, 0.22),
      transparent 54%
    ),
    linear-gradient(140deg, rgba(143, 108, 255, 0.28), rgba(96, 165, 250, 0.1));
  border-color: rgba(196, 178, 255, 0.5);
  color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 22px 56px rgba(91, 64, 255, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.leakage-before span,
.leakage-after span {
  display: block;
  margin-bottom: 7px;
  font-size: 10.5px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.leakage-before span {
  color: rgba(255, 255, 255, 0.32);
}
.leakage-before span::before {
  content: "\2715\00a0";
  opacity: 0.7;
}
.leakage-after span {
  color: #f1ebff;
  text-shadow: 0 0 20px rgba(143, 108, 255, 0.6);
}
.leakage-after span::before {
  content: "\2713\00a0";
  color: #cdbcff;
}
@media (max-width: 880px) {
  .leakage-comparison-row {
    grid-template-columns: 1fr;
  }
  .leakage-comparison-label {
    min-height: 52px;
  }
}
.audio-proof-library {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: clamp(14px, 1.8vw, 26px);
}
.audio-proof-header {
  max-width: 980px;
  margin: 0 auto clamp(36px, 4.2vw, 64px);
  text-align: center;
}
.audio-proof-header h3 {
  color: #1d1d1f;
  font-size: clamp(44px, 5.55vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.058em;
  font-weight: 780;
  text-wrap: balance;
  margin-bottom: 18px;
}
.audio-proof-header p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(29, 29, 31, 0.58);
  font-size: clamp(16px, 1.55vw, 21px);
  line-height: 1.45;
  letter-spacing: -0.026em;
}
.audio-proof-filters {
  width: fit-content;
  max-width: 100%;
  margin: clamp(26px, 3vw, 40px) auto 0;
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    0 18px 52px rgba(35, 25, 60, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(165%);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
}
.audio-proof-filter {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font);
  padding: 11px 16px;
  border-radius: 999px;
  background: transparent;
  color: rgba(29, 29, 31, 0.54);
  font-size: 13px;
  font-weight: 680;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition:
    background 0.22s,
    color 0.22s,
    box-shadow 0.22s,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.audio-proof-filter:hover {
  color: rgba(29, 29, 31, 0.86);
  background: rgba(255, 255, 255, 0.54);
}
.audio-proof-filter.is-active {
  color: #181022;
  background:
    radial-gradient(
      circle at 24% 18%,
      rgba(255, 255, 255, 0.45),
      transparent 36%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 227, 255, 0.9));
  box-shadow:
    0 10px 28px rgba(43, 24, 168, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
.audio-proof-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 14px;
  padding: 14px;
  border-radius: clamp(28px, 3vw, 44px);
  background:
    radial-gradient(
      circle at 8% 0%,
      rgba(255, 191, 166, 0.14),
      transparent 36%
    ),
    radial-gradient(
      circle at 88% 10%,
      rgba(143, 108, 255, 0.13),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.78),
      rgba(255, 255, 255, 0.42)
    );
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    0 34px 110px rgba(35, 25, 60, 0.16),
    0 10px 34px rgba(143, 108, 255, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(30px) saturate(170%);
  -webkit-backdrop-filter: blur(30px) saturate(170%);
  scroll-margin-top: 108px;
}
.audio-proof-feature-main,
.audio-proof-breakdown {
  border-radius: clamp(22px, 2.2vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.38)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}
.audio-proof-feature-main {
  padding: clamp(24px, 2.8vw, 42px);
}
.audio-proof-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(18px, 2vw, 26px);
}
.audio-proof-industry,
.audio-proof-duration,
.audio-proof-panel-label,
.audio-proof-card-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.audio-proof-industry {
  padding: 8px 12px;
  color: #181022;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.94),
    rgba(238, 227, 255, 0.78)
  );
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.audio-proof-duration {
  color: rgba(29, 29, 31, 0.48);
}
.audio-proof-feature h4 {
  color: #1d1d1f;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 780;
  margin-bottom: 14px;
  text-wrap: balance;
}
.audio-proof-feature-main > p {
  max-width: 720px;
  color: rgba(29, 29, 31, 0.58);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.52;
  letter-spacing: -0.015em;
  margin-bottom: clamp(22px, 2.4vw, 34px);
}
.audio-proof-player {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2vw, 26px);
  min-height: 138px;
  padding: clamp(22px, 2.5vw, 32px);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 18% 14%,
      rgba(255, 191, 166, 0.17),
      transparent 34%
    ),
    radial-gradient(
      circle at 78% 12%,
      rgba(143, 108, 255, 0.22),
      transparent 38%
    ),
    radial-gradient(
      circle at 50% 120%,
      rgba(43, 24, 168, 0.28),
      transparent 52%
    ),
    linear-gradient(165deg, #211032 0%, #120926 48%, #070412 100%);
  border: 1px solid rgba(238, 219, 255, 0.19);
  box-shadow:
    0 26px 72px rgba(43, 24, 168, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.26);
}
.audio-proof-play {
  width: clamp(62px, 5.5vw, 82px);
  height: clamp(62px, 5.5vw, 82px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #181022;
  font-size: clamp(18px, 2vw, 24px);
  background:
    radial-gradient(
      circle at 28% 18%,
      rgba(255, 255, 255, 0.42),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98),
      rgba(238, 227, 255, 0.92)
    );
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s;
}
.audio-proof-play:hover {
  transform: scale(1.035);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}
.audio-proof-wave {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
}
.audio-proof-wave i {
  display: block;
  width: 5px;
  height: var(--h, 26px);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(201, 183, 255, 0.52)
  );
  opacity: 0.74;
  transform-origin: center;
  transition:
    opacity 0.22s,
    transform 0.22s;
}
.audio-proof-wave i:nth-child(3n + 1) {
  --h: 36px;
}
.audio-proof-wave i:nth-child(3n + 2) {
  --h: 54px;
}
.audio-proof-wave i:nth-child(4n) {
  --h: 22px;
}
.audio-proof-wave i:nth-child(5n) {
  --h: 62px;
}
.audio-proof-feature.is-playing .audio-proof-wave i {
  animation: proofWave 1.05s ease-in-out infinite;
  animation-delay: calc(var(--i, 1) * -0.035s);
}
.audio-proof-wave i:nth-child(1) {
  --i: 1;
}
.audio-proof-wave i:nth-child(2) {
  --i: 2;
}
.audio-proof-wave i:nth-child(3) {
  --i: 3;
}
.audio-proof-wave i:nth-child(4) {
  --i: 4;
}
.audio-proof-wave i:nth-child(5) {
  --i: 5;
}
.audio-proof-wave i:nth-child(6) {
  --i: 6;
}
.audio-proof-wave i:nth-child(7) {
  --i: 7;
}
.audio-proof-wave i:nth-child(8) {
  --i: 8;
}
.audio-proof-wave i:nth-child(9) {
  --i: 9;
}
.audio-proof-wave i:nth-child(10) {
  --i: 10;
}
@keyframes proofWave {
  0%,
  100% {
    transform: scaleY(0.78);
    opacity: 0.58;
  }
  50% {
    transform: scaleY(1.12);
    opacity: 0.96;
  }
}
.audio-proof-time {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 680;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.audio-proof-seek {
  grid-column: 1 / -1;
  width: 100%;
  display: grid;
  gap: 7px;
  margin-top: 2px;
}
.audio-proof-seek input[type="range"] {
  width: 100%;
  height: 18px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
  touch-action: pan-y;
}
.audio-proof-seek input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.92) var(--seek-progress, 0%),
    rgba(255, 255, 255, 0.18) var(--seek-progress, 0%)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.audio-proof-seek input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  margin-top: -5px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.34);
}
.audio-proof-seek input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}
.audio-proof-seek input[type="range"]::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}
.audio-proof-seek input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.34);
}
.audio-proof-seek input[type="range"]:disabled {
  opacity: 0.42;
  cursor: default;
}
.audio-proof-listen-row {
  margin-top: clamp(18px, 2vw, 26px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.audio-proof-listen-row span {
  padding: 8px 11px;
  border-radius: 999px;
  color: rgba(29, 29, 31, 0.58);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.audio-proof-breakdown {
  padding: clamp(22px, 2.4vw, 34px);
  display: grid;
  gap: 14px;
  align-content: stretch;
}
.audio-proof-handled,
.audio-proof-handoff {
  padding: clamp(18px, 2vw, 26px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(
      circle at 18% 10%,
      rgba(255, 191, 166, 0.15),
      transparent 34%
    ),
    radial-gradient(
      circle at 82% 18%,
      rgba(143, 108, 255, 0.22),
      transparent 38%
    ),
    radial-gradient(
      circle at 50% 110%,
      rgba(43, 24, 168, 0.24),
      transparent 48%
    ),
    linear-gradient(165deg, #211032 0%, #120926 48%, #070412 100%);
  border-color: rgba(238, 219, 255, 0.2);
  box-shadow:
    0 20px 54px rgba(43, 24, 168, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.24);
}
.audio-proof-panel-label {
  margin-bottom: 14px;
  color: rgba(29, 29, 31, 0.48);
}
.audio-proof-handled ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.audio-proof-handled li {
  position: relative;
  padding-left: 24px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.12vw, 17px);
  line-height: 1.48;
  font-weight: 500;
}
.audio-proof-handled li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: #c9b7ff;
  text-shadow: 0 0 18px rgba(143, 108, 255, 0.45);
}
.audio-proof-grid {
  margin-top: clamp(20px, 2.6vw, 38px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.audio-proof-card {
  appearance: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 184px;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.42)
  );
  box-shadow:
    0 16px 46px rgba(35, 25, 60, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.24s,
    background 0.24s,
    box-shadow 0.24s,
    opacity 0.24s;
}
.audio-proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 108, 255, 0.28);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 24px 62px rgba(35, 25, 60, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}
.audio-proof-card.is-active {
  border-color: rgba(143, 108, 255, 0.42);
  box-shadow:
    0 28px 72px rgba(143, 108, 255, 0.18),
    0 0 0 1px rgba(143, 108, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}
.audio-proof-card[hidden] {
  display: none;
}
.audio-proof-card-tag {
  margin-bottom: 16px;
  color: rgba(29, 29, 31, 0.46);
}
.audio-proof-card h4 {
  color: #1d1d1f;
  font-size: 18px;
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 760;
  margin-bottom: 10px;
}
.audio-proof-card p {
  color: rgba(29, 29, 31, 0.56);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: -0.006em;
  margin-bottom: 20px;
}
.audio-proof-card-controls {
  margin-top: auto;
  display: grid;
  grid-template-columns: auto minmax(84px, 1fr) auto;
  gap: 12px;
  align-items: center;
}
.audio-proof-card-duration {
  color: rgba(29, 29, 31, 0.42);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.audio-proof-card-seek {
  width: 100%;
  min-width: 0;
  height: 20px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
  touch-action: pan-y;
}
.audio-proof-card-seek::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(143, 108, 255, 0.88) var(--card-seek-progress, 0%),
    rgba(29, 29, 31, 0.1) var(--card-seek-progress, 0%)
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}
.audio-proof-card-seek::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  margin-top: -4.5px;
  background: #ffffff;
  border: 1px solid rgba(143, 108, 255, 0.38);
  box-shadow: 0 5px 14px rgba(35, 25, 60, 0.18);
}
.audio-proof-card-seek::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.1);
}
.audio-proof-card-seek::-moz-range-progress {
  height: 5px;
  border-radius: 999px;
  background: rgba(143, 108, 255, 0.88);
}
.audio-proof-card-seek::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(143, 108, 255, 0.38);
  box-shadow: 0 5px 14px rgba(35, 25, 60, 0.18);
}
.audio-proof-card-seek:disabled {
  opacity: 0.46;
  cursor: default;
}
.audio-proof-card-play {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #181022;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(238, 227, 255, 0.86)
  );
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition:
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s,
    box-shadow 0.2s;
}
.audio-proof-card-play:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #ffffff, rgba(220, 205, 255, 0.96));
  box-shadow:
    0 10px 22px rgba(143, 108, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.audio-proof-card.is-card-playing .audio-proof-card-play {
  color: #ffffff;
  background: linear-gradient(135deg, #8f6cff, #2b18a8);
  border-color: rgba(143, 108, 255, 0.4);
  box-shadow: 0 12px 28px rgba(143, 108, 255, 0.26);
}
.audio-proof-closing {
  margin: clamp(32px, 4vw, 56px) auto 0;
  text-align: center;
  color: rgba(29, 29, 31, 0.54);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 760;
}
@media (max-width: 1000px) {
  .audio-proof-feature {
    grid-template-columns: 1fr;
  }
  .audio-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .audio-proof-filters {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
}
.audio-proof-handled .audio-proof-panel-label,
.audio-proof-handoff .audio-proof-panel-label {
  color: rgba(220, 205, 255, 0.96);
  -webkit-text-fill-color: rgba(220, 205, 255, 0.96);
  font-size: 12px;
  letter-spacing: 0.085em;
}
.audio-proof-handoff p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.56;
  font-weight: 500;
  letter-spacing: -0.018em;
}
@media (max-width: 700px) {
  .hero-left {
    max-width: calc(100vw - 36px);
    overflow: visible;
  }
  .hero-left p {
    max-width: calc(100vw - 36px);
    overflow: visible;
  }
  .hero-left p .hero-word-cycle {
    width: min(calc(100vw - 36px), 8.15em);
    max-width: calc(100vw - 36px);
    min-height: 1.08em;
    overflow: visible;
  }
  .hero-left p .hero-word-cycle .cycle-word {
    max-width: 100%;
    white-space: nowrap;
    text-align: center;
    font-size: 0.9em;
    letter-spacing: -0.018em;
  }
}
@media (max-width: 390px) {
  .hero-left p {
    font-size: clamp(30px, 10.2vw, 46px);
  }
  .hero-left p .hero-word-cycle .cycle-word {
    font-size: 0.86em;
  }
}
.hero > * {
  position: relative;
  z-index: 3;
}
.contact-calendly {
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
}
@media (max-width: 700px) {
  .hero {
    border-bottom-left-radius: 104px 72px;
    border-bottom-right-radius: 104px 72px;
  }
  .hero::before {
    height: 150px;
    background: radial-gradient(
      ellipse 95% 115% at 50% 100%,
      rgba(238, 245, 255, 0.24) 0%,
      rgba(96, 165, 250, 0.055) 44%,
      rgba(3, 4, 5, 0) 78%
    );
  }
}
@media (max-width: 390px) {
  .hero {
    border-bottom-left-radius: 92px 62px;
    border-bottom-right-radius: 92px 62px;
  }
}
@media (max-width: 700px) {
  .hero-btns {
    margin-top: 0;
  }
}
@media (max-width: 390px) {
  .hero-btns {
    margin-bottom: 30px;
  }
}
@media (max-width: 700px) {
  .hamburger {
    min-width: 44px;
    min-height: 44px;
  }
  .top-island-cta,
  .btn-pill,
  .btn-pill-ghost,
  .audio-proof-filter,
  .leakage-industry-pill,
  .leakage-follow-selector button,
  .audio-proof-play {
    min-height: 44px;
  }
  .top-island-cta,
  .btn-pill,
  .btn-pill-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .audio-proof-filter,
  .leakage-industry-pill {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .audio-proof-card {
    min-height: 44px;
  }
  .mobile-menu a,
  .mobile-menu button {
    min-height: 44px;
  }
}
@media (max-width: 700px) {
  .product-section,
  .industries-section,
  .numbers-section,
  .build-section,
  .contact-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .product-header,
  .industries-header,
  .leakage-header,
  .audio-proof-header {
    margin-bottom: clamp(30px, 8vw, 46px);
  }
  .product-header h2,
  .industries-header h2,
  .leakage-header h2,
  .audio-proof-header h3,
  .build-inner h2,
  .contact-headline {
    font-size: clamp(38px, 10.8vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-wrap: balance;
    margin-bottom: 12px;
  }
  .product-header-right p,
  .industries-header p,
  .leakage-header p,
  .audio-proof-header p,
  .build-inner > p {
    font-size: clamp(15.5px, 4.1vw, 17px);
    line-height: 1.5;
    letter-spacing: -0.018em;
    color: rgba(13, 22, 38, 0.68);
    text-wrap: pretty;
    max-width: 34rem;
  }
  .ind-card p,
  .audio-proof-card p,
  .audio-proof-handled li,
  .audio-proof-handoff p {
    font-size: clamp(13.25px, 3.55vw, 14.5px);
    line-height: 1.42;
    letter-spacing: -0.01em;
    color: rgba(13, 22, 38, 0.58);
    text-wrap: pretty;
  }
  .ind-card h3,
  .audio-proof-card h4 {
    line-height: 1.14;
    letter-spacing: -0.035em;
    text-wrap: balance;
  }
  .ind-card h3,
  .audio-proof-card h4 {
    font-size: clamp(19px, 5vw, 23px);
    margin-bottom: 7px;
  }
  .ind-card,
  .audio-proof-card {
    padding: clamp(17px, 4.7vw, 22px);
    border-radius: clamp(20px, 5.8vw, 28px);
  }
  .industries-grid {
    gap: clamp(12px, 3.8vw, 18px);
  }
  .ghost-section-text {
    opacity: 0.22;
    pointer-events: none;
  }
  .audio-proof-library {
    margin-top: clamp(42px, 10vw, 62px);
  }
  .industries-section,
  .numbers-section,
  .build-section {
    padding-top: clamp(82px, 18vw, 112px);
    padding-bottom: clamp(82px, 18vw, 112px);
  }
}
@media (max-width: 390px) {
  .product-header h2,
  .industries-header h2,
  .leakage-header h2,
  .audio-proof-header h3,
  .build-inner h2,
  .contact-headline {
    font-size: clamp(34px, 10.4vw, 46px);
  }
  .product-header-right p,
  .industries-header p,
  .leakage-header p,
  .audio-proof-header p,
  .build-inner > p {
    font-size: 15px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 76px;
  }
  body {
    overflow-x: hidden;
  }
  section {
    scroll-margin-top: 76px;
  }
  .top-nav,
  body.ui-scrolled .top-nav,
  body.ui-on-light .top-nav {
    top: 8px;
    left: 12px;
    right: 12px;
    height: 54px;
    padding: 0 8px 0 16px;
    border-radius: 999px;
  }
  .nav-brand {
    font-size: 14px;
    letter-spacing: -0.035em;
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .hamburger {
    width: 40px;
    height: 40px;
  }
  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-left p {
    font-size: clamp(35px, 10.6vw, 46px);
    line-height: 0.98;
  }
  .hero-eyebrow {
    font-size: 11px;
    line-height: 1.25;
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-tagline {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14.5px;
    line-height: 1.45;
  }
  .hero-btns {
    gap: 10px;
  }
  .btn-pill,
  .btn-pill-ghost {
    min-height: 44px;
    padding: 11px 18px;
    font-size: 13px;
  }
  .hero-trust {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 6px;
    font-size: 11.5px;
    line-height: 1.35;
  }
  .product-section,
  .industries-section,
  .numbers-section,
  .impact-interactive-section,
  .leakage-calculator-section,
  .build-section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }
  .product-section {
    padding-top: 74px;
    padding-bottom: 64px;
  }
  .product-header,
  .industries-header,
  .audio-proof-header,
  .leakage-header {
    padding-top: 40px;
    margin-bottom: 26px;
  }
  .product-header h2,
  .industries-header h2,
  .audio-proof-header h3,
  .leakage-header h2,
  .build-inner h2 {
    font-size: clamp(31px, 8.9vw, 38px);
    line-height: 1.02;
    letter-spacing: -0.042em;
    margin-bottom: 10px;
    text-wrap: balance;
  }
  .product-header-right p,
  .industries-header p,
  .audio-proof-header p,
  .leakage-header p,
  .build-inner p,
  .contact-info p {
    font-size: 14.5px;
    line-height: 1.45;
    letter-spacing: -0.012em;
    text-wrap: pretty;
  }
  .ghost-section-text,
  .product-header .ghost-section-text,
  .industries-header .ghost-section-text,
  .impact-header .ghost-section-text,
  .leakage-header .ghost-section-text,
  .build-section .ghost-section-text,
  .contact-section .ghost-section-text {
    top: 0;
    width: 120vw;
    font-size: clamp(54px, 17vw, 78px);
    line-height: 0.86;
    letter-spacing: -0.045em;
    opacity: 0.16;
  }
  .infra-tag {
    max-width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 11.5px;
    line-height: 1.25;
    padding: 8px 12px;
  }
  .product-video-wrap {
    width: 100%;
    max-width: 100%;
    margin-bottom: 44px;
    border-radius: 22px;
  }
  .audio-proof-library {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }
  .audio-proof-header {
    margin-bottom: 18px;
  }
  .audio-proof-header h3 {
    font-size: clamp(30px, 8.6vw, 36px);
  }
  .audio-proof-header p {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
  }
  .audio-proof-filters,
  .leakage-industry-selector {
    width: auto;
    max-width: calc(100vw - 36px);
    margin: 18px -2px 0;
    display: flex;
    grid-template-columns: none;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding: 5px;
    border-radius: 999px;
    scrollbar-width: none;
  }
  .audio-proof-filters::-webkit-scrollbar,
  .leakage-industry-selector::-webkit-scrollbar,
  .audio-proof-grid::-webkit-scrollbar,
  .audio-proof-listen-row::-webkit-scrollbar {
    display: none;
  }
  .audio-proof-filter,
  .leakage-industry-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-height: 38px;
    padding: 9px 13px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }
  .audio-proof-feature {
    display: block;
    width: 100%;
    padding: 10px;
    border-radius: 28px;
    gap: 0;
  }
  .audio-proof-feature-main {
    padding: 17px;
    border-radius: 22px;
  }
  .audio-proof-meta {
    margin-bottom: 12px;
  }
  .audio-proof-industry,
  .audio-proof-duration,
  .audio-proof-panel-label,
  .audio-proof-card-tag {
    font-size: 10px;
    letter-spacing: 0.065em;
  }
  .audio-proof-feature h4 {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.04;
    margin-bottom: 8px;
  }
  .audio-proof-feature-main > p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.38;
  }
  .audio-proof-player {
    min-height: 92px;
    padding: 12px;
    border-radius: 22px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    justify-items: stretch;
  }
  .audio-proof-play {
    width: 54px;
    height: 54px;
    font-size: 16px;
  }
  .audio-proof-wave {
    width: 100%;
    height: 42px;
    gap: 3px;
  }
  .audio-proof-wave i {
    width: 3px;
    max-height: 34px;
  }
  .audio-proof-time {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: space-between;
    font-size: 11.5px;
    opacity: 0.78;
  }
  .audio-proof-seek {
    grid-column: 1 / -1;
    margin-top: -2px;
  }
  .audio-proof-seek input[type="range"] {
    height: 22px;
  }
  .audio-proof-seek input[type="range"]::-webkit-slider-runnable-track {
    height: 7px;
  }
  .audio-proof-seek input[type="range"]::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    margin-top: -5.5px;
  }
  .audio-proof-listen-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
    margin-top: 12px;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .audio-proof-listen-row span {
    flex: 0 0 auto;
    padding: 7px 10px;
    font-size: 11px;
  }
  .audio-proof-breakdown {
    margin-top: 10px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .audio-proof-handled,
  .audio-proof-handoff {
    padding: 14px;
    border-radius: 20px;
  }
  .audio-proof-handled .audio-proof-panel-label,
  .audio-proof-handoff .audio-proof-panel-label {
    margin-bottom: 8px;
    font-size: 10.5px;
  }
  .audio-proof-handled ul {
    gap: 6px;
  }
  .audio-proof-handled li {
    font-size: 13px;
    line-height: 1.34;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.86);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.86);
  }
  .audio-proof-handoff p {
    font-size: 13.25px;
    line-height: 1.38;
    color: rgba(255, 255, 255, 0.86);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.86);
  }
  .audio-proof-grid {
    margin-top: 16px;
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 2px 2px 8px;
    scrollbar-width: none;
  }
  .audio-proof-card {
    flex: 0 0 min(82vw, 292px);
    min-height: 116px;
    height: auto;
    padding: 14px;
    border-radius: 20px;
    scroll-snap-align: start;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 5px;
  }
  .audio-proof-card-tag {
    margin-bottom: 4px;
  }
  .audio-proof-card h4 {
    font-size: 16px;
    line-height: 1.12;
    margin-bottom: 0;
  }
  .audio-proof-card p {
    display: none;
  }
  .audio-proof-card-controls {
    grid-template-columns: auto minmax(74px, 1fr) auto;
    gap: 8px;
    margin-top: 8px;
  }
  .audio-proof-card-play {
    width: 30px;
    height: 30px;
  }
  .audio-proof-card-seek {
    height: 18px;
  }
  .audio-proof-closing {
    display: none;
  }
  .leakage-calculator-section,
  .impact-interactive-section {
    padding-top: 72px;
    padding-bottom: 74px;
  }
  .leakage-stage {
    width: 100%;
    max-width: 100%;
  }
  .leakage-header {
    padding-top: 40px;
    margin-bottom: 24px;
  }
  .leakage-header h2 {
    font-size: clamp(31px, 8.6vw, 37px);
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }
  .leakage-calculator-intro {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 28px;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .leakage-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    gap: 10px;
    border-radius: 28px;
  }
  .leakage-output-panel {
    order: 1;
    padding: 15px;
    border-radius: 22px;
  }
  .leakage-input-panel {
    order: 2;
    padding: 14px;
    border-radius: 22px;
    gap: 10px;
  }
  .leakage-panel-kicker {
    font-size: 10px;
    line-height: 1.25;
    margin-bottom: 2px;
  }
  .leakage-output-topline {
    margin-bottom: 12px;
  }
  .leakage-output-topline span {
    font-size: 10.5px;
    letter-spacing: 0.075em;
  }
  .leakage-output-topline p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12.5px;
    line-height: 1.35;
  }
  .leakage-output-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .leakage-output-card {
    min-width: 0;
    min-height: 0;
    padding: 12px;
    border-radius: 16px;
  }
  .leakage-output-card span {
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.055em;
  }
  .leakage-output-card strong {
    font-size: clamp(22px, 6.7vw, 28px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    margin-top: 7px;
  }
  .leakage-output-card p {
    display: none;
  }
  .leakage-output-card-total {
    order: -1;
    grid-column: 1 / -1;
    padding: 16px;
    border-radius: 20px;
  }
  .leakage-output-card-total strong {
    font-size: clamp(34px, 10vw, 42px);
  }
  .leakage-output-card-total p {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.35;
  }
  .leakage-control,
  .leakage-follow-control {
    padding: 12px;
    border-radius: 16px;
  }
  .leakage-control-head {
    gap: 8px;
    margin-bottom: 9px;
  }
  .leakage-control-head label {
    font-size: 13px;
    line-height: 1.22;
  }
  .leakage-control-head span {
    font-size: 12px;
    white-space: nowrap;
  }
  .leakage-control p {
    display: none;
  }
  .leakage-control input[type="range"] {
    height: 5px;
    margin-top: 4px;
  }
  .leakage-follow-control .leakage-control-head label {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .leakage-follow-selector {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }
  .leakage-follow-selector button {
    min-height: 42px;
    padding: 7px 4px;
    border-radius: 13px;
    font-size: 11.5px;
    line-height: 1.1;
  }
  .leakage-follow-selector button span {
    display: none;
  }
  .leakage-comparison {
    margin-top: 34px;
  }
  .leakage-comparison-head {
    margin-bottom: 16px;
  }
  .leakage-comparison-head h3 {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.04;
  }
  .leakage-comparison-list {
    gap: 10px;
  }
  .leakage-comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    border-radius: 22px;
  }
  .leakage-comparison-label {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 4px 2px 2px;
    font-size: 12px;
  }
  .leakage-before,
  .leakage-after {
    padding: 11px;
    border-radius: 16px;
    font-size: 11.75px;
    line-height: 1.34;
  }
  .leakage-before span,
  .leakage-after span {
    font-size: 9px;
    margin-bottom: 5px;
  }
  .leakage-footer {
    margin-top: 20px;
    gap: 8px;
  }
  .leakage-footer p {
    font-size: 11.5px;
    line-height: 1.35;
  }
  .industries-section {
    padding-top: 70px;
    padding-bottom: 72px;
  }
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ind-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    align-items: start;
    min-height: 0;
    padding: 16px;
    border-radius: 22px;
  }
  .ind-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    margin: 0;
    grid-row: span 2;
  }
  .ind-card h3 {
    font-size: 17px;
    margin-bottom: 3px;
  }
  .ind-card p {
    font-size: 13.25px;
    line-height: 1.36;
  }
  .ind-card.plus {
    display: block;
    text-align: center;
  }
  .industries-section > div[style*="margin-top"] {
    margin-top: 26px;
  }
  .build-section {
    padding-top: 78px;
    padding-bottom: 76px;
  }
  .build-inner {
    padding-top: 44px;
    gap: 24px;
  }
  .build-list {
    margin-bottom: 22px;
  }
  .build-list li {
    padding: 12px 0;
    font-size: 13.5px;
    line-height: 1.38;
  }
  .build-timeline {
    padding: 18px;
    border-radius: 22px;
  }
  .contact-section {
    padding-top: 78px;
    padding-bottom: 76px;
  }
  .contact-headline {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 0.92;
    margin-bottom: 24px;
  }
  .contact-row {
    gap: 12px;
    margin-bottom: 32px;
  }
  .contact-divider {
    margin-bottom: 32px;
  }
  .contact-grid {
    gap: 26px;
  }
  .contact-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .contact-form {
    gap: 10px;
  }
  .contact-form input,
  .contact-form textarea {
    min-height: 48px;
    padding: 14px 15px;
    border-radius: 14px;
    font-size: 14px;
  }
  .contact-form textarea {
    min-height: 110px;
    height: 110px;
  }
  footer {
    padding: 24px 18px;
    justify-content: center;
    text-align: center;
  }
  .footer-links {
    width: 100%;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
}
@media (max-width: 380px) {
  .audio-proof-card {
    flex-basis: 84vw;
  }
  .leakage-output-card strong {
    font-size: 21px;
  }
  .leakage-output-card-total strong {
    font-size: 33px;
  }
}
@media (max-width: 700px) {
  .impact-interactive-section .impact-header.leakage-header {
    padding-top: 40px;
    margin: 0 auto 24px;
  }
  .impact-interactive-section .impact-header.leakage-header h2 {
    font-size: clamp(31px, 8.6vw, 37px);
    line-height: 1.02;
    letter-spacing: -0.042em;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    text-wrap: balance;
  }
  .impact-interactive-section .leakage-calculator-intro {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 14.5px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .impact-interactive-section
    .impact-header.leakage-header
    .ghost-section-text {
    top: 0;
    width: 120vw;
    font-size: clamp(54px, 17vw, 78px);
    line-height: 0.86;
    letter-spacing: -0.045em;
    opacity: 0.16;
  }
  .impact-interactive-section .leakage-industry-selector {
    width: auto;
    max-width: calc(100vw - 36px);
    margin: 18px -2px 0;
    display: flex;
    grid-template-columns: none;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding: 5px;
    border-radius: 999px;
    scrollbar-width: none;
  }
}
@media (max-width: 700px) {
  .impact-interactive-section .leakage-industry-pill,
  .leakage-industry-selector .leakage-industry-pill,
  .audio-proof-filters .audio-proof-filter {
    width: auto;
    max-width: none;
    flex: 0 0 auto;
  }
}
@media (max-width: 700px) {
  .hero {
    min-height: 0;
    height: auto;
    padding-top: 92px;
    padding-bottom: clamp(58px, 7.5vh, 72px);
    justify-content: flex-start;
  }
  .hero-bottom {
    min-height: 0;
    align-items: flex-start;
  }
  .hero-left {
    margin-top: 0;
    margin-bottom: 0;
  }
  .hero-eyebrow {
    margin-bottom: 34px;
  }
  .hero-left p {
    margin-bottom: 32px;
  }
  .hero-tagline {
    margin-bottom: 34px;
  }
  .hero-btns {
    margin-bottom: 12px;
  }
  .hero-trust {
    margin-top: 22px;
  }
  .product-section {
    margin-top: 0;
  }
}
@media (max-width: 390px) {
  .hero {
    padding-top: 88px;
    padding-bottom: 58px;
  }
  .hero-eyebrow {
    margin-bottom: 30px;
  }
  .hero-left p {
    margin-bottom: 28px;
  }
  .hero-tagline {
    margin-bottom: 30px;
  }
}
.industries-section .ind-icon {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background:
    radial-gradient(
      circle at 30% 22%,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.4) 42%,
      rgba(255, 255, 255, 0.18) 100%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.58),
      rgba(238, 242, 248, 0.28)
    );
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(29, 29, 31, 0.04),
    0 14px 30px rgba(31, 38, 71, 0.075);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}
.industries-section .ind-icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 11px;
  background: linear-gradient(
    145deg,
    rgba(29, 29, 31, 0.045),
    rgba(29, 29, 31, 0.012)
  );
  opacity: 0.72;
  pointer-events: none;
}
.industries-section .ind-icon svg {
  position: relative;
  z-index: 1;
  width: 21px;
  height: 21px;
  stroke: rgba(29, 29, 31, 0.72);
  stroke-width: 1.65;
  filter: none;
}
.industries-section .ind-card:hover .ind-icon {
  background:
    radial-gradient(
      circle at 28% 18%,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.7) 34%,
      transparent 58%
    ),
    radial-gradient(
      circle at 76% 78%,
      rgba(143, 108, 255, 0.58) 0%,
      rgba(143, 108, 255, 0.24) 44%,
      transparent 72%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.88),
      rgba(220, 205, 255, 0.54) 54%,
      rgba(143, 108, 255, 0.38)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(43, 24, 168, 0.18),
    0 20px 42px rgba(143, 108, 255, 0.22),
    0 8px 18px rgba(43, 24, 168, 0.1);
  border-color: rgba(180, 154, 255, 0.84);
  transform: translateY(-1px);
}
.industries-section .ind-card:hover .ind-icon svg {
  stroke: rgba(0, 113, 227, 0.82);
}
.industries-section .ind-plus-icon {
  color: rgba(143, 108, 255, 0.82);
  font-weight: 300;
  text-shadow: 0 10px 28px rgba(143, 108, 255, 0.26);
}
@media (max-width: 700px) {
  .industries-section .ind-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    margin: 0;
  }
  .industries-section .ind-icon::after {
    inset: 6px;
    border-radius: 10px;
  }
  .industries-section .ind-icon svg {
    width: 19px;
    height: 19px;
  }
}
.industries-section .ind-icon svg,
.industries-section .ind-icon svg *,
.industries-section .ind-card:hover .ind-icon svg,
.industries-section .ind-card:hover .ind-icon svg * {
  stroke: rgba(29, 29, 31, 0.72);
  fill: none;
  color: rgba(29, 29, 31, 0.72);
}
.industries-section .ind-card:hover {
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 28px 76px rgba(31, 38, 71, 0.13),
    0 10px 28px rgba(31, 38, 71, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}
.industries-section .ind-icon,
.industries-section .ind-card:hover .ind-icon,
.industries-section .ind-card:focus-within .ind-icon {
  color: rgba(29, 29, 31, 0.7);
  background:
    radial-gradient(
      circle at 30% 22%,
      rgba(255, 255, 255, 0.96),
      rgba(255, 255, 255, 0.46) 42%,
      rgba(255, 255, 255, 0.2) 100%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.68),
      rgba(236, 232, 225, 0.34)
    );
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(29, 29, 31, 0.045),
    0 14px 32px rgba(31, 38, 71, 0.075);
}
.industries-section .ind-icon::after,
.industries-section .ind-card:hover .ind-icon::after,
.industries-section .ind-card:focus-within .ind-icon::after {
  background: linear-gradient(
    145deg,
    rgba(29, 29, 31, 0.045),
    rgba(29, 29, 31, 0.012)
  );
  opacity: 0.72;
}
.industries-section .ind-icon svg,
.industries-section .ind-icon svg *,
.industries-section .ind-card:hover .ind-icon svg,
.industries-section .ind-card:hover .ind-icon svg *,
.industries-section .ind-card:focus-within .ind-icon svg,
.industries-section .ind-card:focus-within .ind-icon svg * {
  color: rgba(29, 29, 31, 0.7);
  stroke: rgba(29, 29, 31, 0.7);
  fill: none;
  filter: none;
}
.industries-section .ind-icon,
.industries-section .ind-card:focus-within .ind-icon {
  overflow: hidden;
  color: rgba(36, 24, 72, 0.86);
  background:
    radial-gradient(
      circle at 28% 18%,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.64) 34%,
      transparent 58%
    ),
    radial-gradient(
      circle at 76% 78%,
      rgba(143, 108, 255, 0.48) 0%,
      rgba(143, 108, 255, 0.18) 44%,
      transparent 72%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.8),
      rgba(220, 205, 255, 0.46) 54%,
      rgba(143, 108, 255, 0.3)
    );
  border-color: rgba(220, 205, 255, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(43, 24, 168, 0.14),
    0 16px 34px rgba(143, 108, 255, 0.16),
    0 6px 16px rgba(43, 24, 168, 0.08);
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.24s,
    box-shadow 0.24s,
    background 0.24s;
}
.industries-section .ind-icon::before,
.industries-section .ind-card:focus-within .ind-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.46),
    rgba(255, 255, 255, 0) 46%,
    rgba(143, 108, 255, 0.24) 100%
  );
  opacity: 0.78;
  pointer-events: none;
  z-index: 0;
}
.industries-section .ind-icon::after,
.industries-section .ind-card:focus-within .ind-icon::after {
  z-index: 1;
  background:
    radial-gradient(
      circle at 72% 74%,
      rgba(143, 108, 255, 0.28),
      transparent 58%
    ),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(43, 24, 168, 0.07));
  opacity: 1;
}
.industries-section .ind-icon svg,
.industries-section .ind-icon svg *,
.industries-section .ind-card:focus-within .ind-icon svg,
.industries-section .ind-card:focus-within .ind-icon svg * {
  z-index: 2;
  color: rgba(36, 24, 72, 0.86);
  stroke: rgba(36, 24, 72, 0.86);
  fill: none;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.72));
}
.industries-section .ind-card:hover .ind-icon svg,
.industries-section .ind-card:hover .ind-icon svg * {
  color: rgba(43, 24, 168, 0.92);
  stroke: rgba(43, 24, 168, 0.92);
  fill: none;
}
.top-nav,
body.ui-on-dark .top-nav,
body.ui-on-dark.ui-scrolled .top-nav {
  border-radius: 999px;
  background:
    radial-gradient(
      circle at 95% 45%,
      rgba(143, 108, 255, 0.26),
      transparent 34%
    ),
    radial-gradient(
      circle at 8% 32%,
      rgba(255, 191, 166, 0.14),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      rgba(124, 91, 130, 0.48),
      rgba(56, 39, 104, 0.58) 52%,
      rgba(39, 23, 86, 0.62)
    );
  border: 2px solid rgba(222, 213, 255, 0.3);
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.26),
    0 1px 0 rgba(255, 255, 255, 0.24) inset,
    0 -1px 0 rgba(0, 0, 0, 0.16) inset;
  backdrop-filter: blur(34px) saturate(165%);
  -webkit-backdrop-filter: blur(34px) saturate(165%);
}
.top-nav .nav-brand,
body.ui-on-dark .top-nav .nav-brand,
body.ui-on-dark.ui-scrolled .top-nav .nav-brand {
  color: rgba(255, 255, 255, 0.94);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.94);
  font-size: 26px;
  font-weight: 840;
  letter-spacing: -0.078em;
  opacity: 1;
  transform: none;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
}
.top-nav .nav-links,
body.ui-on-dark .top-nav .nav-links,
body.ui-on-dark.ui-scrolled .top-nav .nav-links {
  gap: 46px;
}
.top-nav .nav-links a,
body.ui-on-dark .top-nav .nav-links a,
body.ui-on-dark.ui-scrolled .top-nav .nav-links a {
  color: rgba(245, 245, 247, 0.68);
  -webkit-text-fill-color: rgba(245, 245, 247, 0.68);
  font-size: 18px;
  font-weight: 680;
  letter-spacing: -0.035em;
  opacity: 1;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}
.top-nav .nav-links a:hover,
.top-nav .nav-links a.active,
body.ui-on-dark .top-nav .nav-links a:hover,
body.ui-on-dark .top-nav .nav-links a.active,
body.ui-on-dark.ui-scrolled .top-nav .nav-links a:hover,
body.ui-on-dark.ui-scrolled .top-nav .nav-links a.active {
  color: rgba(255, 255, 255, 0.94);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.94);
}
.top-island-cta,
body.ui-on-dark .top-island-cta,
body.ui-on-dark.ui-scrolled .top-island-cta {
  height: 64px;
  min-width: 196px;
  padding: 0 36px;
  color: rgba(18, 16, 28, 0.96);
  -webkit-text-fill-color: rgba(18, 16, 28, 0.96);
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -0.035em;
  background:
    radial-gradient(
      circle at 24% 18%,
      rgba(255, 255, 255, 0.86),
      transparent 35%
    ),
    linear-gradient(135deg, #ffffff, #f6efff 58%, #e5d9ff);
  border-color: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 18px 42px rgba(43, 24, 168, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(43, 24, 168, 0.11);
}
body.ui-on-light .top-nav,
body.ui-on-light.ui-scrolled .top-nav {
  background:
    linear-gradient(
      135deg,
      rgba(248, 251, 255, 0.82),
      rgba(226, 235, 247, 0.68)
    ),
    rgba(232, 241, 252, 0.78);
  border-color: rgba(68, 86, 112, 0.18);
  box-shadow:
    0 20px 58px rgba(52, 68, 96, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.76) inset,
    0 -1px 0 rgba(45, 60, 82, 0.08) inset;
}
body.ui-on-light .top-nav .nav-links a,
body.ui-on-light.ui-scrolled .top-nav .nav-links a {
  color: rgba(31, 38, 52, 0.74);
  -webkit-text-fill-color: rgba(31, 38, 52, 0.74);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
}
body.ui-on-light .top-nav .nav-brand,
body.ui-on-light.ui-scrolled .top-nav .nav-brand {
  color: rgba(18, 24, 36, 0.92);
  -webkit-text-fill-color: rgba(18, 24, 36, 0.92);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.48);
}
.top-nav .hamburger span,
body.ui-on-dark .top-nav .hamburger span,
body.ui-on-dark.ui-scrolled .top-nav .hamburger span {
  background: rgba(255, 255, 255, 0.84);
}
body.ui-on-light .top-nav .hamburger span,
body.ui-on-light.ui-scrolled .top-nav .hamburger span {
  background: rgba(18, 24, 36, 0.78);
}
body.ui-on-light .top-nav .nav-links a:hover,
body.ui-on-light .top-nav .nav-links a.active,
body.ui-on-light.ui-scrolled .top-nav .nav-links a:hover,
body.ui-on-light.ui-scrolled .top-nav .nav-links a.active {
  color: rgba(10, 14, 24, 0.94);
  -webkit-text-fill-color: rgba(10, 14, 24, 0.94);
}
@media (max-width: 900px) {
  .top-nav .top-island-cta {
    display: none;
  }
}
