:root {
  --ink: #090923;
  --muted: #5d6378;
  --blue: #2f4bff;
  --indigo: #2419a8;
  --violet: #7c3bf0;
  --orange: #f19a66;
  --teal: #1edfe5;
  --soft: #f7f8ff;
  --soft-line: #e6e9f5;
  --shadow: 0 24px 76px rgba(26, 31, 96, 0.18);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
}

h3 {
  font-size: 24px;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 62px;
  padding: 16px clamp(28px, 4.4vw, 72px);
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-right: auto;
  font-size: 22px;
  font-weight: 780;
  letter-spacing: -0.06em;
}

.brand svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

.brand strong {
  color: #d9f9ff;
}

.brand.dark {
  color: var(--ink);
}

.brand.dark strong {
  color: var(--blue);
}

.desktop-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 570;
}

.desktop-nav > a,
.nav-item > a,
.subtle-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.94;
}

.nav-item {
  position: relative;
  padding: 22px 0;
}

.mega-menu {
  position: absolute;
  top: 62px;
  left: 50%;
  display: grid;
  grid-template-columns: 180px 230px 260px;
  gap: 22px;
  width: max-content;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(15, 17, 84, 0.22);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mega-menu.compact {
  grid-template-columns: 250px;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu p {
  margin-bottom: 10px;
  color: #7a8093;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mega-menu a {
  display: block;
  padding: 10px 0;
  color: #1d2340;
  font-weight: 680;
}

.mega-menu a:hover {
  color: var(--blue);
}

.menu-spotlight {
  padding: 18px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, #263dff, #7a3df1);
}

.menu-spotlight span {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.menu-spotlight strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.nav-button,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 127, 236, 0.9), transparent 28%),
    linear-gradient(135deg, #2461ff 0%, #5134f4 52%, #a832ff 100%);
  box-shadow:
    0 20px 48px rgba(55, 37, 190, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18);
  font-weight: 760;
}

.primary-cta::after {
  margin-left: 18px;
  content: "→";
  font-size: 26px;
  font-weight: 520;
  line-height: 1;
}

.mobile-nav {
  display: none;
}

.mobile-nav summary {
  display: grid;
  width: 42px;
  height: 42px;
  align-content: center;
  gap: 5px;
  list-style: none;
  cursor: pointer;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav span {
  display: block;
  width: 22px;
  height: 2px;
  margin-left: auto;
  background: #111;
}

.mobile-nav nav {
  position: absolute;
  top: 68px;
  right: 14px;
  left: 14px;
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 17, 84, 0.16);
}

.mobile-nav nav a {
  padding: 13px 10px;
  color: var(--ink);
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: 100px 28px 0;
  color: #fff;
  background:
    radial-gradient(circle at 87% 9%, rgba(241, 154, 102, 0.9), transparent 28%),
    radial-gradient(circle at 62% 18%, rgba(161, 76, 240, 0.86), transparent 34%),
    radial-gradient(circle at 24% 22%, rgba(67, 50, 237, 0.82), transparent 42%),
    linear-gradient(168deg, #1e16a5 0%, #344dff 60%, #2335d2 100%);
}

.hero-orbit {
  display: none;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: 170px;
  background:
    radial-gradient(circle at 50% 0%, rgba(30, 223, 229, 0.09), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0 78%, #fff 100%);
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  max-width: 900px;
  margin: 18px auto 10px;
  color: #fff;
  font-size: clamp(54px, 6.4vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(22px, 2.15vw, 32px);
  line-height: 1.12;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(100%, 720px);
  margin: 0 auto;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  background: rgba(44, 31, 138, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.stars {
  color: #ffd057;
  letter-spacing: 1px;
}

.choice-label {
  margin: 22px 0 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.choice-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.26), 0 18px 38px rgba(28, 16, 101, 0.22);
}

.choice-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(38px, auto) auto;
  min-height: 122px;
  align-content: start;
  justify-items: start;
  gap: 9px;
  padding: 16px 18px 17px;
  border: 2px solid rgba(18, 25, 61, 0.08);
  border-radius: 9px;
  color: #07081a;
  background:
    linear-gradient(180deg, #fff, #f2f4ff) padding-box,
    linear-gradient(135deg, rgba(49, 88, 255, 0), rgba(49, 88, 255, 0)) border-box;
  box-shadow: 0 10px 24px rgba(22, 21, 84, 0.18);
  font-size: 16px;
  font-weight: 740;
  text-align: left;
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.choice-board:has(.choice-card:hover) .choice-card:not(:hover) {
  opacity: 1;
  color: rgba(7, 8, 26, 0.52);
  border-color: rgba(18, 25, 61, 0.08);
  background: linear-gradient(180deg, #dfe3f2, #cfd5e8);
  filter: saturate(0.58);
  box-shadow: 0 10px 22px rgba(15, 20, 70, 0.12);
}

.choice-board:has(.choice-card:hover) .choice-card:not(:hover)::after,
.choice-board:has(.choice-card:hover) .choice-card:not(:hover) .choice-icon {
  opacity: 0.52;
}

.choice-card:hover {
  z-index: 12;
  opacity: 1;
  color: #07081a;
  filter: none;
  border-color: transparent;
  background:
    linear-gradient(180deg, #fff, #f8faff) padding-box,
    linear-gradient(145deg, #1edfe5 0%, #3158ff 48%, #c747ff 100%) border-box;
  transform: translateY(-6px);
  box-shadow:
    0 0 0 2px rgba(67, 97, 255, 0.28),
    0 0 0 6px rgba(30, 223, 229, 0.18),
    0 0 42px rgba(199, 71, 255, 0.5),
    0 0 34px rgba(30, 223, 229, 0.42),
    0 24px 58px rgba(22, 21, 84, 0.34);
}

.choice-card:hover::after,
.choice-card:hover .choice-icon {
  opacity: 1;
}

.choice-card::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(47, 75, 255, 0.14);
  border-radius: 50%;
  color: #2731c7;
  background: #fff;
  box-shadow: 0 10px 22px rgba(31, 41, 92, 0.13);
  content: "→";
  font-size: 22px;
  font-weight: 760;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.choice-card:hover::after {
  transform: translateX(3px);
  box-shadow: 0 14px 28px rgba(31, 41, 92, 0.18);
}

.choice-card small {
  max-width: calc(100% - 42px);
  color: #6b7287;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
}

.choice-card strong {
  display: flex;
  align-items: center;
  min-height: 38px;
  line-height: 1.05;
}

.choice-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 13px;
  color: #4a42ff;
  background:
    radial-gradient(circle at 68% 22%, rgba(30, 223, 229, 0.72), transparent 34%),
    linear-gradient(145deg, #f5f8ff, #e7edff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 10px 22px rgba(47, 75, 255, 0.16);
}

.choice-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.card-detail {
  position: absolute;
  top: -24px;
  left: calc(100% + 8px);
  z-index: 20;
  display: grid;
  gap: 2px;
  width: 236px;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-8px) scale(0.98);
  transition: opacity 160ms ease, transform 160ms ease;
}

.popup-left .card-detail {
  right: calc(100% + 8px);
  left: auto;
  transform: translateX(8px) scale(0.98);
}

.choice-card:nth-child(5).popup-left .card-detail,
.choice-card:nth-child(4).popup-left .card-detail {
  right: auto;
  left: calc(100% + 8px);
  transform: translateX(-8px) scale(0.98);
}

.choice-card:hover .card-detail,
.choice-card:focus-visible .card-detail {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.card-detail::before {
  position: absolute;
  top: 72px;
  left: -18px;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(30, 223, 229, 0), rgba(30, 223, 229, 0.95));
  box-shadow: 0 0 16px rgba(30, 223, 229, 0.78);
  content: "";
}

.popup-left .card-detail::before {
  right: -18px;
  left: auto;
  background: linear-gradient(270deg, rgba(30, 223, 229, 0), rgba(30, 223, 229, 0.95));
}

.choice-card:nth-child(5).popup-left .card-detail::before,
.choice-card:nth-child(4).popup-left .card-detail::before {
  right: auto;
  left: -18px;
  background: linear-gradient(90deg, rgba(30, 223, 229, 0), rgba(30, 223, 229, 0.95));
}

.detail-panel {
  display: grid;
  gap: 6px;
  padding: 10px 13px;
  border: 1px solid rgba(66, 121, 255, 0.64);
  border-radius: 10px;
  background:
    radial-gradient(circle at 18% 0%, rgba(30, 223, 229, 0.06), transparent 30%),
    linear-gradient(180deg, #07133f, #050922);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(30, 223, 229, 0.12),
    0 14px 34px rgba(4, 10, 43, 0.36);
}

.detail-panel b {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  letter-spacing: -0.015em;
}

.detail-panel i {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  font-size: 13px;
  font-weight: 650;
}

.logo-chip,
.check-chip {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 16px rgba(0, 0, 0, 0.18);
}

.logo-chip img {
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.96);
}

.check-chip {
  border-radius: 50%;
  background: linear-gradient(145deg, #1edfe5, #1660ff);
  font-size: 12px;
}

.hubspot { background: #ff5c35; }
.linkedin { background: #0a66c2; }
.salesforce { background: #00a1e0; }
.slack { background: #4a154b; }
.crm { background: linear-gradient(145deg, #2365ff, #7d5cff); }
.zoominfo { background: #4f46e5; }
.zoom { background: #2d8cff; }
.gong { background: #7a3df1; }
.slides { background: #f6b800; color: #14204a; }
.web { background: #111827; }
.g2 { background: #ff492c; }
.docs { background: #4285f4; }
.asana { background: #fc636b; }
.webflow { background: #146ef5; }
.dashboard { background: linear-gradient(145deg, #1edfe5, #1749ff); }

.document-chip {
  position: relative;
  background: linear-gradient(145deg, #eef4ff, #dce7ff);
}

.document-chip::before {
  position: absolute;
  inset: 5px 7px;
  border: 2px solid #3158ff;
  border-radius: 3px;
  background:
    linear-gradient(#3158ff, #3158ff) 4px 6px / 8px 1.5px no-repeat,
    linear-gradient(#3158ff, #3158ff) 4px 10px / 6px 1.5px no-repeat,
    #fff;
  content: "";
}

.document-chip::after {
  position: absolute;
  top: 5px;
  right: 7px;
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, transparent 50%, #9db5ff 0);
  content: "";
}

.alert-chip {
  color: #fff;
  background:
    radial-gradient(circle at 68% 18%, rgba(255, 255, 255, 0.44), transparent 30%),
    linear-gradient(145deg, #1edfe5, #3158ff 64%, #7a3df1);
  font-size: 13px;
  font-weight: 900;
  text-shadow: 0 1px 8px rgba(8, 12, 42, 0.34);
}

@media (min-width: 1500px) {
  .choice-card:nth-child(6).popup-left .card-detail {
    right: auto;
    left: calc(100% + 8px);
    transform: translateX(-8px) scale(0.98);
  }

  .choice-card:nth-child(6).popup-left .card-detail::before {
    right: auto;
    left: -18px;
    background: linear-gradient(90deg, rgba(30, 223, 229, 0), rgba(30, 223, 229, 0.95));
  }
}

.primary-cta {
  margin-top: 24px;
  min-width: 315px;
  min-height: 68px;
  padding-inline: 34px;
  font-size: 18px;
}

.partner-strip {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: clamp(22px, 3vh, 34px) auto 0;
  padding: 10px 0 36px;
  color: rgba(255, 255, 255, 0.74);
}

.partner-strip p {
  margin-bottom: 18px;
  color: rgba(238, 243, 255, 0.74);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.005em;
}

.partner-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.partner-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  gap: clamp(42px, 6.5vw, 82px);
  animation: partner-scroll 68s linear infinite;
}

.partner-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(238, 243, 255, 0.82);
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 540;
  letter-spacing: -0.015em;
  white-space: nowrap;
  text-shadow: 0 10px 22px rgba(8, 13, 70, 0.22);
}

.text-logo {
  opacity: 0.9;
}

.logo-wordmark img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1) drop-shadow(0 8px 18px rgba(255, 255, 255, 0.12));
  opacity: 0.54;
}

.brand-glyph {
  position: relative;
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 420;
  letter-spacing: -0.02em;
  opacity: 0.54;
}

.slack-glyph i {
  position: absolute;
  width: 9px;
  height: 15px;
  border-radius: 999px;
  background: currentColor;
}

.slack-glyph i:nth-child(1) {
  top: 2px;
  left: 8px;
}

.slack-glyph i:nth-child(2) {
  right: 2px;
  top: 8px;
  transform: rotate(90deg);
}

.slack-glyph i:nth-child(3) {
  right: 8px;
  bottom: 2px;
}

.slack-glyph i:nth-child(4) {
  left: 2px;
  bottom: 8px;
  transform: rotate(90deg);
}

.aws-glyph {
  font-size: 12px;
  font-weight: 900;
}

.aws-glyph::after {
  position: absolute;
  right: 3px;
  bottom: 4px;
  left: 4px;
  height: 7px;
  border-bottom: 2px solid currentColor;
  border-radius: 0 0 50% 50%;
  content: "";
}

.openai-glyph {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.openai-glyph i {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.openai-glyph i:nth-child(1) {
  transform: rotate(0deg);
}

.openai-glyph i:nth-child(2) {
  transform: rotate(60deg);
}

.openai-glyph i:nth-child(3) {
  transform: rotate(120deg);
}

.microsoft-glyph {
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 24px;
  height: 24px;
}

.microsoft-glyph i {
  display: block;
  width: 11px;
  height: 11px;
  background: currentColor;
}

.salesforce-glyph {
  width: 32px;
  height: 22px;
  border-radius: 999px;
  background: currentColor;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
}

.salesforce-glyph::before,
.salesforce-glyph::after {
  position: absolute;
  top: -4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.salesforce-glyph::before {
  left: 4px;
}

.salesforce-glyph::after {
  right: 4px;
}

.salesforce-glyph {
  color: #fff;
}

.salesforce-glyph {
  box-shadow: inset 0 0 0 999px #fff;
  color: #263dff;
}

@keyframes partner-scroll {
  to {
    transform: translateX(-50%);
  }
}

.hero-orbit {
  display: none;
}

.orbit-one {
  left: -120px;
  top: 130px;
}

.orbit-two {
  right: -190px;
  bottom: -120px;
}

.orbit-three {
  top: 38%;
  left: 50%;
  width: 980px;
  height: 980px;
  transform: translateX(-50%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
}

.glow-one {
  width: 260px;
  height: 260px;
  right: 16%;
  top: 15%;
  background: var(--orange);
}

.glow-two {
  width: 320px;
  height: 320px;
  left: 6%;
  bottom: 10%;
  background: var(--teal);
}

.process-section,
.partner-process,
.workflow-ribbon,
.results-section,
.teams-section,
.resource-section,
.systems-section,
.faq-section,
.pricing-section,
.final-cta {
  padding: clamp(72px, 8vw, 112px) 28px;
}

.section-copy,
.results-heading,
.final-cta > div {
  max-width: 1120px;
  margin-inline: auto;
}

.section-copy.centered {
  text-align: center;
}

.section-copy p:last-child {
  max-width: 760px;
  margin: 20px auto 0;
  font-size: 20px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #4f3cff;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-process {
  position: relative;
  padding-top: clamp(34px, 4vw, 50px);
  padding-bottom: clamp(24px, 3vw, 40px);
  margin-top: -1px;
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 75, 255, 0.035), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fff 68%, #f8faff 100%);
}

.partner-process::before {
  position: absolute;
  top: -150px;
  right: 0;
  left: 0;
  height: 210px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 72%);
  content: "";
  pointer-events: none;
}

.partner-process > * {
  position: relative;
  z-index: 1;
}

.partner-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 22px;
  max-width: 1360px;
  margin: 38px auto 0;
  overflow-x: auto;
  padding: 8px 4px 8px;
  scroll-snap-type: x proximity;
}

.partner-steps article {
  display: grid;
  grid-template-rows: 330px auto 1fr;
  min-width: 210px;
  scroll-snap-align: center;
}

.partner-steps h3 {
  margin-top: 22px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.partner-steps p {
  margin-top: 11px;
  font-size: 16px;
}

.step-visual {
  position: relative;
  overflow: hidden;
  height: 330px;
  min-height: 330px;
  padding: 24px;
  border: 1px solid rgba(8, 11, 36, 0.14);
  border-radius: 13px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 178, 108, 0.96), transparent 28%),
    radial-gradient(circle at 15% 86%, rgba(244, 118, 255, 0.76), transparent 26%),
    linear-gradient(180deg, #111623 0%, #18233d 46%, #6068d9 100%);
  box-shadow: 0 28px 80px rgba(22, 23, 60, 0.22);
}

.step-visual::after {
  position: absolute;
  right: -5%;
  bottom: -1px;
  left: -5%;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 84%);
  content: "";
}

.visual-chip {
  position: relative;
  z-index: 2;
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 760;
}

.node-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
}

.node-row i,
.test-list i {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-style: normal;
  font-size: 12px;
  font-weight: 720;
}

.node-row b {
  width: 22px;
  height: 1px;
  background: rgba(255, 255, 255, 0.48);
}

.scope-card,
.agent-window,
.feedback-card {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  font-weight: 780;
}

.scope-card.secondary {
  width: 78%;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.agent-window strong,
.agent-window small {
  display: block;
}

.agent-window small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.automation-line {
  position: relative;
  z-index: 2;
  width: 3px;
  height: 92px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(#1edfe5, rgba(255, 255, 255, 0.2));
}

.score-ring {
  position: relative;
  z-index: 2;
  display: grid;
  width: 126px;
  height: 126px;
  margin: 46px auto 22px;
  place-items: center;
  border: 10px solid rgba(30, 223, 229, 0.82);
  border-left-color: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 30px;
  font-weight: 840;
}

.test-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 9px;
}

.improve-visual .feedback-card {
  margin-top: 42px;
}

.improve-visual .feedback-card + .feedback-card {
  width: 86%;
  margin-top: 14px;
  margin-left: auto;
}

.scale-metric {
  position: relative;
  z-index: 2;
  margin-top: 58px;
  color: #fff;
  font-size: 62px;
  font-weight: 860;
  letter-spacing: -0.03em;
}

.scale-visual small {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.74);
}

.scale-bars {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  gap: 9px;
  margin-top: 34px;
}

.scale-bars i {
  flex: 1;
  border-radius: 9px 9px 0 0;
  background: linear-gradient(180deg, #1edfe5, #2f4bff);
}

.scale-bars i:nth-child(1) { height: 46px; }
.scale-bars i:nth-child(2) { height: 76px; }
.scale-bars i:nth-child(3) { height: 104px; }
.scale-bars i:nth-child(4) { height: 138px; }

.showcase-card span,
.team-shell span,
.pricing-card span,
.resource-list span {
  display: block;
  margin-bottom: 30px;
  color: #4f3cff;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-card p {
  margin-top: 14px;
}

.mini-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 90px;
}

.mini-board i {
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--soft-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31, 41, 92, 0.07);
  color: #252b47;
  font-style: normal;
  font-weight: 720;
}

.workflow-ribbon {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(520px, 0.98fr);
  align-items: center;
  gap: clamp(34px, 4.2vw, 60px);
  width: 100%;
  max-width: none;
  margin: 0;
  padding:
    clamp(38px, 4vw, 56px)
    max(28px, calc((100vw - 1320px) / 2))
    clamp(66px, 6vw, 92px);
  background:
    radial-gradient(circle at 70% 20%, rgba(30, 223, 229, 0.12), transparent 24%),
    linear-gradient(180deg, #f8faff 0%, #f8faff 100%);
}

.workflow-ribbon::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 86px;
  background: linear-gradient(180deg, #f8faff, rgba(248, 250, 255, 0));
  content: "";
  pointer-events: none;
}

.workflow-ribbon > * {
  position: relative;
  z-index: 1;
}

.workflow-ribbon .section-copy h2 {
  font-size: clamp(34px, 3.85vw, 54px);
}

.workflow-ribbon .section-copy p:last-child {
  max-width: 600px;
  margin-top: 16px;
  font-size: 17px;
}

.mockup-panel {
  overflow: hidden;
  border: 1px solid #dbe0ef;
  border-radius: 32px;
  background: linear-gradient(180deg, #fff, #f5f7ff);
  box-shadow: var(--shadow);
}

.scale-diagram {
  position: relative;
  overflow: hidden;
  width: min(100%, 630px);
  min-height: 460px;
  justify-self: end;
  padding: 26px 30px 32px;
  border: 1px solid #dbe0ef;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 16%, rgba(30, 223, 229, 0.18), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
  box-shadow: var(--shadow);
}

.scale-diagram::before {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image:
    linear-gradient(rgba(10, 35, 138, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 35, 138, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
}

.diagram-card,
.diagram-hub {
  position: relative;
  z-index: 2;
  border: 1px solid #dfe6f5;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(33, 53, 112, 0.1);
}

.diagram-card {
  min-height: 104px;
  padding: 16px;
}

.diagram-card span,
.diagram-hub span {
  display: block;
  color: #59627a;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diagram-card strong,
.diagram-hub strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.diagram-card small {
  display: inline-flex;
  margin-top: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #0a6a57;
  background: #e8fbf6;
  font-weight: 760;
}

.pilot-card {
  width: min(360px, 72%);
  margin: 0 auto;
  border-color: rgba(47, 75, 255, 0.24);
  background: linear-gradient(180deg, #fff, #eef3ff);
}

.diagram-arrow {
  position: relative;
  z-index: 2;
  width: 2px;
  height: 34px;
  margin: 6px auto 0;
  background: linear-gradient(180deg, rgba(47, 75, 255, 0.18), rgba(47, 75, 255, 0.8));
}

.diagram-arrow::after {
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(47, 75, 255, 0.82);
  border-bottom: 2px solid rgba(47, 75, 255, 0.82);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.diagram-hub {
  width: min(420px, 78%);
  margin: 6px auto 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(145deg, #1749ff, #1edfe5);
  text-align: center;
}

.diagram-hub span,
.diagram-hub strong {
  color: #fff;
}

.diagram-hub strong {
  font-size: 24px;
}

.branch-title {
  position: relative;
  z-index: 2;
  margin: 20px auto 0;
  color: #4f5870;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.diagram-branches {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 62%;
  height: 54px;
  margin: 4px auto 0;
}

.diagram-branches::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 24px;
  background: #aeb8d8;
  content: "";
}

.diagram-branches::after {
  position: absolute;
  top: 24px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: #aeb8d8;
  content: "";
}

.diagram-branches i {
  position: relative;
}

.diagram-branches i::after {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 1px;
  height: 30px;
  background: #aeb8d8;
  content: "";
}

.workflow-scale-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 0 auto;
}

.workflow-scale-grid .diagram-card {
  min-height: 118px;
  border-top: 4px solid #84d8bd;
}

.workflow-scale-grid .diagram-card.building {
  border-top-color: #9fb7ff;
}

.workflow-scale-grid .diagram-card.building small {
  color: #1749ff;
  background: #edf2ff;
}

.browser-bar {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid #e7eaf5;
}

.browser-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #cbd1e6;
}

.workflow-canvas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 34px;
}

.signal-card,
.agent-card,
.play-card {
  min-height: 104px;
  padding: 20px;
  border: 1px solid #e0e5f2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(35, 54, 110, 0.08);
  font-weight: 720;
}

.agent-card {
  grid-column: span 2;
  color: #fff;
  background: linear-gradient(145deg, #254cff, #1edfe5);
}

.agent-card strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  letter-spacing: -0.025em;
}

.play-card {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.play-card span {
  color: #00886c;
  font-size: 13px;
}

.results-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(44px, 5vw, 68px);
  padding-bottom: clamp(132px, 12vw, 190px);
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(47, 75, 255, 0.38), transparent 30%),
    #0c0d2f;
}

.results-section::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 190px;
  background:
    radial-gradient(ellipse at 70% 48%, rgba(30, 223, 229, 0.18), transparent 30%),
    radial-gradient(ellipse at 34% 60%, rgba(47, 75, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(12, 13, 47, 0), rgba(247, 248, 255, 0.94) 58%, #f7f8ff 100%);
  content: "";
  pointer-events: none;
}

.results-heading h2,
.results-heading .eyebrow {
  color: #fff;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 54px auto 0;
}

.results-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.results-grid strong {
  display: block;
  color: #fff;
  font-size: clamp(44px, 5vw, 64px);
  letter-spacing: -0.025em;
}

.results-grid span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.teams-section {
  position: relative;
  margin-top: -1px;
  background:
    radial-gradient(circle at 72% 0%, rgba(30, 223, 229, 0.08), transparent 28%),
    linear-gradient(180deg, #f7f8ff 0%, #f4f6ff 100%);
  text-align: center;
}

.team-shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 58px auto 0;
  text-align: left;
}

.team-shell article {
  min-height: 320px;
  padding: 30px;
  border: 1px solid #e1e5f1;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(31, 41, 92, 0.07);
}

.team-shell p {
  margin-top: 18px;
}

.resource-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1120px;
  margin: 0 auto;
  padding-bottom: clamp(36px, 5vw, 58px);
}

.resource-list {
  display: grid;
  gap: 14px;
}

.resource-list a {
  padding: 22px;
  border: 1px solid var(--soft-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(31, 41, 92, 0.07);
  font-weight: 720;
}

.resource-list span {
  margin-bottom: 6px;
}

.systems-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(42px, 6vw, 66px);
  padding-bottom: clamp(36px, 4.4vw, 58px);
  background: #fff;
}

.systems-section::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: 180px;
  background:
    radial-gradient(ellipse at 50% 22%, rgba(30, 223, 229, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), #f7f8ff 72%);
  content: "";
  pointer-events: none;
}

.systems-grid-bg {
  position: absolute;
  inset: 0 0 auto;
  height: 590px;
  opacity: 0.74;
  background-image:
    linear-gradient(rgba(9, 9, 35, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 9, 35, 0.08) 1px, transparent 1px);
  background-size: 96px 70px;
  transform: perspective(760px) rotateX(58deg) scale(1.22);
  transform-origin: top center;
  pointer-events: none;
  mask-image: linear-gradient(180deg, #000 0%, #000 44%, rgba(0, 0, 0, 0.18) 70%, transparent 94%);
}

.systems-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
  max-width: 1200px;
  margin: 0 auto;
}

.systems-copy h2 {
  max-width: 540px;
  font-size: clamp(40px, 4.6vw, 62px);
}

.systems-copy p:not(.systems-tag) {
  max-width: 620px;
  margin-top: 26px;
  color: #2c3140;
  font-size: 19px;
}

.systems-tag {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 7px 15px;
  border: 1px solid #171923;
  color: #171923;
  background: rgba(255, 255, 255, 0.82);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.systems-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 18px 24px;
  color: #fff;
  background: #1749ff;
  font-size: 18px;
  font-weight: 760;
  box-shadow: 0 18px 40px rgba(23, 73, 255, 0.24);
}

.integration-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(26px, 4vw, 44px);
  padding: clamp(36px, 5vw, 64px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 110%, rgba(30, 223, 229, 0.26), transparent 26%),
    linear-gradient(180deg, #aed1ff 0%, #6289cf 42%, #0a238a 100%);
  box-shadow: 0 30px 70px rgba(10, 35, 138, 0.24);
}

.integration-logo {
  position: relative;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(10, 35, 138, 0.08);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #fff, #eef5ff 72%);
  box-shadow:
    0 18px 34px rgba(8, 20, 70, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.integration-logo::after {
  position: absolute;
  right: 10px;
  bottom: -34px;
  left: 10px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.22), transparent 72%);
  content: "";
}

.integration-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.systems-glyph {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.systems-salesforce {
  width: 42px;
  height: 28px;
  border-radius: 999px;
  background: #00a1e0;
  color: #fff;
}

.systems-marketo {
  color: #5c4ee5;
  font-size: 11px;
}

.systems-workday {
  position: relative;
  color: #005cb9;
  font-size: 22px;
}

.systems-workday::before {
  position: absolute;
  top: -3px;
  width: 30px;
  height: 14px;
  border-top: 4px solid #f6a800;
  border-radius: 50% 50% 0 0;
  content: "";
}

.production-stripe {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 20px;
  align-items: center;
  max-width: 1120px;
  margin: 20px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(9, 9, 35, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(31, 41, 92, 0.05);
}

.production-stripe h2 {
  font-size: clamp(14px, 1.25vw, 18px);
  letter-spacing: -0.015em;
}

.production-stripe p {
  color: #5b5d66;
  font-size: 13px;
  text-align: left;
}

.pricing-section {
  padding-top: clamp(24px, 3vw, 38px);
  padding-bottom: clamp(38px, 4vw, 56px);
  background: #f7f8ff;
}

.pricing-panel {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 42px;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid #e1e5f1;
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.pricing-panel h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.pricing-card {
  padding: 28px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(145deg, #263dff, #7a3df1);
}

.pricing-card span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-card strong {
  display: block;
  color: #fff;
  font-size: 28px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.pricing-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.pricing-card a {
  display: inline-flex;
  margin-top: 28px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #fff;
  color: #263dff;
  font-weight: 800;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-top: clamp(58px, 6vw, 82px);
  padding-bottom: clamp(64px, 6vw, 88px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 8%, rgba(241, 154, 102, 0.46), transparent 30%),
    linear-gradient(105deg, #2634e8 0%, #4234ee 46%, #8038f1 100%);
  text-align: center;
}

.final-cta::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 160px;
  background: linear-gradient(105deg, #2634e8 0%, #4234ee 46%, #8038f1 100%);
  content: "";
  mask-image: linear-gradient(180deg, transparent 0%, #000 72%);
  pointer-events: none;
}

.final-cta > div {
  position: relative;
  z-index: 1;
}

.final-cta h2,
.final-cta .eyebrow {
  color: #fff;
}

.final-cta p {
  max-width: 690px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.audit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 34px auto 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(6, 14, 62, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 26px 80px rgba(5, 11, 48, 0.18);
  backdrop-filter: blur(18px);
}

.audit-form label {
  display: grid;
  gap: 8px;
  text-align: left;
}

.audit-form label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-form input,
.audit-form select,
.audit-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: #08091f;
  font: inherit;
  font-size: 15px;
  outline: 0;
  padding: 14px 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.audit-form textarea {
  resize: vertical;
}

.audit-form input:focus,
.audit-form select:focus,
.audit-form textarea:focus {
  border-color: rgba(30, 223, 229, 0.8);
  box-shadow:
    0 0 0 4px rgba(30, 223, 229, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.audit-form-wide,
.audit-form .primary-cta,
.form-status {
  grid-column: 1 / -1;
}

.audit-form .primary-cta {
  justify-self: center;
  border: 0;
  cursor: pointer;
}

.audit-form .primary-cta[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.field-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.faq-section {
  background: #fff;
  padding-top: clamp(58px, 7vw, 84px);
  padding-bottom: clamp(62px, 7vw, 90px);
}

.faq-section .section-copy h2 {
  font-size: clamp(36px, 4.2vw, 54px);
  color: var(--ink);
  font-weight: 800;
}

.faq-section .section-copy p {
  margin-top: 16px;
  color: #5e6068;
  font-size: 18px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  max-width: 1400px;
  margin: clamp(42px, 6vw, 64px) auto 0;
}

.faq-grid details {
  background: #f5f5f6;
}

.faq-grid summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 20px 58px 20px 24px;
  color: #202126;
  font-size: clamp(18px, 1.32vw, 21px);
  font-weight: 540;
  letter-spacing: -0.015em;
  list-style: none;
  cursor: pointer;
}

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

.faq-grid summary::after {
  position: absolute;
  top: 50%;
  right: 28px;
  color: #202126;
  content: "+";
  font-size: 30px;
  font-weight: 360;
  transform: translateY(-50%);
}

.faq-grid details[open] summary::after {
  content: "-";
}

.faq-grid details p {
  padding: 0 24px 24px;
  color: #5e6068;
  font-size: 16px;
}

.site-footer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 28px 26px;
  border-top: 0;
  color: #fff;
  background: linear-gradient(105deg, #2634e8 0%, #4234ee 46%, #8038f1 100%);
  isolation: isolate;
}

.site-footer::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 0;
  height: 118px;
  background: linear-gradient(180deg, rgba(128, 56, 241, 0), rgba(238, 244, 255, 0.56) 74%, #eef4ff);
  content: "";
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.site-footer .brand.dark {
  color: #fff;
}

.site-footer .brand.dark strong {
  color: #d9f9ff;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.footer-legal {
  flex-basis: 100%;
  margin-top: 24px;
  color: rgba(8, 12, 42, 0.58);
  font-size: 12px;
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .site-header {
    position: relative;
    color: var(--ink);
    background: #fff;
  }

  .brand strong {
    color: var(--blue);
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .choice-board,
  .results-grid,
  .team-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-detail {
    display: none;
  }

  .workflow-ribbon,
  .resource-section,
  .systems-panel,
  .production-stripe,
  .faq-grid,
  .pricing-panel {
    grid-template-columns: 1fr;
  }

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

  .partner-steps {
    grid-template-columns: repeat(5, minmax(245px, 1fr));
  }

  .production-stripe p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 18px;
  }

  .hero {
    padding: 50px 16px 0;
  }

  .hero h1 {
    font-size: 36px;
    letter-spacing: -0.02em;
  }

  .hero-subtitle,
  .choice-label,
  .final-cta p {
    font-size: 17px;
  }

  .audit-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .trust-pill {
    font-size: 12px;
  }

  .choice-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    overflow: hidden;
  }

  .choice-card {
    min-height: 104px;
    padding: 12px 8px;
    font-size: 14px;
  }

  .choice-card small {
    display: none;
  }

  .card-detail {
    display: none;
  }

  .choice-card strong {
    min-height: 34px;
  }

  .primary-cta {
    width: min(100%, 292px);
  }

  .partner-strip {
    margin-top: 54px;
    padding-bottom: 58px;
    text-align: center;
  }

  .partner-strip p {
    margin-bottom: 22px;
    font-size: 15px;
  }

  .partner-track {
    gap: 36px;
  }

  .process-section,
  .partner-process,
  .workflow-ribbon,
  .results-section,
  .teams-section,
  .resource-section,
  .systems-section,
  .faq-section,
  .pricing-section,
  .final-cta {
    padding: 70px 18px;
  }

  .choice-board,
  .results-grid,
  .team-shell,
  .workflow-canvas,
  .workflow-scale-grid {
    grid-template-columns: 1fr;
  }

  .partner-steps {
    grid-template-columns: 1fr;
    gap: 28px;
    overflow-x: visible;
    padding-inline: 0;
  }

  .partner-steps article {
    grid-template-rows: 290px auto 1fr;
  }

  .systems-copy h2,
  .faq-section .section-copy h2 {
    font-size: 38px;
  }

  .systems-tag {
    margin-bottom: 18px;
  }

  .integration-card {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 30px 20px 44px;
  }

  .integration-logo {
    width: 62px;
    height: 62px;
  }

  .production-stripe {
    gap: 18px;
    margin-top: 22px;
  }

  .faq-grid {
    gap: 5px;
    margin-top: 44px;
  }

  .faq-grid summary {
    min-height: 72px;
    padding: 20px 58px 20px 20px;
    font-size: 20px;
  }

  .faq-grid summary::after {
    right: 20px;
  }

  .step-visual {
    height: 290px;
    min-height: 290px;
  }

  .scale-diagram {
    min-height: auto;
    padding: 22px;
  }

  .diagram-hub {
    margin-top: 28px;
  }

  .diagram-branches {
    display: none;
  }

  .workflow-scale-grid {
    margin-top: 18px;
  }

  .agent-card,
  .play-card {
    grid-column: auto;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    margin-left: 0;
  }
}
