:root {
  --ink: #101820;
  --muted: #667085;
  --line: #dfe5ea;
  --paper: #f7f9fb;
  --white: #ffffff;
  --blue: #2563eb;
  --cyan: #c7a8ff;
  --green: #16a34a;
  --navy: #110925;
  --field: #1d0f3b;
  --field-deep: #110925;
  --field-glow: #371a62;
  --gold: #be8b33;
  --contrast: #be8b33;
  --shadow: 0 20px 60px rgba(16, 24, 32, 0.14);
  --carousel-step-near: 245px;
  --carousel-step-far: 430px;
  --carousel-step-outer: 500px;
  --carousel-step-edge: 560px;
}

@font-face {
  font-family: "ReplenitInter";
  src: url("assets/fonts/replenit-inter.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--field-deep);
  font-family: "ReplenitInter", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  padding: 18px clamp(16px, 4vw, 48px);
  background: transparent;
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  max-width: 1280px;
  min-height: 64px;
  margin: 0 auto;
  padding: 0 0 0 2px;
  color: var(--white);
}

.brand img,
.footer-brand img {
  display: block;
  width: 128px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 15px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  opacity: 0.86;
}

.nav-link:hover,
.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link {
  background: rgba(255, 255, 255, 0.12);
  opacity: 1;
}

.nav-link-hidden {
  display: none;
}

.chevron {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 18px;
  width: min(880px, calc(100vw - 40px));
  padding: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 0%, rgba(190, 139, 51, 0.16), transparent 32%),
    radial-gradient(circle at 78% 18%, rgba(199, 168, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(25, 13, 50, 0.98), rgba(8, 4, 18, 0.98));
  border: 1px solid rgba(253, 235, 194, 0.12);
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 90px rgba(0, 0, 0, 0.42),
    0 18px 42px rgba(55, 26, 98, 0.22);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.mega-menu::before {
  position: absolute;
  top: -14px;
  right: 0;
  left: 0;
  height: 14px;
  content: "";
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-column,
.mega-feature {
  display: grid;
  gap: 8px;
  align-content: start;
}

.mega-label,
.mega-feature p {
  margin: 0 0 6px;
  color: rgba(253, 235, 194, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mega-column a {
  display: grid;
  gap: 3px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.mega-column a:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(199, 168, 255, 0.2);
  transform: translateY(-1px);
}

.mega-column strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 820;
}

.mega-column span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.35;
}

.mega-feature {
  padding: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 24% 12%, rgba(253, 235, 194, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(55, 26, 98, 0.92), rgba(25, 13, 50, 0.98));
  border: 1px solid rgba(253, 235, 194, 0.13);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mega-feature h2 {
  margin: 0;
  font-size: 24px;
}

.mega-feature span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.mega-feature a {
  justify-self: start;
  margin-top: 8px;
  color: #fdebc2;
  font-size: 14px;
  font-weight: 800;
}

.small-menu {
  grid-template-columns: 1fr;
  width: 220px;
  left: auto;
  right: 0;
  transform: translateY(8px);
}

.company-menu {
  left: auto;
  right: 0;
  width: min(780px, calc(100vw - 40px));
  grid-template-columns: 1.12fr 1fr 0.9fr;
  transform: translateY(8px);
}

.nav-item:hover .small-menu,
.nav-item:focus-within .small-menu,
.nav-item:hover .company-menu,
.nav-item:focus-within .company-menu {
  transform: translateY(0);
}

.footer-links a:hover {
  color: var(--white);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 750;
  line-height: 0.92;
}

.header-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  color: var(--white);
  background: #190d32;
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.header-cta::before {
  position: absolute;
  inset: -2px;
  z-index: -2;
  background: conic-gradient(from var(--cta-angle), transparent 0deg, transparent 58deg, rgba(255, 255, 255, 0.95) 74deg, #c7a8ff 92deg, #4de4d1 112deg, transparent 132deg, transparent 360deg);
  border-radius: inherit;
  content: "";
  animation: cta-spin 12s linear infinite;
}

.header-cta::after {
  position: absolute;
  inset: 2px;
  z-index: -1;
  background: #190d32;
  border-radius: inherit;
  content: "";
}

.cta-arrow {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 10px;
}

.cta-arrow::before,
.cta-arrow::after {
  position: absolute;
  content: "";
}

.cta-arrow::before {
  top: 4px;
  left: 0;
  width: 15px;
  height: 2px;
  background: currentColor;
}

.cta-arrow::after {
  top: 1px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

@property --cta-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes cta-spin {
  to {
    --cta-angle: 360deg;
  }
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  justify-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 72px) 56px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(199, 168, 255, 0.26), transparent 32%),
    radial-gradient(circle at 78% 26%, rgba(55, 26, 98, 0.62), transparent 34%),
    linear-gradient(135deg, var(--field-deep) 0%, var(--field) 48%, var(--field-glow) 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(199, 168, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 168, 255, 0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.55) 44%,
    rgba(0, 0, 0, 0.14) 62%,
    transparent 76%
  );
  opacity: 0.58;
  transform: perspective(700px) rotateX(58deg) scale(1.35);
  transform-origin: top center;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(17, 9, 37, 0.08), rgba(17, 9, 37, 0.42)),
    radial-gradient(circle at 50% 8%, transparent 0%, rgba(17, 9, 37, 0.22) 62%, rgba(17, 9, 37, 0.64) 100%);
  content: "";
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-centered .hero-content {
  display: grid;
  justify-items: center;
  width: min(1180px, 100vw - 40px);
  max-width: 1180px;
  padding-top: 54px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.powered-banner {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-self: center;
  justify-content: center;
  max-width: min(100%, 720px);
  gap: 10px;
  min-height: 42px;
  margin: 0 0 96px;
  padding: 10px 18px;
  overflow: hidden;
  color: var(--white);
  background: rgba(25, 13, 50, 0.82);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
  box-shadow:
    0 0 22px rgba(190, 139, 51, 0.24),
    0 0 58px rgba(190, 139, 51, 0.16),
    0 18px 48px rgba(0, 0, 0, 0.18);
}

.powered-banner::before {
  position: absolute;
  inset: -2px;
  z-index: -2;
  background: linear-gradient(90deg, #be8b33 0%, #fdebc2 28%, #ffffff 50%, #c7a8ff 72%, #be8b33 100%);
  content: "";
}

.powered-banner::after {
  position: absolute;
  inset: 1.5px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(25, 13, 50, 0.95), rgba(55, 26, 98, 0.88));
  border-radius: inherit;
  content: "";
}

@property --powered-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes powered-spin {
  to {
    --powered-angle: 360deg;
  }
}

@property --card-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes card-border-spin {
  to {
    --card-border-angle: 360deg;
  }
}

.star-icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: var(--gold);
}

.powered-prefix {
  flex: 0 0 auto;
  color: var(--white);
}

.powered-name {
  min-width: 0;
  color: var(--gold);
}

.star-icon::before,
.star-icon::after {
  position: absolute;
  inset: 0;
  background: currentColor;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  content: "";
}

.star-icon::after {
  filter: blur(5px);
  opacity: 0.8;
}

.hero h1,
.section h2,
.method h2,
.api-band h2,
.ask-band h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 1180px;
  font-size: clamp(58px, 7.6vw, 116px);
  font-family: "ReplenitInter", Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1;
  text-align: center;
}

.hero-title {
  display: grid;
  justify-items: center;
  justify-self: center;
  gap: 0;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
  text-align: center;
}

.title-line {
  display: block;
  width: 100%;
  padding-bottom: 0;
  overflow: visible;
  text-align: center;
  white-space: nowrap;
}

.title-line:nth-child(3) {
  margin-top: 0;
}

.title-soft {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 760;
  text-shadow:
    0 0 22px rgba(190, 139, 51, 0.24),
    0 0 54px rgba(190, 139, 51, 0.1),
    0 12px 38px rgba(0, 0, 0, 0.38);
}

.title-accent,
.title-shimmer {
  display: inline-block;
  padding: 0 0.02em 0.08em;
  color: transparent;
  background: linear-gradient(90deg, #be8b33 0%, #fdebc2 26%, #be8b33 52%, #fdebc2 76%, #be8b33 100%);
  background-size: 260% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: title-shimmer 5s ease-in-out infinite;
  filter:
    drop-shadow(0 0 20px rgba(190, 139, 51, 0.42))
    drop-shadow(0 0 52px rgba(190, 139, 51, 0.16))
    drop-shadow(0 14px 34px rgba(0, 0, 0, 0.34));
}

.title-accent {
  font-weight: 850;
}

.text-gold {
  color: #be8b33;
  font-weight: 660;
}

@keyframes title-shimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-copy {
  max-width: 1062px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-cta {
  min-height: 54px;
  padding: 0 28px;
  background-color: #190d32;
  background-image: linear-gradient(#190d32, #190d32);
  box-shadow:
    inset 0 0 0 999px #190d32,
    0 12px 34px rgba(0, 0, 0, 0.18);
}

.hero-cta::after {
  background-color: #190d32;
  background-image: linear-gradient(#190d32, #190d32);
}

.hero-trust {
  display: grid;
  justify-items: center;
  width: min(900px, 100%);
  margin-top: 98px;
  gap: 22px;
}

.hero-trust p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.45;
  text-align: center;
}

.trust-marquee {
  position: relative;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 172px;
  overflow: hidden;
  background: transparent;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.trust-marquee::before,
.trust-marquee::after {
  position: absolute;
  left: 50%;
  pointer-events: none;
  content: "";
}

.trust-marquee::before {
  top: 50%;
  z-index: 3;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 78% 42% at 50% 4%, rgba(255, 255, 255, 0.08), transparent 70%),
    rgba(6, 3, 15, 0.96);
  box-shadow:
    inset 0 0 34px rgba(255, 255, 255, 0.05),
    inset 0 0 0 1px rgba(253, 235, 194, 0.055),
    0 0 26px rgba(17, 9, 37, 0.3);
  transform: translate(-50%, -50%);
}

.trust-marquee::after {
  top: 50%;
  z-index: 5;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: radial-gradient(
    ellipse 72% 30% at 50% 3%,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.06) 52%,
    transparent 76%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -1px 0 rgba(190, 139, 51, 0.08);
  transform: translate(-50%, -50%);
}

.trust-track {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 172px;
  gap: 0;
  animation: trust-scroll 40s linear infinite;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.trust-logo-set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 120px;
  padding-right: 120px;
}

.trust-track-base {
  z-index: 2;
}

.trust-highlight-clip {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  mask-image: radial-gradient(circle 74px at 50% 50%, #000 99%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle 74px at 50% 50%, #000 99%, transparent 100%);
}

.trust-track-highlight {
  color: var(--contrast);
}

.trust-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 128px;
  min-height: 34px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-shadow: none;
  transform-origin: center;
}

.trust-track-highlight .trust-logo {
  color: var(--contrast);
  opacity: 1;
  transform: scale(1.55);
}

.trust-logo i {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 24px;
  flex: 0 0 30px;
  opacity: 0.56;
  filter: none;
}

.trust-track-highlight .trust-logo i {
  opacity: 1;
}

.trust-logo img {
  position: relative;
  z-index: 0;
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 42px;
  object-fit: contain;
  opacity: 0.42;
  filter: brightness(0) invert(1);
}

.trust-track-base .trust-logo.logo-favicon img {
  z-index: -1;
}

.trust-logo.logo-favicon img {
  width: 28px;
  height: 28px;
  max-width: none;
  max-height: none;
}

.trust-logo.logo-analog img {
  max-width: 168px;
  max-height: 54px;
}

.trust-track-highlight .trust-logo img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(58%) sepia(41%) saturate(581%) hue-rotate(1deg) brightness(91%) contrast(88%);
}

.logo-orbit i {
  border: 2px solid rgba(253, 235, 194, 0.4);
  border-radius: 50%;
}

.logo-orbit i::before {
  position: absolute;
  inset: 9px -5px;
  border-top: 2px solid rgba(199, 168, 255, 0.44);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.logo-nova i::before,
.logo-nova i::after {
  position: absolute;
  background: rgba(253, 235, 194, 0.42);
  clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
  content: "";
}

.logo-nova i::before {
  inset: 1px 5px;
}

.logo-nova i::after {
  inset: 8px 1px 2px 17px;
  background: rgba(199, 168, 255, 0.36);
}

.logo-apex i::before {
  position: absolute;
  inset: 3px 2px;
  border-right: 3px solid rgba(253, 235, 194, 0.38);
  border-bottom: 3px solid rgba(253, 235, 194, 0.38);
  content: "";
  transform: rotate(45deg);
}

.logo-apex i::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 9px;
  height: 2px;
  background: rgba(199, 168, 255, 0.38);
  content: "";
}

.logo-pulse i::before {
  position: absolute;
  top: 11px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(199, 168, 255, 0.25), rgba(253, 235, 194, 0.48), rgba(199, 168, 255, 0.25));
  content: "";
}

.logo-pulse i::after {
  position: absolute;
  inset: 5px 4px;
  border: solid rgba(253, 235, 194, 0.42);
  border-width: 0 0 2px 2px;
  content: "";
  transform: skewX(-28deg);
}

.logo-matrix i {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  grid-auto-rows: 6px;
  gap: 3px;
  align-content: center;
  justify-content: center;
}

.logo-matrix i::before {
  display: block;
  width: 6px;
  height: 6px;
  background: rgba(253, 235, 194, 0.42);
  box-shadow:
    9px 0 rgba(199, 168, 255, 0.36),
    18px 0 rgba(253, 235, 194, 0.28),
    0 9px rgba(199, 168, 255, 0.32),
    9px 9px rgba(253, 235, 194, 0.38),
    18px 9px rgba(199, 168, 255, 0.3);
  content: "";
}

.logo-vector i::before,
.logo-vector i::after {
  position: absolute;
  content: "";
}

.logo-vector i::before {
  top: 5px;
  left: 2px;
  width: 24px;
  height: 14px;
  border-top: 2px solid rgba(199, 168, 255, 0.38);
  border-right: 2px solid rgba(253, 235, 194, 0.42);
  transform: skewX(-24deg);
}

.logo-vector i::after {
  top: 9px;
  right: 0;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid rgba(253, 235, 194, 0.42);
}

@keyframes trust-scroll {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes stack-scroll-left {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes stack-scroll-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes faq-border-crawl {
  from {
    background-position: 100% 50%;
  }

  to {
    background-position: -100% 50%;
  }
}

.button.primary {
  color: var(--white);
  background: #371a62;
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.button.dark {
  background: var(--navy);
}

.hero-panel {
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: #f3effb;
  border-radius: 6px;
}

.panel-topline span,
.signal-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.signal-grid div,
.result-list article,
.outcome-grid article,
.steps article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.signal-grid div {
  min-height: 112px;
  padding: 14px;
}

.signal-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 15px;
}

.result-list {
  display: grid;
  gap: 10px;
}

.result-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
}

.score {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: #371a62;
  border-radius: 6px;
  font-weight: 850;
}

.result-list h2,
.footer-links h2 {
  margin: 0;
  font-size: 16px;
}

.result-list p,
.section-copy p,
.steps p,
.outcome-grid p,
.ask-band p,
.footer-brand p {
  color: var(--muted);
  line-height: 1.65;
}

.result-list p {
  margin: 6px 0 0;
  font-size: 14px;
}

.section,
.method,
.api-band,
.ask-band,
.site-footer {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.altscout-method {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 9vw, 132px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 10%, rgba(190, 139, 51, 0.18), transparent 28%),
    radial-gradient(circle at 78% 16%, rgba(55, 26, 98, 0.68), transparent 34%),
    linear-gradient(180deg, #110925 0%, #160b2d 48%, #0b0618 100%);
}

.altscout-method::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 35%, rgba(0, 0, 0, 0.8), transparent 72%);
  opacity: 0.22;
  content: "";
}

.method-intro,
.method-stage-tabs,
.method-carousel {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.method-intro {
  display: grid;
  justify-items: center;
  text-align: center;
}

.method-kicker {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-intro h2 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 820;
  line-height: 1;
  text-shadow:
    0 0 28px rgba(190, 139, 51, 0.18),
    0 14px 42px rgba(0, 0, 0, 0.36);
}

.method-title-shimmer {
  padding-bottom: 0.06em;
  font-weight: 850;
  filter:
    drop-shadow(0 0 20px rgba(190, 139, 51, 0.42))
    drop-shadow(0 0 52px rgba(190, 139, 51, 0.16))
    drop-shadow(0 14px 34px rgba(0, 0, 0, 0.34));
}

.method-intro p:last-child {
  max-width: 820px;
  margin: 30px 0 0;
  color: #ffffff;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.62;
}

.method-stage-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: min(760px, 100%);
  margin-top: 48px;
  margin-right: auto;
  margin-left: auto;
  padding: 24px 0 18px;
}

.method-stage-tabs::before {
  position: absolute;
  top: 41px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253, 235, 194, 0.22), rgba(190, 139, 51, 0.5), rgba(253, 235, 194, 0.22), transparent);
  content: "";
}

.stage-tab {
  position: relative;
  display: grid;
  grid-template-rows: 52px auto auto;
  justify-items: center;
  row-gap: 0;
  min-height: 150px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.stage-tab span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: auto;
  height: auto;
  align-self: end;
  margin-top: 6px;
  margin-bottom: 5;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 10px;
  font-weight: 850;
  box-shadow: none;
}

.stage-tab span::before {
  position: absolute;
  top: -28px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: rgba(253, 235, 194, 0.26);
  border: 1px solid rgba(253, 235, 194, 0.44);
  border-radius: 999px;
  box-shadow: 0 0 0 8px #110925;
  content: "";
  transform: translateX(-50%);
}

.stage-tab small {
  display: block;
  max-width: 150px;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 3;
  text-align: center;
  text-transform: uppercase;
}

.stage-tab strong {
  display: block;
  max-width: 150px;
  margin-top: -40px;
  color: inherit;
  font-size: 13px;
  letter-spacing: 0.025em;
  line-height: 2;
  text-align: center;
}

.stage-tab.is-active {
  color: var(--white);
}

.stage-tab.is-active span {
  color: rgba(255, 255, 255, 0.9);
}

.stage-tab.is-active span::before {
  background: linear-gradient(135deg, #be8b33, #fdebc2);
  border-color: rgba(253, 235, 194, 0.9);
  box-shadow:
    0 0 0 8px #110925,
    0 0 28px rgba(190, 139, 51, 0.7),
    0 0 80px rgba(190, 139, 51, 0.28);
}

.stage-tab.is-active strong {
  color: #fdebc2;
  text-shadow: 0 0 18px rgba(190, 139, 51, 0.35);
}

.stage-tab.is-active small {
  color: rgba(255, 255, 255, 0.86);
}

.method-carousel {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  min-height: 360px;
  margin: 30px auto 0;
  padding: 22px 0 38px;
  overflow: visible;
  touch-action: pan-y;
  cursor: grab;
}

.method-carousel.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.method-carousel-track {
  position: relative;
  height: 330px;
  width: 100%;
}

.method-card {
  position: absolute;
  top: 0;
  left: 50%;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr;
  row-gap: 24px;
  width: min(540px, calc(100vw - 40px));
  min-height: 292px;
  padding: 22px;
  color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(rgba(25, 13, 50, 0.78), rgba(12, 6, 25, 0.84)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(190, 139, 51, 0.1), rgba(139, 92, 246, 0.18)) border-box;
  border: 1px solid transparent;
  border-radius: 24px;
  opacity: 0.16;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transform: translateX(calc(-50% + var(--card-x, 0px))) translateY(var(--card-y, 0px)) scale(var(--card-scale, 0.82));
  transition: opacity 260ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease;
}

.method-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.method-card::after {
  z-index: 0;
  opacity: 0.46;
  background:
    url("data:image/svg+xml,%3Csvg width='420' height='220' viewBox='0 0 420 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='.14' stroke='%23ffffff' stroke-width='1'%3E%3Cpath d='M0 44H420M0 88H420M0 132H420M0 176H420M70 0V220M140 0V220M210 0V220M280 0V220M350 0V220'/%3E%3C/g%3E%3Cpath d='M18 112 C48 62 78 62 108 112 S168 162 198 112 S258 62 288 112 S348 162 402 98' fill='none' stroke='%23BE8B33' stroke-width='3' stroke-linecap='round' opacity='.34'/%3E%3Cpath d='M18 112 C48 62 78 62 108 112 S168 162 198 112 S258 62 288 112 S348 162 402 98' fill='none' stroke='%23FDEBC2' stroke-width='1' stroke-linecap='round' opacity='.24'/%3E%3C/svg%3E") 80% 46% / min(78%, 420px) auto no-repeat;
}

.method-card:nth-child(2)::after {
  background:
    url("data:image/svg+xml,%3Csvg width='360' height='220' viewBox='0 0 360 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='.12' stroke='%23ffffff' stroke-width='1'%3E%3Cpath d='M40 52H312M40 92H312M40 132H312M40 172H312M92 28V194M156 28V194M220 28V194M284 28V194'/%3E%3C/g%3E%3Cpath d='M118 116 L158 154 L246 66' fill='none' stroke='%23BE8B33' stroke-width='9' stroke-linecap='round' stroke-linejoin='round' opacity='.28'/%3E%3Cpath d='M118 116 L158 154 L246 66' fill='none' stroke='%23FDEBC2' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' opacity='.2'/%3E%3Ccircle cx='246' cy='66' r='5' fill='%23C7A8FF' opacity='.18'/%3E%3C/svg%3E") 84% 48% / min(68%, 360px) auto no-repeat;
}

.method-card:nth-child(3)::after {
  background:
    url("data:image/svg+xml,%3Csvg width='390' height='230' viewBox='0 0 390 230' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M34 70 H104 L130 96 C142 108 154 108 166 96 L214 48 H276' stroke='%23C7A8FF' stroke-width='9' opacity='.16'/%3E%3Cpath d='M34 164 H98 L214 48' stroke='%23BE8B33' stroke-width='9' opacity='.18'/%3E%3Cpath d='M154 124 C166 112 180 112 192 124 L232 164 H276' stroke='%23FDEBC2' stroke-width='9' opacity='.13'/%3E%3Cpath d='M34 70 H104 L130 96 C142 108 154 108 166 96 L214 48 H276M34 164 H98 L214 48M154 124 C166 112 180 112 192 124 L232 164 H276' stroke='%23FDEBC2' stroke-width='1.5' opacity='.16'/%3E%3C/g%3E%3Cg fill='none' stroke='%23BE8B33' stroke-width='7' stroke-linejoin='round' opacity='.2'%3E%3Cpath d='M276 18 L348 62 L276 106 Z'/%3E%3Cpath d='M276 134 L348 178 L276 222 Z'/%3E%3C/g%3E%3Cg fill='%23190D32' opacity='.38'%3E%3Cellipse cx='148' cy='104' rx='24' ry='15' transform='rotate(-33 148 104)'/%3E%3Cellipse cx='178' cy='132' rx='23' ry='14' transform='rotate(-58 178 132)'/%3E%3C/g%3E%3C/svg%3E") 86% 50% / min(74%, 390px) auto no-repeat;
}

.method-card:nth-child(4)::after {
  background:
    url("data:image/svg+xml,%3Csvg width='360' height='230' viewBox='0 0 360 230' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='.18'%3E%3Crect x='86' y='34' width='18' height='18' fill='%23FDEBC2'/%3E%3Crect x='112' y='22' width='28' height='28' fill='%23C7A8FF'/%3E%3Crect x='150' y='14' width='44' height='44' fill='%23BE8B33'/%3E%3Crect x='112' y='80' width='24' height='24' fill='%23C7A8FF'/%3E%3Crect x='144' y='92' width='16' height='16' fill='%23FDEBC2'/%3E%3Crect x='122' y='122' width='13' height='13' fill='%23BE8B33'/%3E%3Crect x='128' y='150' width='9' height='9' fill='%23C7A8FF'/%3E%3Crect x='134' y='170' width='7' height='7' fill='%23FDEBC2'/%3E%3C/g%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='144' cy='90' rx='92' ry='24' stroke='%23FDEBC2' stroke-width='8' opacity='.12'/%3E%3Cellipse cx='144' cy='90' rx='92' ry='24' stroke='%23BE8B33' stroke-width='2' opacity='.18'/%3E%3Cpath d='M62 96 L120 172 Q144 188 168 172 L226 96' stroke='%23C7A8FF' stroke-width='8' opacity='.12'/%3E%3Cpath d='M62 96 L120 172 Q144 188 168 172 L226 96' stroke='%23FDEBC2' stroke-width='1.5' opacity='.16'/%3E%3Cpath d='M128 172 V200' stroke='%23BE8B33' stroke-width='7' opacity='.15'/%3E%3C/g%3E%3C/svg%3E") 84% 52% / min(70%, 360px) auto no-repeat;
}

.method-card:nth-child(5)::after {
  background:
    url("data:image/svg+xml,%3Csvg width='360' height='230' viewBox='0 0 360 230' xmlns='http://www.w3.org/2000/svg'%3E%3Cg font-family='Inter,Arial,sans-serif' font-weight='800' text-anchor='middle'%3E%3Ctext x='112' y='96' font-size='46' fill='%23BE8B33' opacity='.18'%3E%24%3C/text%3E%3Ctext x='214' y='74' font-size='38' fill='%23FDEBC2' opacity='.13'%3E%C2%A5%3C/text%3E%3Ctext x='270' y='136' font-size='44' fill='%23C7A8FF' opacity='.14'%3E%E2%82%AC%3C/text%3E%3C/g%3E%3Cpath d='M70 162 C122 154 148 134 186 126 S248 114 306 76' fill='none' stroke='%23BE8B33' stroke-width='5' stroke-linecap='round' opacity='.18'/%3E%3Cpath d='M288 72 L308 74 L298 92' fill='none' stroke='%23FDEBC2' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' opacity='.16'/%3E%3Cg opacity='.08' stroke='%23ffffff' stroke-width='1'%3E%3Cpath d='M68 182H318M68 142H318M68 102H318'/%3E%3C/g%3E%3C/svg%3E") 84% 50% / min(68%, 360px) auto no-repeat;
}

.method-card > * {
  position: relative;
  z-index: 1;
}

.method-card.is-near {
  opacity: 0.5;
  --card-scale: 0.88;
}

.method-card.is-active {
  color: var(--white);
  background:
    linear-gradient(#190d32, #0c0619) padding-box,
    conic-gradient(
      from var(--card-border-angle),
      transparent 0deg,
      transparent 56deg,
      rgba(253, 235, 194, 0.95) 74deg,
      #be8b33 94deg,
      #c7a8ff 116deg,
      rgba(139, 92, 246, 0.72) 136deg,
      transparent 158deg,
      transparent 360deg
    ) border-box;
  opacity: 1;
  box-shadow:
    0 34px 96px rgba(0, 0, 0, 0.58),
    0 0 64px rgba(190, 139, 51, 0.28),
    0 0 34px rgba(199, 168, 255, 0.18);
  animation: card-border-spin 12s linear infinite;
  cursor: default;
  --card-scale: 1;
}

.method-card.is-active::after {
  opacity: 0.62;
}

.method-card-eyebrow {
  display: inline-grid;
  grid-column: 1;
  grid-row: 1;
  grid-template-columns: max-content 72px max-content;
  align-items: center;
  justify-self: start;
  gap: 12px;
  width: max-content;
  white-space: nowrap;
}

.method-card-number,
.method-card-label {
  color: #c7a8ff;
  line-height: 1;
}

.method-card-number {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.method-card-eyebrow i {
  width: 72px;
  height: 1px;
  background: rgba(199, 168, 255, 0.62);
}

.method-card-label {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-card h3 {
  grid-column: 1;
  margin: 0;
  color: var(--white);
  font-size: 42px;
  font-weight: 780;
  line-height: 0.98;
  text-shadow:
    0 0 22px rgba(190, 139, 51, 0.16),
    0 14px 34px rgba(0, 0, 0, 0.34);
}

.method-card-copy {
  grid-column: 1;
  align-self: end;
  max-width: 92%;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-weight: 620;
  line-height: 1.45;
}

.delivery-section,
.execution-section,
.faq-section,
.final-cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 9vw, 128px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 8%, rgba(190, 139, 51, 0.14), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(199, 168, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #0b0618 0%, #110925 48%, #160b2d 100%);
}

.delivery-section::before,
.execution-section::before,
.faq-section::before,
.final-cta-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 35%, rgba(0, 0, 0, 0.72), transparent 76%);
  opacity: 0.2;
  content: "";
}

.delivery-intro,
.execution-intro,
.faq-intro,
.final-cta-intro,
.delivery-card-grid,
.delivery-quotes {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.delivery-intro,
.execution-intro,
.faq-intro,
.final-cta-intro {
  display: grid;
  justify-items: center;
  text-align: center;
}

.delivery-kicker,
.execution-kicker,
.faq-kicker,
.final-cta-kicker {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.delivery-intro h2,
.execution-intro h2,
.faq-intro h2,
.final-cta-intro h2 {
  max-width: 920px;
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 820;
  line-height: 1;
  text-shadow:
    0 0 28px rgba(190, 139, 51, 0.18),
    0 14px 42px rgba(0, 0, 0, 0.36);
}

.delivery-intro p:last-child,
.execution-intro p:last-child,
.faq-intro p:last-child,
.final-cta-intro > p:last-of-type {
  max-width: 820px;
  margin: 30px 0 0;
  color: #ffffff;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.62;
}

.execution-section {
  background:
    radial-gradient(circle at 22% 20%, rgba(190, 139, 51, 0.2), transparent 32%),
    radial-gradient(circle at 86% 30%, rgba(199, 168, 255, 0.18), transparent 38%),
    linear-gradient(110deg, #160818 0%, #120925 42%, #24104a 100%);
}

.faq-section {
  background:
    radial-gradient(circle at 50% 28%, rgba(55, 26, 98, 0.2), transparent 38%),
    radial-gradient(circle at 50% 40%, rgba(190, 139, 51, 0.08), transparent 22%),
    linear-gradient(180deg, #05020b 0%, #090412 44%, #05020b 100%);
}

.faq-section::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 16%, rgba(0, 0, 0, 0.9) 82%, transparent 100%);
  opacity: 0.28;
}

.final-cta-section {
  background:
    radial-gradient(circle at 50% 16%, rgba(190, 139, 51, 0.15), transparent 26%),
    radial-gradient(circle at 50% 34%, rgba(55, 26, 98, 0.3), transparent 42%),
    linear-gradient(180deg, #05020b 0%, #110925 48%, #05020b 100%);
}

.final-cta-section::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.86) 20%, rgba(0, 0, 0, 0.86) 78%, transparent 100%);
  opacity: 0.22;
}

.final-cta-button {
  margin-top: clamp(32px, 4vw, 44px);
}

.final-cta-intro > p:last-of-type {
  max-width: 980px;
}

.about-company-section {
  position: relative;
  overflow: hidden;
  padding: clamp(150px, 17vw, 210px) clamp(20px, 5vw, 72px) clamp(24px, 2.3vw, 36px);
  color: var(--white);
  background:
    radial-gradient(circle at 50% 18%, rgba(190, 139, 51, 0.14), transparent 24%),
    radial-gradient(circle at 50% 32%, rgba(55, 26, 98, 0.32), transparent 44%),
    linear-gradient(180deg, #05020b 0%, #110925 48%, #05020b 100%);
}

.about-company-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.88) 18%, rgba(0, 0, 0, 0.88) 84%, transparent 100%);
  opacity: 0.24;
  content: "";
  pointer-events: none;
}

.about-company-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(260px, 26vw, 420px);
  background: linear-gradient(180deg, transparent 0%, rgba(8, 4, 17, 0.78) 44%, rgba(2, 1, 6, 0.96) 76%, #010006 100%);
  content: "";
  pointer-events: none;
}

.about-company-intro,
.about-company-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.about-company-intro {
  display: grid;
  justify-items: start;
  text-align: left;
}

.about-company-kicker {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-company-intro h1 {
  max-width: 920px;
  margin: 0;
  color: var(--white);
  font-size: clamp(46px, 6.4vw, 92px);
  font-weight: 820;
  line-height: 0.98;
  text-shadow:
    0 0 28px rgba(190, 139, 51, 0.18),
    0 14px 42px rgba(0, 0, 0, 0.36);
}

.about-company-intro > p:last-child {
  max-width: 980px;
  margin: 30px 0 0;
  color: #ffffff;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.62;
}

.about-company-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(58px, 7vw, 90px);
}

.about-company-grid article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(rgba(25, 13, 50, 0.74), rgba(8, 4, 18, 0.86)) padding-box,
    linear-gradient(135deg, rgba(253, 235, 194, 0.2), rgba(199, 168, 255, 0.16)) border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.24);
}

.about-company-grid article::before {
  position: absolute;
  inset: -40% 18% auto auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(190, 139, 51, 0.16), transparent 68%);
  content: "";
  pointer-events: none;
}

.about-company-grid h2 {
  position: relative;
  margin: 0;
  color: #fdebc2;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 820;
}

.about-company-grid p {
  position: relative;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 450;
  line-height: 1.58;
}

.about-leadership-section {
  position: relative;
  overflow: hidden;
  margin-top: clamp(-92px, -7vw, -56px);
  padding: clamp(152px, 14vw, 216px) clamp(20px, 5vw, 72px) clamp(104px, 11vw, 154px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(55, 26, 98, 0.18), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(190, 139, 51, 0.07), transparent 30%),
    #010006;
}

.about-leadership-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.84) 16%, rgba(0, 0, 0, 0.84) 86%, transparent);
  opacity: 0.2;
  content: "";
  pointer-events: none;
}

.about-leadership-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.about-leadership-intro {
  max-width: 680px;
}

.about-leadership-intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 3.3vw, 46px);
  font-weight: 560;
  line-height: 1.08;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.about-leadership-intro p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 400;
  line-height: 1.5;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 300px));
  gap: clamp(40px, 4.8vw, 60px);
  justify-content: center;
  margin-top: clamp(57px, 6.75vw, 81px);
}

.leadership-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: rgba(17, 9, 37, 0.78);
  border: 1px solid rgba(253, 235, 194, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.leadership-card:hover,
.leadership-card:focus-within {
  border-color: rgba(253, 235, 194, 0.38);
  box-shadow:
    0 24px 54px rgba(190, 139, 51, 0.16),
    0 18px 38px rgba(0, 0, 0, 0.4);
  transform: translateY(-8px);
}

.leadership-portrait {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.08;
  width: 100%;
  background-color: #121015;
  background-image: url("/assets/leadership-portraits.png");
  background-repeat: no-repeat;
  background-size: 200% auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition: background-size 420ms ease;
}

.leadership-portrait::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: url("/assets/leadership-portraits-color-direct-gaze.png");
  background-repeat: no-repeat;
  background-position: var(--portrait-color-position);
  background-size: 194% auto;
  opacity: 0;
  content: "";
  pointer-events: none;
  transition: opacity 320ms ease, background-size 420ms ease;
}

.leadership-card:hover .leadership-portrait,
.leadership-card:focus-within .leadership-portrait {
  background-size: 200% auto;
}

.leadership-card:hover .leadership-portrait::before,
.leadership-card:focus-within .leadership-portrait::before {
  background-size: 200% auto;
  opacity: 1;
}

.leadership-portrait-rob {
  --portrait-position: left top;
  --portrait-color-position: left -40px;
  background-position: var(--portrait-position);
}

.leadership-portrait-everett {
  --portrait-position: right top;
  --portrait-color-position: right -46px;
  background-position: var(--portrait-position);
}

.leadership-card-copy {
  min-height: 190px;
  padding: 22px;
}

.leadership-role {
  margin: 0;
  color: #be8b33;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leadership-card h3 {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 680;
  line-height: 1.12;
}

.leadership-card-copy > p:last-child {
  max-width: 48ch;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
}

.leadership-linkedin {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease, filter 180ms ease;
}

.leadership-linkedin img {
  display: block;
  width: 100%;
  height: 100%;
}

.leadership-linkedin:hover,
.leadership-linkedin:focus-visible {
  filter: brightness(1.12);
}

.leadership-card:hover .leadership-linkedin,
.leadership-card:focus-within .leadership-linkedin {
  opacity: 1;
  transform: translateY(0);
}

.about-principles {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(360px, 1fr);
  gap: clamp(52px, 7vw, 94px);
  align-items: start;
  margin-top: clamp(92px, 10vw, 138px);
}

.about-principles-intro {
  max-width: 440px;
}

.about-principles-intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 560;
  line-height: 1.08;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.about-principles-intro p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 400;
  line-height: 1.5;
}

.principles-grid {
  display: grid;
  justify-self: end;
  width: min(620px, 100%);
  gap: 14px;
}

.principles-grid article {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: clamp(22px, 2.4vw, 30px);
  color: var(--white);
  background:
    radial-gradient(circle at 92% 16%, rgba(190, 139, 51, 0.055), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 14px 34px rgba(0, 0, 0, 0.14);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.principles-grid article::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.8), transparent 72%);
  opacity: 0.22;
  content: "";
  pointer-events: none;
}

.principles-grid article > * {
  position: relative;
  z-index: 1;
}

.principles-grid article:hover,
.principles-grid article:focus-within {
  border-color: rgba(253, 235, 194, 0.18);
  box-shadow:
    0 18px 42px rgba(190, 139, 51, 0.07),
    0 18px 38px rgba(0, 0, 0, 0.22);
  transform: translateX(-6px);
}

.principles-grid span {
  display: inline-block;
  color: rgba(190, 139, 51, 0.7);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.principles-grid h3 {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(21px, 1.8vw, 27px);
  font-weight: 600;
  line-height: 1.08;
}

.principles-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 400;
  line-height: 1.58;
}

.about-team-cta {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(1040px, 100%);
  margin: clamp(104px, 11vw, 156px) auto 0;
  padding: clamp(38px, 5vw, 62px) 0 clamp(30px, 4vw, 46px);
  color: var(--white);
  text-align: center;
  background: transparent;
}

.about-team-cta h2 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 360;
  line-height: 1.2;
  text-shadow: none;
}

.about-team-cta p {
  max-width: 820px;
  margin: 20px 0 0;
  color: rgba(169, 197, 255, 0.82);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 400;
  line-height: 1.45;
}

.about-team-cta-button {
  margin-top: 62px;
  min-width: 250px;
  min-height: 58px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #7c3ff0, #8a48f5);
  border-radius: 9px;
  box-shadow:
    0 16px 34px rgba(124, 63, 240, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.about-team-cta-button::after {
  background:
    linear-gradient(135deg, #7c3ff0, #8a48f5);
  border-radius: inherit;
}

.faq-tabs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(820px, 100%);
  margin: clamp(44px, 5vw, 64px) auto 0;
}

.faq-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.faq-tab span {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--tab-color, #be8b33);
  border-radius: 50%;
  box-shadow: 0 0 16px color-mix(in srgb, var(--tab-color, #be8b33) 60%, transparent);
}

.faq-tab:nth-child(1) { --tab-color: #8b7cff; }
.faq-tab:nth-child(2) { --tab-color: #37d5ff; }
.faq-tab:nth-child(3) { --tab-color: #4de4d1; }
.faq-tab:nth-child(4) { --tab-color: #be8b33; }

.faq-tab:hover,
.faq-tab.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: color-mix(in srgb, var(--tab-color, #be8b33) 72%, rgba(255, 255, 255, 0.16));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--tab-color, #be8b33) 18%, transparent),
    0 0 28px color-mix(in srgb, var(--tab-color, #be8b33) 32%, transparent);
}

.faq-panels {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  margin: clamp(48px, 5vw, 66px) auto 0;
}

.faq-panel {
  display: grid;
  gap: 14px;
}

.faq-panel[hidden] {
  display: none;
}

.faq-item {
  position: relative;
  overflow: hidden;
  --faq-border-delay: 0s;
  background: linear-gradient(rgba(14, 7, 29, 0.78), rgba(8, 4, 18, 0.9));
  border: 1px solid rgba(199, 168, 255, 0.14);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(253, 235, 194, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.24);
}

.faq-item::before {
  position: absolute;
  inset: -1px;
  z-index: 2;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 36%,
    rgba(255, 255, 255, 0.42) 45%,
    #ffffff 50%,
    rgba(255, 255, 255, 0.42) 55%,
    transparent 64%,
    transparent 100%
  );
  background-size: 300% 100%;
  background-position: 100% 50%;
  content: "";
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: faq-border-crawl 7s linear var(--faq-border-delay) infinite;
}

.faq-item:nth-child(2) {
  --faq-border-delay: -2.3s;
}

.faq-item:nth-child(3) {
  --faq-border-delay: -4.6s;
}

.faq-question {
  display: grid;
  grid-template-columns: 120px 1fr 22px;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 24px 28px;
  color: #ffffff;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 550;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.faq-category-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 28px;
  padding: 0 13px;
  color: #a996ff;
  border: 1px solid rgba(139, 124, 255, 0.54);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.faq-question-text {
  min-width: 0;
}

.faq-question i {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(253, 235, 194, 0.22);
  border-radius: 50%;
}

.faq-question i::before,
.faq-question i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: #fdebc2;
  border-radius: 999px;
  content: "";
  transform: translate(-50%, -50%);
}

.faq-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-item.is-open .faq-question i::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.58;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 24px;
}

.execution-stack-panel {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  width: min(1080px, 100%);
  margin: clamp(58px, 7vw, 88px) auto 0;
  padding: clamp(34px, 4.5vw, 48px) 0 clamp(30px, 4vw, 42px);
  color: var(--white);
  --quote-border-offset: 42deg;
  background:
    linear-gradient(#190d32, #0c0619) padding-box,
    conic-gradient(
      from calc(var(--quote-border-offset) + var(--card-border-angle)),
      transparent 0deg,
      transparent 56deg,
      rgba(253, 235, 194, 0.95) 74deg,
      #be8b33 94deg,
      #c7a8ff 116deg,
      rgba(139, 92, 246, 0.72) 136deg,
      transparent 158deg,
      transparent 360deg
    ) border-box;
  border: 1px solid transparent;
  border-radius: 28px;
  box-shadow:
    inset 0 1px 0 rgba(253, 235, 194, 0.12),
    0 16px 30px rgba(190, 139, 51, 0.09);
  filter:
    drop-shadow(0 18px 34px rgba(190, 139, 51, 0.18))
    drop-shadow(0 12px 26px rgba(199, 168, 255, 0.1))
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.18));
  animation: card-border-spin 12s linear infinite;
}

.execution-stack-panel::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.35;
  content: "";
}

.execution-stack-panel::after {
  position: absolute;
  inset: -20% 12%;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 38%, rgba(190, 139, 51, 0.24), transparent 34%),
    radial-gradient(circle at 86% 34%, rgba(199, 168, 255, 0.22), transparent 36%);
  filter: blur(24px);
  content: "";
}

.execution-stack-panel h3 {
  margin: 0;
  font-size: clamp(22px, 2.3vw, 28px);
  font-weight: 820;
  line-height: 1.1;
  text-align: center;
}

.execution-stack-panel > p:not(.stack-caption) {
  max-width: 720px;
  margin: 16px auto 0;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.5;
  text-align: center;
}

.stack-marquee {
  position: relative;
  overflow: hidden;
  margin-top: clamp(34px, 4vw, 48px);
  padding: 0 0 4px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.stack-row {
  display: flex;
  width: max-content;
  gap: 0;
  animation: stack-scroll-left 36s linear infinite;
  will-change: transform;
}

.stack-row + .stack-row {
  margin-top: 24px;
}

.stack-row-reverse {
  animation-name: stack-scroll-right;
  animation-duration: 38s;
}

.stack-logo-set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 22px;
  padding-right: 22px;
}

.stack-tile {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), var(--tile-color, #be8b33)) border-box;
  border: 1px solid transparent;
  border-radius: 14px;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.26),
    0 0 0 7px color-mix(in srgb, var(--tile-color, #be8b33) 20%, transparent);
}

.stack-tile img {
  display: block;
  max-width: 76%;
  max-height: 76%;
  object-fit: contain;
}

.stack-tile:nth-child(5n + 1) { --tile-color: #f5b62d; }
.stack-tile:nth-child(5n + 2) { --tile-color: #3ca5cf; }
.stack-tile:nth-child(5n + 3) { --tile-color: #ee342f; }
.stack-tile:nth-child(5n + 4) { --tile-color: #c7a8ff; }
.stack-tile:nth-child(5n + 5) { --tile-color: #f0642e; }

.stack-caption {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-align: center;
}

.delivery-card-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: clamp(52px, 7vw, 86px);
}

.delivery-card-grid::before {
  position: absolute;
  inset: 10% 2% -6%;
  z-index: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.46), transparent 68%);
  filter: blur(24px);
  content: "";
  pointer-events: none;
}

.delivery-card {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  row-gap: 20px;
  min-height: 372px;
  padding: 30px;
  color: rgba(255, 255, 255, 0.72);
  --delivery-accent: #ffd64a;
  --delivery-spinner: #ffc21f;
  --delivery-accent-soft: rgba(255, 214, 74, 0.18);
  --card-border-offset: 18deg;
  background:
    linear-gradient(rgba(45, 22, 22, 0.42), rgba(76, 41, 20, 0.22)) padding-box,
    conic-gradient(
      from calc(var(--card-border-offset) + var(--card-border-angle)),
      rgba(253, 235, 194, 0.18),
        color-mix(in srgb, var(--delivery-spinner, var(--delivery-accent)) 54%, transparent) 78deg,
      rgba(199, 168, 255, 0.12) 148deg,
      rgba(253, 235, 194, 0.12) 230deg,
        color-mix(in srgb, var(--delivery-spinner, var(--delivery-accent)) 48%, transparent) 310deg,
      rgba(253, 235, 194, 0.18)
    ) border-box;
  border: 1px solid transparent;
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(253, 235, 194, 0.16);
  animation: card-border-spin 18s linear infinite;
}

.delivery-card:nth-child(2) {
  --delivery-accent: #bf8cff;
  --delivery-spinner: #bf8cff;
  --delivery-accent-soft: rgba(191, 140, 255, 0.2);
  --card-border-offset: 142deg;
}

.delivery-card:nth-child(3) {
  --delivery-accent: #37d5ff;
  --delivery-spinner: #37d5ff;
  --delivery-accent-soft: rgba(55, 213, 255, 0.18);
  --card-border-offset: 266deg;
}

.delivery-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 74% 0%, var(--delivery-accent-soft), transparent 34%),
    linear-gradient(180deg, rgba(253, 235, 194, 0.08), transparent 46%);
  opacity: 0.7;
  content: "";
  pointer-events: none;
}

.delivery-card > * {
  position: relative;
  z-index: 1;
}

.delivery-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.delivery-card-top > span:not(.delivery-pill) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.delivery-card-top .delivery-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  color: var(--delivery-accent);
  background: color-mix(in srgb, var(--delivery-accent) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--delivery-accent) 62%, transparent);
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 475;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.delivery-card h3 {
  margin: 0;
  color: #fdebc2;
  font-size: clamp(52px, 5.2vw, 74px);
  font-weight: 860;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.delivery-metric-label {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.delivery-progress {
  overflow: hidden;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.delivery-progress span {
  display: block;
  width: var(--progress);
  height: 100%;
  background: var(--delivery-accent);
}

.delivery-card .method-card-copy {
  align-self: end;
  max-width: 100%;
}

.delivery-quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 58px);
  width: min(1360px, calc(100vw - 48px));
  max-width: none;
  margin-right: 0;
  margin-left: 50%;
  margin-top: clamp(64px, 7vw, 92px);
  transform: translateX(-50%);
  filter:
    drop-shadow(0 18px 34px rgba(190, 139, 51, 0.18))
    drop-shadow(0 12px 26px rgba(199, 168, 255, 0.1))
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.18));
}

.delivery-quotes blockquote {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  padding: clamp(34px, 4vw, 46px) clamp(24px, 3vw, 34px) clamp(24px, 3vw, 34px);
  color: var(--white);
  --quote-accent: #be8b33;
  --quote-border-offset: 42deg;
  background:
    linear-gradient(#190d32, #0c0619) padding-box,
    conic-gradient(
      from calc(var(--quote-border-offset) + var(--card-border-angle)),
      transparent 0deg,
      transparent 56deg,
      rgba(253, 235, 194, 0.95) 74deg,
      #be8b33 94deg,
      #c7a8ff 116deg,
      rgba(139, 92, 246, 0.72) 136deg,
      transparent 158deg,
      transparent 360deg
    ) border-box;
  border: 1px solid transparent;
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(253, 235, 194, 0.12),
    0 16px 30px rgba(190, 139, 51, 0.09);
  animation: card-border-spin 12s linear infinite;
}

.delivery-quotes blockquote:nth-child(2) {
  --quote-accent: #c7a8ff;
  --quote-border-offset: 206deg;
}

.delivery-quotes blockquote::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--quote-accent) 18%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(253, 235, 194, 0.06), transparent 52%);
  opacity: 0.72;
  content: "";
  pointer-events: none;
}

.delivery-quotes blockquote::after {
  position: absolute;
  top: 18px;
  right: 26px;
  z-index: 0;
  color: color-mix(in srgb, var(--quote-accent) 32%, #ffffff);
  content: "\201D";
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 700;
  line-height: 0.8;
  opacity: 0.10;
  pointer-events: none;
}

.delivery-quotes blockquote > * {
  position: relative;
  z-index: 1;
}

.delivery-quotes p {
  margin: 0;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 400;
  line-height: 1.62;
}

.delivery-quotes cite {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  background: var(--white);
}

.section h2,
.method h2,
.api-band h2,
.ask-band h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
}

.section-copy {
  font-size: 18px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.method {
  background: #edf3f6;
}

.steps,
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.steps article,
.outcome-grid article {
  min-height: 260px;
  padding: 24px;
}

.steps span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.steps h3,
.outcome-grid h3 {
  margin: 22px 0 12px;
  font-size: 23px;
  line-height: 1.15;
}

.api-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  color: var(--white);
  background: #101820;
}

.api-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.api-card code {
  padding: 16px;
  color: #dff9ff;
  background: rgba(5, 168, 199, 0.14);
  border-radius: 6px;
  font-size: 15px;
}

.outcomes {
  background: var(--white);
}

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

.ask-band {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #0d4b56 0%, #2563eb 100%);
}

.ask-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1fr;
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(42px, 5vw, 64px) clamp(20px, 5vw, 72px) 12px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(190, 139, 51, 0.14), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(199, 168, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #05020b 0%, #0b0518 48%, #110925 100%);
  border-top: 1px solid rgba(253, 235, 194, 0.08);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.76), transparent 86%);
  opacity: 0.34;
  content: "";
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links h2 {
  color: rgba(253, 235, 194, 0.92);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(253, 235, 194, 0.12);
}

@media (max-width: 980px) {
  :root {
    --carousel-step-near: 190px;
    --carousel-step-far: 330px;
    --carousel-step-outer: 390px;
    --carousel-step-edge: 430px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .header-shell {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
    display: grid;
    gap: 5px;
    justify-self: end;
    width: 44px;
    height: 44px;
    padding: 13px 11px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
  }

  .site-header .header-cta {
    display: none;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
  }

  .site-nav {
    display: none;
  }

  .site-header.nav-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: start;
    gap: 16px;
    width: 100%;
    padding: 16px 0 8px;
  }

  .nav-item,
  .nav-link {
    width: 100%;
  }

  .mega-menu,
  .small-menu {
    position: static;
    display: grid;
    width: 100%;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    grid-template-columns: 1fr;
  }

  .hero,
  .two-column,
  .api-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .about-company-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .method-stage-tabs {
    width: min(720px, 100%);
  }

  .stage-tab {
    padding: 0 6px;
  }

  .stage-tab strong {
    font-size: 12px;
  }

  .method-carousel {
    max-width: 100%;
  }

  .method-card {
    width: min(500px, calc(100vw - 36px));
  }

  .delivery-card-grid {
    grid-template-columns: 1fr;
  }

  .delivery-card {
    min-height: 260px;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .principles-grid {
    justify-self: start;
    width: 100%;
  }
}

@media (max-width: 680px) {
  :root {
    --carousel-step-near: 118px;
    --carousel-step-far: 194px;
    --carousel-step-outer: 238px;
    --carousel-step-edge: 278px;
  }

  .leadership-grid {
    grid-template-columns: minmax(0, 300px);
  }

  .leadership-card {
    width: min(300px, 100%);
  }

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

  .leadership-linkedin {
    opacity: 1;
    transform: none;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-centered .hero-content {
    width: min(100%, 100vw - 28px);
    padding-top: 36px;
  }

  .powered-banner {
    display: grid;
    grid-template-columns: 14px auto;
    column-gap: 8px;
    row-gap: 3px;
    max-width: 100%;
    margin-bottom: 66px;
    padding: 10px 14px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .powered-name {
    grid-column: 2;
    max-width: 32ch;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-title {
    margin-top: 0;
  }

  .title-line {
    white-space: normal;
  }

  .hero-panel {
    padding: 14px;
  }

  .hero-cta {
    width: min(100%, 260px);
  }

  .hero-trust {
    margin-top: 42px;
    gap: 18px;
  }

  .hero-trust p {
    font-size: 13px;
  }

  .trust-track {
    animation-duration: 40s;
  }

  .trust-logo-set {
    gap: 92px;
    padding-right: 92px;
  }

  .trust-marquee,
  .trust-track {
    min-height: 126px;
  }

  .trust-highlight-clip {
    mask-image: radial-gradient(circle 54px at 50% 50%, #000 99%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle 54px at 50% 50%, #000 99%, transparent 100%);
  }

  .trust-marquee::before {
    width: 108px;
    height: 108px;
  }

  .trust-marquee::after {
    width: 108px;
    height: 108px;
    transform: translate(-50%, -50%);
  }

  .trust-logo {
    min-width: 108px;
    font-size: 14px;
  }

  .method-stage-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    margin-top: 34px;
    padding: 24px 0 12px;
    overflow: visible;
  }

  .method-stage-tabs::before {
    right: 10%;
    left: 10%;
    min-width: 0;
  }

  .method-stage-tabs::after {
    display: none;
  }

  .stage-tab {
    min-width: 0;
    min-height: 138px;
    padding: 0 3px;
  }

  .stage-tab small,
  .stage-tab strong {
    max-width: 100%;
  }

  .stage-tab small {
    font-size: 8px;
  }

  .stage-tab strong {
    font-size: 11px;
  }

  .method-carousel {
    min-height: 332px;
    margin-top: 18px;
    padding-bottom: 18px;
    overflow: hidden;
  }

  .method-carousel-track {
    height: 312px;
  }

  .method-card {
    width: min(360px, calc(100vw - 30px));
    min-height: 278px;
    row-gap: 18px;
    padding: 18px;
    border-radius: 20px;
  }

  .method-card-eyebrow {
    grid-template-columns: max-content 42px max-content;
    gap: 9px;
  }

  .method-card-eyebrow i {
    width: 42px;
  }

  .method-card-label {
    font-size: 9px;
  }

  .method-card h3 {
    font-size: 34px;
  }

  .method-card-copy {
    max-width: 100%;
    font-size: 15px;
  }

  .delivery-section,
  .execution-section,
  .faq-section,
  .final-cta-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .delivery-intro,
  .execution-intro,
  .faq-intro,
  .final-cta-intro {
    justify-items: start;
    text-align: left;
  }

  .faq-tabs {
    justify-content: flex-start;
    gap: 10px;
  }

  .faq-tab {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .faq-panels {
    margin-top: 34px;
  }

  .faq-question {
    grid-template-columns: 96px 1fr 22px;
    gap: 12px;
    padding: 18px;
  }

  .faq-category-label {
    min-width: 82px;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 7px;
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .faq-answer p {
    padding-right: 18px;
    padding-left: 18px;
  }

  .faq-item.is-open .faq-answer p {
    padding-bottom: 18px;
  }

  .execution-stack-panel {
    width: min(100%, calc(100vw - 32px));
    border-radius: 22px;
  }

  .execution-stack-panel h3,
  .execution-stack-panel > p:not(.stack-caption),
  .stack-caption {
    text-align: left;
  }

  .stack-marquee {
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }

  .stack-logo-set {
    gap: 16px;
    padding-right: 16px;
  }

  .stack-tile {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 12px;
    box-shadow:
      0 10px 20px rgba(0, 0, 0, 0.22),
      0 0 0 5px color-mix(in srgb, var(--tile-color, #be8b33) 18%, transparent);
    font-size: 11px;
  }

  .delivery-quotes {
    grid-template-columns: 1fr;
  }

  .delivery-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .signal-grid,
  .outcome-grid,
  .steps,
  .api-card,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .ask-band,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand img,
  .footer-brand img {
    width: 100px;
  }

  .header-shell {
    gap: 8px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    padding: 11px 10px;
  }

  .method-stage-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .method-stage-tabs::before {
    right: 7%;
    left: 7%;
    min-width: 0;
  }

  .method-stage-tabs::after {
    display: none;
  }

  .stage-tab {
    min-width: 0;
    min-height: 126px;
    padding: 0 2px;
  }

  .stage-tab span {
    font-size: 9px;
  }

  .stage-tab small,
  .stage-tab strong {
    max-width: 100%;
  }

  .stage-tab small {
    font-size: 7px;
    letter-spacing: 0.07em;
  }

  .stage-tab strong {
    font-size: 9px;
    line-height: 1.8;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 17px;
  }
}
