:root {
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --ink: #07162e;
  --ink-soft: #243650;
  --muted: #5f6f86;
  --blue: #0675e8;
  --blue-bright: #03a9ff;
  --blue-soft: #eaf6ff;
  --amber: #f5a400;
  --amber-soft: #fff6dd;
  --green: #19b981;
  --teal: #00bfa6;
  --red: #ef476f;
  --page: #ffffff;
  --page-soft: #f6fbff;
  --panel: #ffffff;
  --line: #dce8f5;
  --line-strong: #b7cbe1;
  --dark: #03152d;
  --dark-2: #001026;
  --dark-panel: #09213d;
  --shadow: 0 18px 50px rgba(27, 57, 99, 0.11);
  --shadow-soft: 0 10px 28px rgba(27, 57, 99, 0.08);
  --radius: 8px;
  --container: 1216px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

:where(a, button, [role="tab"], [tabindex]):focus-visible {
  outline: 3px solid rgba(3, 169, 255, 0.72);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section-pad,
.section-padding {
  padding: 88px 0;
}

.section-heading {
  max-width: 560px;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h1,
.section-heading h2,
.heading-section,
.heading-hero {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.section-heading h2,
.heading-section {
  font-size: 40px;
}

.heading-hero {
  font-size: 64px;
}

.section-heading p,
.body-lg,
.body-md {
  color: var(--muted);
  line-height: 1.65;
}

.body-lg {
  font-size: 18px;
}

.body-md {
  font-size: 16px;
}

.section-kicker,
.label-tag {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-kicker.amber,
.label-tag[style*="amber"] {
  color: var(--amber);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.text-link::after {
  content: "";
  width: 16px;
  height: 10px;
  background: currentColor;
  clip-path: polygon(0 42%, 72% 42%, 52% 12%, 64% 0, 100% 50%, 64% 100%, 52% 88%, 72% 58%, 0 58%);
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn svg {
  width: 17px;
  height: 17px;
  transition: transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:hover svg {
  transform: translateX(3px);
}

.hero-secondary-action:hover svg {
  transform: translateY(3px);
}

.btn-primary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(6, 117, 232, 0.23);
}

.btn-primary:hover {
  background: #0065cf;
  box-shadow: 0 16px 28px rgba(6, 117, 232, 0.28);
}

.btn-secondary,
.btn-secondary-light {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary-light:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.page-top {
  padding-top: 0;
}

/* Shared navigation */
#site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

#site-nav.scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 28px rgba(0, 16, 38, 0.24);
}

.nav-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 1;
}

.brand-wordmark img {
  width: auto;
  height: 45px;
  max-width: 250px;
  object-fit: contain;
}

.footer-logo img {
  height: 38px;
  max-width: 220px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a,
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #eaf6ff;
  background: transparent;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
}

.nav-links a:hover,
.nav-dropdown-trigger:hover {
  color: #ffffff;
}

.nav-links a[aria-current="page"] {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 238px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, -6px);
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 20px;
}

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

.nav-dropdown-menu a {
  display: flex;
  padding: 12px;
  border-radius: 6px;
  color: var(--ink-soft);
}

.nav-dropdown-menu a:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

.nav-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
}

.nav-login,
.nav-cta {
  min-height: 40px;
  padding: 0 16px;
}

.nav-login {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
}

.nav-login:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.54);
}

.nav-cta.btn-primary {
  color: var(--blue);
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 24px rgba(0, 16, 38, 0.24);
}

.nav-cta.btn-primary:hover {
  color: #0059bd;
  background: var(--blue-soft);
  box-shadow: 0 16px 30px rgba(0, 16, 38, 0.28);
}

.nav-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

/* Homepage hero */
.signal-hero {
  min-height: 760px;
  padding: 144px 0 70px;
  background:
    linear-gradient(122deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 46%, rgba(237, 247, 255, 0.84) 100%),
    linear-gradient(90deg, #ffffff 0%, #f4fbff 100%);
  position: relative;
  overflow: hidden;
}

.signal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(6, 117, 232, 0.16) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(100deg, transparent 0%, transparent 52%, #000 72%, transparent 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(500px, 1.08fr);
  grid-template-areas:
    "copy visual"
    "metrics visual";
  column-gap: 52px;
  row-gap: 30px;
  align-items: center;
}

.hero-copy {
  grid-area: copy;
  align-self: end;
}

.hero-copy h1 {
  max-width: 610px;
  margin: 0;
  color: var(--ink);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero-lede {
  max-width: 470px;
  margin: 28px 0 30px;
  color: var(--ink-soft);
  font-size: 22px;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.metric-row {
  grid-area: metrics;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 520px;
}

.metric {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
}

.metric-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #b8dcff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(6, 117, 232, 0.09);
}

.metric-icon svg {
  width: 24px;
  height: 24px;
}

.metric strong {
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.metric span:last-child {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.35;
}

.identity-map {
  position: relative;
  grid-area: visual;
  margin: 0;
}

.hero-asset-card {
  display: grid;
  min-height: clamp(320px, 38vw, 520px);
  align-content: center;
  place-items: center;
  overflow: hidden;
}

.hero-asset-card img {
  width: min(100%, 760px);
  height: auto;
  border-radius: 0;
  filter: none;
  animation: identity-map-breathe 6.8s ease-in-out infinite;
  transform-origin: center;
}

.resolution-status {
  display: grid;
  width: min(100%, 590px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: -18px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

.resolution-stage {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 2px solid var(--line);
  animation: resolution-stage-cycle 6.8s ease-in-out infinite;
}

.resolution-stage i {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: currentColor;
  border-radius: 50%;
}

.resolution-stage:nth-child(2) {
  animation-delay: 2.15s;
}

.resolution-stage:nth-child(3) {
  animation-delay: 4.3s;
}

@keyframes identity-map-breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.012); }
}

@keyframes resolution-stage-cycle {
  0%, 27%, 100% {
    color: var(--muted);
    border-top-color: var(--line);
  }
  8%, 20% {
    color: var(--blue);
    border-top-color: var(--blue);
  }
}

.signal-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.line {
  fill: none;
  stroke-width: 3;
  stroke-dasharray: 12 13;
  animation: dash 5.8s linear infinite;
  opacity: 0.88;
}

.line.blue {
  stroke: var(--blue-bright);
}

.line.amber {
  stroke: var(--amber);
}

.delay-1 { animation-delay: 0s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.8s; }
.delay-4 { animation-delay: 1.2s; }
.delay-5 { animation-delay: 1.6s; }
.delay-6 { animation-delay: 2s; }

@keyframes dash {
  to { stroke-dashoffset: -210; }
}

.source-card,
.profile-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #c7dbf0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.source-card {
  display: flex;
  width: 150px;
  min-height: 76px;
  align-items: center;
  gap: 10px;
  padding: 12px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.source-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 6px;
}

.source-icon svg {
  width: 20px;
  height: 20px;
}

.source-a {
  top: 30px;
  left: 96px;
}

.source-b {
  top: 166px;
  left: 56px;
}

.source-c {
  bottom: 92px;
  left: 90px;
}

.identity-core {
  position: absolute;
  top: 205px;
  left: 50%;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border: 4px solid var(--blue);
  border-radius: 50%;
  background: #ffffff;
  transform: translateX(-50%);
  box-shadow: 0 22px 42px rgba(6, 117, 232, 0.18);
}

.avatar-core {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
}

.avatar-core svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.8;
}

.verified-dot {
  position: absolute;
  right: 2px;
  bottom: 7px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: var(--green);
  border: 4px solid #ffffff;
  border-radius: 50%;
}

.verified-dot svg {
  width: 17px;
  height: 17px;
  stroke-width: 3;
}

.profile-card {
  top: 165px;
  right: 8px;
  width: 214px;
  padding: 18px;
}

.profile-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.profile-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  color: #ffffff;
  background: var(--blue);
  border-radius: 50%;
  font-weight: 800;
}

.profile-top strong,
.profile-top span {
  display: block;
}

.profile-top strong {
  font-size: 14px;
}

.profile-top span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.profile-card dl {
  display: grid;
  gap: 11px;
  margin: 0 0 16px;
}

.profile-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.profile-card dt,
.profile-card dd {
  margin: 0;
}

.profile-card dd {
  color: var(--green);
  font-weight: 800;
}

.channel-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.channel-row span {
  display: grid;
  min-height: 28px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
}

/* Problem */
.problem-band {
  background: #00102c;
  color: #ffffff;
  padding: 66px 0;
  overflow: hidden;
}

.problem-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.funnel-visual {
  position: relative;
  display: grid;
  min-height: 270px;
  place-items: center;
  overflow: hidden;
}

.section-diagram {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.dark-funnel-img {
  width: min(100%, 620px);
  border-radius: 0;
  filter: none;
  animation: funnel-focus 7.2s ease-in-out infinite;
  transform-origin: 50% 70%;
}

@keyframes funnel-focus {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.95; }
  50% { transform: translateY(3px) scale(1.018); opacity: 1; }
}

.funnel-avatars {
  position: absolute;
  top: 0;
  left: 12%;
  display: grid;
  width: 340px;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px 20px;
}

.funnel-avatars span {
  display: block;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 -7px 0 rgba(255, 255, 255, 0.08);
}

.funnel-shape {
  position: absolute;
  top: 56px;
  left: 6%;
  width: 390px;
  height: 150px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50% 50% 16px 16px / 20% 20% 80% 80%;
  clip-path: polygon(0 0, 100% 0, 57% 100%, 43% 100%);
}

.question-mark {
  position: absolute;
  top: 184px;
  left: 235px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--amber);
  border: 2px solid var(--amber);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
}

.problem-copy .section-kicker {
  color: var(--amber);
}

.problem-copy h2 {
  max-width: 460px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.12;
}

.problem-copy p:last-child {
  max-width: 470px;
  margin: 0;
  color: #d8e8f8;
  font-size: 17px;
  line-height: 1.6;
}

/* Workflow */
.workflow-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.workflow-header {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(320px, 0.55fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 42px;
}

.workflow-header h2 {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.08;
}

.workflow-header > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.identity-graph-flow {
  --workflow-progress: 8%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  padding: 24px 20px 26px;
  margin: 0 auto;
  background: transparent;
  border: 0;
}

.identity-graph-flow::before,
.identity-graph-flow::after {
  content: "";
  position: absolute;
  top: 112px;
  left: 10%;
  height: 2px;
  pointer-events: none;
}

.identity-graph-flow::before {
  right: 10%;
  background: var(--line);
}

.identity-graph-flow::after {
  width: var(--workflow-progress);
  max-width: 80%;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright), var(--amber));
  transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-step {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  justify-items: center;
  min-width: 0;
  padding: 0 18px;
  text-align: center;
  z-index: 1;
  transition: color 280ms ease, transform 280ms ease;
}

.graph-step:not(:last-child) {
  border-right: 0;
}

.identity-graph-visual {
  display: flex;
  width: 100%;
  height: 144px;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
}

.identity-graph-visual img {
  width: 100%;
  max-width: 180px;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  opacity: 0.62;
  transform: translateY(3px) scale(0.96);
  transition: opacity 360ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.step-number {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  margin: 0;
  color: #ffffff;
  background: var(--blue);
  border: 3px solid #ffffff;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 0 0 0 rgba(6, 117, 232, 0);
  transition: background 280ms ease, box-shadow 280ms ease, transform 280ms ease;
}

.workflow-step.is-active .identity-graph-visual img,
.workflow-step.is-complete .identity-graph-visual img {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.workflow-step.is-active .step-number {
  background: var(--amber);
  box-shadow: 0 0 0 7px rgba(245, 164, 0, 0.14);
  transform: scale(1.08);
}

.workflow-step.is-complete .step-number {
  background: var(--teal);
}

.workflow-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
}

.workflow-step p {
  max-width: 230px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

/* Solutions */
.solutions-section {
  background: linear-gradient(180deg, #f3fbff 0%, #ffffff 100%);
}

.solutions-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 52px;
  align-items: center;
}

.solutions-grid .section-heading p:not(.section-kicker) {
  margin: 16px 0 26px;
}

.solution-panel {
  min-width: 0;
}

.solution-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.solution-tab,
.tab-btn {
  min-height: 50px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.solution-tab:hover,
.tab-btn:hover {
  border-color: #9dccfb;
  transform: translateY(-1px);
}

.solution-tab.active,
.solution-tab[aria-selected="true"],
.tab-btn.active {
  color: #ffffff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 14px 28px rgba(6, 117, 232, 0.2);
}

.solution-content,
.tab-panel {
  display: none;
}

.solution-content.active,
.tab-panel.active {
  display: grid;
  animation: solution-panel-in 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes solution-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.solution-content {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  min-height: 290px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.solution-content h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
}

.solution-content p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.58;
}

.solution-content ul {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.solution-content li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  font-size: 14px;
}

.solution-content li::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--blue);
  border-radius: 50%;
}

.solution-content li::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 6px;
  height: 4px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.solution-art {
  display: flex;
  min-width: 0;
  min-height: 210px;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
}

.solution-art img {
  display: block;
  width: 100%;
  max-width: 430px;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/* Capabilities */
.capabilities-section {
  background: #ffffff;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.capability-strip article {
  grid-column: span 2;
  display: grid;
  gap: 14px;
  justify-items: center;
  min-width: 0;
  padding: 30px 24px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.capability-strip article:nth-child(4) {
  grid-column: 2 / span 2;
}

.capability-strip article:nth-child(5) {
  grid-column: 4 / span 2;
}

.capability-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  color: var(--blue);
  border: 0;
  border-radius: 0;
  background: transparent;
}

.capability-icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.capability-icon.amber {
  color: var(--amber);
}

.capability-icon.shield {
  color: var(--green);
}

.capability-strip h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.28;
}

.capability-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* Local Sphere */
.local-sphere-section {
  background: linear-gradient(180deg, #ffffff 0%, #f2f9ff 100%);
}

.local-sphere-panel {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 50px;
  align-items: center;
  padding: 44px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.local-sphere-panel h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
}

.local-sphere-panel p {
  color: var(--ink-soft);
  line-height: 1.6;
}

.store-activation {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
}

.store-activation .section-diagram {
  width: min(100%, 430px);
  border-radius: 0;
  box-shadow: none;
}

.storefront {
  position: absolute;
  bottom: 48px;
  left: 50%;
  width: 180px;
  height: 126px;
  background: linear-gradient(180deg, #ffffff, #eef8ff);
  border: 2px solid #8fcaff;
  border-radius: var(--radius);
  transform: translateX(-50%);
}

.storefront::before {
  content: "";
  position: absolute;
  top: -38px;
  left: -12px;
  width: 204px;
  height: 42px;
  background: linear-gradient(90deg, var(--blue) 0 20%, #ffffff 20% 40%, var(--blue) 40% 60%, #ffffff 60% 80%, var(--blue) 80%);
  border: 2px solid #8fcaff;
  border-radius: 8px 8px 16px 16px;
}

.pin {
  position: absolute;
  top: 34px;
  left: 50%;
  width: 54px;
  height: 54px;
  background: var(--amber);
  border-radius: 50% 50% 50% 0;
  transform: translateX(-50%) rotate(-45deg);
}

.pin::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 17px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
}

.orbit {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 260px;
  height: 188px;
  border: 2px dashed rgba(245, 164, 0, 0.55);
  border-radius: 50%;
  transform: translateX(-50%);
}

.orbit-icon {
  position: absolute;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid #b7d9f8;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}

.orbit-icon.mail {
  top: 48px;
  left: 38px;
}

.orbit-icon.phone {
  top: 8px;
  right: 72px;
}

.orbit-icon.ad {
  right: 34px;
  bottom: 74px;
  font-size: 12px;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 22px 0 20px;
}

.local-grid article {
  position: relative;
  padding-left: 30px;
}

.local-grid article::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--amber);
  border-radius: 50%;
}

.local-grid h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.local-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* Trial */
.trial-section {
  padding: 0 0 28px;
  background: #ffffff;
}

.trial-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: 34px;
  align-items: center;
  padding: 26px 32px;
  background: linear-gradient(90deg, #fffdf8, #ffffff);
  border: 1px solid #f3dfaa;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.trial-card h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
}

.trial-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.trial-points {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.trial-points span {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.trial-points span::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--amber);
  border-radius: 50%;
}

.trial-points span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--amber);
  border-left: 2px solid var(--amber);
  transform: rotate(-45deg);
}

.trial-secondary-link {
  margin-top: 18px;
}

.trial-card aside {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.rocket-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 800;
}

.trial-card aside strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.trial-card aside p {
  margin-top: 4px;
  font-size: 13px;
}

/* Secondary page compatibility */
.section-dark {
  color: #ffffff;
  background: var(--dark);
}

.section-surface {
  color: #ffffff;
  background: var(--dark-panel);
}

.section-light {
  color: var(--ink);
  background: var(--page-soft);
}

.section-dark .heading-hero,
.section-dark .heading-section,
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-surface .heading-hero,
.section-surface .heading-section,
.section-surface h1,
.section-surface h2,
.section-surface h3 {
  color: #ffffff;
}

.section-dark .body-lg,
.section-dark .body-md,
.section-dark p,
.section-surface .body-lg,
.section-surface .body-md,
.section-surface p {
  color: #d8e8f8;
}

.glow-blue,
.glow-amber,
.glow-teal,
.glow-green {
  position: relative;
  overflow: hidden;
}

.glow-blue::before,
.glow-amber::before,
.glow-teal::before,
.glow-green::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(3, 169, 255, 0.08), transparent 44%),
    radial-gradient(ellipse at 78% 10%, rgba(255, 255, 255, 0.07), transparent 32%);
  pointer-events: none;
}

.glow-amber::before {
  background:
    linear-gradient(120deg, rgba(245, 164, 0, 0.12), transparent 44%),
    radial-gradient(ellipse at 78% 10%, rgba(255, 255, 255, 0.07), transparent 32%);
}

.glow-blue > *,
.glow-amber > *,
.glow-teal > *,
.glow-green > * {
  position: relative;
  z-index: 1;
}

.card-light,
.case-study-card,
.pricing-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card-light,
.case-study-card {
  padding: 28px;
}

.card-dark,
.spotlight-card,
.trust-item {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px;
}

.badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid #b7d9f8;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.stat-number,
.case-metric,
.price {
  color: var(--blue);
  font-family: var(--font-mono);
  font-weight: 800;
}

.stat-number {
  font-size: 36px;
}

.case-metric {
  margin-bottom: 10px;
  font-size: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  position: relative;
  padding: 28px;
}

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 20px 50px rgba(6, 117, 232, 0.18);
}

.price {
  font-size: 34px;
}

.price-period {
  color: var(--muted);
  font-size: 14px;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.pricing-card li::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 5px;
  width: 6px;
  height: 3px;
  border-bottom: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.section-dark .accordion-item {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.accordion-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  color: inherit;
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transition: transform 160ms ease;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 220ms ease;
}

.accordion-body-inner {
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.section-dark .accordion-body-inner {
  color: #d8e8f8;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  text-align: left;
}

.comparison-table th {
  color: var(--ink);
  font-weight: 800;
}

.check-yes {
  color: var(--green);
}

.check-no {
  color: var(--muted);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.footer {
  padding: 54px 0 26px;
  color: #d8e8f8;
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 34px;
}

.footer h4 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.footer p {
  margin: 0;
  color: #b8c9dc;
  line-height: 1.6;
}

.footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer a {
  color: #b8c9dc;
  font-size: 14px;
}

.footer a:hover {
  color: #ffffff;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8fa5bb;
  font-size: 13px;
}

[data-fade] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-fade].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-fade] {
    opacity: 1;
    transform: none;
  }

  .workflow-step .identity-graph-visual img {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .nav-inner {
    gap: 16px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-login,
  .nav-cta {
    padding-right: 13px;
    padding-left: 13px;
  }

  .hero-grid,
  .solutions-grid,
  .local-sphere-panel,
  .trial-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas:
      "copy"
      "visual"
      "metrics";
  }

  .hero-copy h1 {
    max-width: 820px;
    font-size: 56px;
  }

  .hero-lede {
    max-width: 620px;
  }

  .hero-asset-card {
    min-height: 460px;
  }

  .profile-card {
    right: 36px;
  }

  .identity-graph-flow,
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .identity-graph-flow::before,
  .identity-graph-flow::after {
    display: none;
  }

  .graph-step:nth-child(3) {
    border-right: 0;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .section-pad,
  .section-padding {
    padding: 64px 0;
  }

  .nav-links,
  .nav-actions {
    display: none !important;
  }

  .nav-mobile-toggle {
    position: fixed;
    top: 15px;
    right: 16px !important;
    left: auto !important;
    z-index: 120;
    display: flex !important;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.13);
  }

  .nav-mobile-toggle svg {
    display: none;
  }

  .nav-mobile-toggle::before {
    content: "";
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 -6px 0 #ffffff, 0 6px 0 #ffffff;
  }

  .mobile-menu {
    position: fixed;
    inset: 72px 16px auto;
    z-index: 110;
    display: none;
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .mobile-menu.open {
    display: grid;
    animation: mobile-menu-in 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .mobile-menu a {
    padding: 13px;
    color: var(--ink);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    background: var(--blue-soft);
  }

  body.mobile-menu-open::before {
    content: "";
    position: fixed;
    inset: 72px 0 0;
    z-index: 90;
    background: rgba(0, 16, 38, 0.48);
    backdrop-filter: blur(4px);
  }

  body.mobile-menu-open .nav-mobile-toggle::before {
    box-shadow: none;
    transform: rotate(45deg);
  }

  body.mobile-menu-open .nav-mobile-toggle::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transform: rotate(-45deg);
  }

  @keyframes mobile-menu-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .signal-hero {
    min-height: 0;
    padding: 106px 0 56px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy h1,
  .heading-hero {
    font-size: 44px;
  }

  .section-heading h2,
  .heading-section {
    font-size: 32px;
  }

  .hero-lede {
    font-size: 19px;
  }

  .metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
    max-width: none;
  }

  .metric {
    grid-template-columns: 44px 1fr;
    gap: 4px 10px;
    align-items: center;
  }

  .metric-icon {
    grid-row: 1 / span 2;
    width: 44px;
    height: 44px;
    box-shadow: none;
  }

  .metric-icon svg {
    width: 21px;
    height: 21px;
  }

  .metric strong {
    font-size: 21px;
  }

  .metric span:last-child {
    font-size: 12px;
  }

  .hero-asset-card {
    min-height: 0;
  }

  .hero-asset-card img {
    width: 100%;
  }

  .resolution-status {
    width: 100%;
    margin-top: -10px;
    font-size: 10px;
  }

  .source-a,
  .source-b,
  .source-c,
  .profile-card,
  .identity-core {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .source-a { top: 0; }
  .source-b { top: 88px; }
  .source-c { top: 176px; bottom: auto; }
  .identity-core { top: 284px; }
  .profile-card { top: 434px; }

  .signal-lines {
    display: none;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .funnel-visual {
    min-height: 210px;
  }

  .funnel-avatars {
    left: 50%;
    width: 300px;
    transform: translateX(-50%);
  }

  .funnel-shape {
    left: 50%;
    width: 330px;
    transform: translateX(-50%);
  }

  .question-mark {
    left: 50%;
    transform: translateX(-50%);
  }

  .problem-copy h2 {
    font-size: 32px;
  }

  .workflow-header,
  .identity-graph-flow,
  .capability-strip,
  .solution-content,
  .local-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .workflow-header {
    gap: 16px;
    margin-bottom: 30px;
  }

  .workflow-header h2 {
    font-size: 32px;
  }

  .identity-graph-flow {
    --workflow-progress: 0%;
    padding: 0;
  }

  .identity-graph-flow::before,
  .identity-graph-flow::after {
    display: block;
    top: 52px;
    bottom: 52px;
    left: 135px;
    width: 2px;
    height: auto;
  }

  .identity-graph-flow::after {
    height: var(--workflow-progress);
    max-height: calc(100% - 152px);
    background: linear-gradient(180deg, var(--blue), var(--blue-bright), var(--amber));
    transition: height 520ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .graph-step,
  .graph-step:nth-child(3),
  .graph-step:not(:last-child) {
    border-right: 0;
  }

  .workflow-step {
    grid-template-columns: 108px 36px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 10px;
    row-gap: 6px;
    align-items: center;
    justify-items: start;
    padding: 14px 0;
    text-align: left;
  }

  .graph-step:not(:last-child) {
    padding-bottom: 14px;
    border-bottom: 0;
  }

  .identity-graph-visual {
    grid-row: 1 / span 2;
    width: 108px;
    height: 104px;
  }

  .identity-graph-visual img {
    max-width: 108px;
  }

  .workflow-step .step-number {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: center;
  }

  .workflow-step h3 {
    grid-column: 3;
    grid-row: 1;
    align-self: end;
  }

  .workflow-step p {
    grid-column: 3;
    grid-row: 2;
    align-self: start;
    max-width: none;
  }

  .solution-tabs,
  .tab-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-content {
    padding: 24px;
  }

  .capability-strip article {
    grid-column: auto;
    border-right: 0;
  }

  .capability-strip article:nth-child(4),
  .capability-strip article:nth-child(5) {
    grid-column: auto;
  }

  .local-sphere-panel {
    padding: 28px;
  }

  .trial-card aside {
    grid-template-columns: 62px 1fr;
  }

  .trial-card aside .btn {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand-wordmark img {
    height: 38px;
    max-width: 215px;
  }

  .hero-copy h1,
  .heading-hero {
    max-width: 340px;
    font-size: 32px;
    line-height: 1.12;
  }

  .hero-lede {
    font-size: 17px;
  }

  .tab-list {
    grid-template-columns: 1fr;
  }

  .metric-row,
  .solution-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resolution-status {
    gap: 6px;
  }

  .resolution-stage {
    gap: 5px;
    font-size: 9px;
  }

  .resolution-stage i {
    width: 6px;
    height: 6px;
    flex-basis: 6px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .solution-tabs,
  .tab-list {
    gap: 8px;
  }

  .solution-tab {
    min-height: 46px;
  }

  .workflow-step {
    grid-template-columns: 94px 32px minmax(0, 1fr);
    column-gap: 8px;
  }

  .identity-graph-flow::before,
  .identity-graph-flow::after {
    left: 118px;
  }

  .identity-graph-visual {
    width: 94px;
    height: 94px;
  }

  .identity-graph-visual img {
    max-width: 94px;
  }

  .trial-card {
    padding: 22px;
  }
}
