:root {
  --ink: #07111f;
  --navy: #0c1b32;
  --navy-2: #132642;
  --blue: #2d67f6;
  --blue-2: #1f4ed8;
  --cyan: #38bdf8;
  --violet: #7458f5;
  --mint: #22cfa3;
  --cloud: #f5f7fb;
  --paper: #fbfaf6;
  --white: #ffffff;
  --text: #111827;
  --muted: #5d6878;
  --muted-2: #7a8493;
  --line: #dce3ec;
  --line-dark: rgba(255, 255, 255, 0.16);
  --success: #178f68;
  --warning: #b7791f;
  --error: #c2414b;
  --shadow-sm: 0 1px 2px rgba(7, 17, 31, 0.04), 0 10px 30px rgba(7, 17, 31, 0.06);
  --shadow-md: 0 18px 60px rgba(7, 17, 31, 0.12);
  --shadow-lg: 0 40px 100px rgba(7, 17, 31, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 42px;
  --container: min(1360px, calc(100vw - 64px));
  --reading: 780px;
  --header-h: 82px;
  --ease: cubic-bezier(.2,.8,.2,1);
  --font-display: "Manrope", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(56, 189, 248, 0.07), transparent 31rem),
    radial-gradient(circle at 90% 10%, rgba(116, 88, 245, 0.055), transparent 34rem),
    var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(45, 103, 246, 0.2);
}

:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.85);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.reading {
  width: min(var(--reading), 100%);
}

.section {
  position: relative;
  padding-block: clamp(86px, 10vw, 150px);
}

.section-tight {
  padding-block: clamp(64px, 7vw, 104px);
}

.section-dark {
  overflow: clip;
  background:
    radial-gradient(circle at 14% 16%, rgba(56, 189, 248, .12), transparent 28rem),
    radial-gradient(circle at 85% 40%, rgba(116, 88, 245, .18), transparent 34rem),
    linear-gradient(145deg, #07111f 0%, #0c1b32 48%, #07111f 100%);
  color: var(--white);
}

.section-blue {
  background: linear-gradient(135deg, var(--blue) 0%, #3a58e8 48%, var(--violet) 100%);
  color: var(--white);
}

.section-cloud {
  background: var(--cloud);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow,
.section-blue .eyebrow {
  color: var(--cyan);
}

.display-hero,
.display-section,
h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 680;
  letter-spacing: -.055em;
  line-height: .99;
}

.display-hero {
  max-width: 960px;
  font-size: clamp(50px, 6.2vw, 88px);
}

.display-section {
  max-width: 920px;
  font-size: clamp(38px, 4.4vw, 62px);
}

.display-subsection {
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -.045em;
  line-height: 1.08;
}

.lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.58;
}

.section-dark .lead,
.section-blue .lead {
  color: rgba(255, 255, 255, .72);
}

.kicker {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.meta-label {
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  align-items: end;
  gap: 72px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.section-heading .lead {
  margin: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid rgba(220, 227, 236, .72);
  background: rgba(251, 250, 246, .82);
  backdrop-filter: blur(22px) saturate(150%);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 246, .95);
  box-shadow: 0 12px 35px rgba(7, 17, 31, .07);
}

.header-inner {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  box-shadow: 0 6px 20px rgba(7, 17, 31, .14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.brand-tagline {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 14px;
  border-radius: 13px;
  color: #303947;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-item:focus-within > .nav-link {
  background: rgba(7, 17, 31, .06);
  color: var(--ink);
}

.nav-item.has-menu > .nav-link::after {
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  width: 430px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity .18s ease, transform .18s ease;
}

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

.mega-link {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 15px;
  transition: background .2s ease;
}

.mega-link:hover,
.mega-link:focus-visible {
  background: var(--cloud);
}

.mega-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: rgba(45, 103, 246, .1);
  color: var(--blue);
}

.mega-link strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
}

.mega-link span:last-child {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
}

.language-switcher a {
  display: grid;
  min-width: 38px;
  min-height: 38px;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
}


.mobile-language-switcher {
  display: none;
}
.language-switcher a[aria-current="true"] {
  background: var(--ink);
  color: var(--white);
}

.mobile-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.mobile-menu-button span,
.mobile-menu-button::before,
.mobile-menu-button::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-menu-button span {
  margin-block: 5px;
}

.mobile-menu-button[aria-expanded="true"]::before {
  transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.mobile-menu-button[aria-expanded="true"]::after {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 90;
  display: none;
  overflow-y: auto;
  padding: 26px 24px 110px;
  background: rgba(251, 250, 246, .985);
  backdrop-filter: blur(24px);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav-list {
  display: grid;
  gap: 8px;
}

.mobile-nav-link {
  display: grid;
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.mobile-nav-link strong {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -.03em;
}

.mobile-nav-link span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.mobile-nav-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

/* Buttons */
.button,
.card-action,
.text-link {
  position: relative;
  display: inline-flex;
  max-width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .22s var(--ease), box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.button {
  padding: 0 22px;
}

.button svg,
.card-action svg,
.text-link svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.button:hover,
.card-action:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(7, 17, 31, .18);
}

.button-primary:hover {
  background: #13243b;
  box-shadow: 0 16px 36px rgba(7, 17, 31, .22);
}

.button-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(45, 103, 246, .24);
}

.button-blue:hover {
  background: var(--blue-2);
}

.button-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(7, 17, 31, .1);
}

.button-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, .62);
  color: var(--ink);
}

.section-dark .button-outline,
.section-blue .button-outline {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
}

.button-compact {
  min-height: 46px;
  padding-inline: 18px;
}

.button-block {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.card-action {
  width: max-content;
  min-height: 48px;
  padding: 0 17px;
  border-color: var(--line);
  background: rgba(255, 255, 255, .84);
  color: var(--ink);
  white-space: nowrap;
}

.card-action:hover {
  border-color: rgba(45, 103, 246, .45);
  background: var(--white);
  color: var(--blue-2);
}

.card-action-dark {
  border-color: rgba(255, 255, 255, .23);
  background: rgba(7, 17, 31, .22);
  color: var(--white);
}

.text-link {
  min-height: 44px;
  justify-content: flex-start;
  color: var(--blue-2);
}

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

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  padding: clamp(70px, 8vw, 112px) 0 clamp(86px, 9vw, 138px);
}

.hero::before {
  position: absolute;
  top: -300px;
  right: -220px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(45, 103, 246, .13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(45, 103, 246, .025), 0 0 0 160px rgba(116, 88, 245, .018);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, .96fr);
  align-items: center;
  gap: clamp(54px, 7vw, 100px);
}

.hero-copy .lead {
  max-width: 750px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-line span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.visual-shell {
  position: relative;
  height: 100%;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(220, 227, 236, .86);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 10%, rgba(56, 189, 248, .13), transparent 17rem),
    radial-gradient(circle at 80% 88%, rgba(116, 88, 245, .12), transparent 19rem),
    rgba(255, 255, 255, .76);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.visual-shell::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(7,17,31,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(7,17,31,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.visual-topbar {
  position: absolute;
  top: 24px;
  right: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgba(220, 227, 236, .78);
  border-radius: 15px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(14px);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.visual-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.visual-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(34, 207, 163, .12);
  content: "";
}

.lifecycle-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 174px;
  height: 174px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--ink), var(--navy-2));
  color: var(--white);
  box-shadow: 0 0 0 20px rgba(45, 103, 246, .06), 0 24px 60px rgba(7, 17, 31, .28);
  text-align: center;
  transform: translate(-50%, -50%);
}

.lifecycle-core::before,
.lifecycle-core::after {
  position: absolute;
  border: 1px solid rgba(45, 103, 246, .18);
  border-radius: 50%;
  content: "";
}

.lifecycle-core::before {
  inset: -54px;
}

.lifecycle-core::after {
  inset: -120px;
  border-style: dashed;
  animation: orbit 26s linear infinite;
}

.lifecycle-core strong {
  display: block;
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: -.04em;
}

.lifecycle-core span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.6);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lifecycle-node {
  position: absolute;
  display: grid;
  width: 130px;
  min-height: 70px;
  align-content: center;
  padding: 13px 16px;
  border: 1px solid rgba(220, 227, 236, .9);
  border-radius: 17px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  transform: translate(-50%, -50%);
  animation: nodePulse 7.2s var(--ease) infinite;
}

.lifecycle-node strong {
  font-size: 13px;
  line-height: 1.2;
}

.lifecycle-node span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}

.lifecycle-node:nth-of-type(1) { top: 21%; left: 50%; animation-delay: 0s; }
.lifecycle-node:nth-of-type(2) { top: 35%; left: 83%; animation-delay: 1.2s; }
.lifecycle-node:nth-of-type(3) { top: 70%; left: 82%; animation-delay: 2.4s; }
.lifecycle-node:nth-of-type(4) { top: 83%; left: 50%; animation-delay: 3.6s; }
.lifecycle-node:nth-of-type(5) { top: 70%; left: 18%; animation-delay: 4.8s; }
.lifecycle-node:nth-of-type(6) { top: 35%; left: 17%; animation-delay: 6s; }

.visual-review-gate {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(34, 207, 163, .28);
  border-radius: 16px;
  background: rgba(241, 255, 250, .92);
  box-shadow: var(--shadow-sm);
}

.review-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(34, 207, 163, .13);
  color: var(--success);
}

.visual-review-gate strong {
  display: block;
  font-size: 12px;
}

.visual-review-gate span {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.review-pill {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--success);
  color: var(--white) !important;
  font-family: var(--font-mono);
  font-size: 8px !important;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* General grids and cards */
.grid-2,
.grid-3,
.grid-4,
.grid-5 {
  display: grid;
  gap: 18px;
}

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .7);
  box-shadow: var(--shadow-sm);
}

.card-hover {
  transition: transform .28s var(--ease), box-shadow .28s ease, border-color .28s ease;
}

.card-hover:hover {
  border-color: rgba(45, 103, 246, .28);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.outcome-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 28px;
}

.card-index {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
  border-radius: 12px;
  background: rgba(45, 103, 246, .1);
  color: var(--blue-2);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
}

.outcome-card h3 {
  font-size: 24px;
  line-height: 1.08;
}

.outcome-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.outcome-card .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.feature-card {
  min-height: 280px;
  padding: 28px;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 58px;
  border: 1px solid rgba(45, 103, 246, .18);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(45,103,246,.12), rgba(56,189,248,.08));
  color: var(--blue);
}

.feature-card h3 {
  font-size: 25px;
  line-height: 1.08;
}

.feature-card p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: rgba(255, 255, 255, .055);
}

.stat-item {
  min-height: 160px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-value {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 720;
  letter-spacing: -.05em;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.45;
}

/* Platform map */
.platform-map {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.module-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  grid-column: span 3;
  padding: 24px;
  border-color: rgba(220, 227, 236, .82);
  background: rgba(255,255,255,.82);
}

.module-card:nth-child(1),
.module-card:nth-child(2),
.module-card:nth-child(9),
.module-card:nth-child(10) {
  grid-column: span 6;
}

.module-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.module-symbol {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: var(--cloud);
  color: var(--blue);
}

.status-badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(34, 207, 163, .24);
  border-radius: 999px;
  background: rgba(34, 207, 163, .08);
  color: var(--success);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.module-card h3 {
  margin-top: 46px;
  font-size: 22px;
  line-height: 1.08;
}

.module-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* White-label visual */
.brand-transform {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(560px, 1.2fr);
  align-items: center;
  gap: 80px;
}

.brand-stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.brand-browser {
  position: absolute;
  inset: 54px 54px 78px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: #f8fafc;
  box-shadow: 0 30px 70px rgba(0,0,0,.24);
}

.browser-top {
  display: flex;
  height: 54px;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border-bottom: 1px solid #e7ebf1;
  background: #fff;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dce3ec;
}

.browser-address {
  display: flex;
  height: 28px;
  flex: 1;
  align-items: center;
  margin-left: 10px;
  padding: 0 12px;
  border-radius: 8px;
  background: #f4f6f9;
  color: #87909d;
  font-family: var(--font-mono);
  font-size: 8px;
}

.browser-content {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 390px;
}

.browser-sidebar {
  padding: 22px 14px;
  background: var(--ink);
}

.browser-brand {
  width: 42px;
  height: 12px;
  border-radius: 4px;
  background: var(--brand-accent, var(--blue));
}

.browser-line {
  height: 7px;
  margin-top: 18px;
  border-radius: 4px;
  background: rgba(255,255,255,.16);
}

.browser-main {
  padding: 30px;
  background: #fbfcfe;
}

.browser-chip {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand-accent, var(--blue)) 12%, white);
  color: var(--brand-accent, var(--blue));
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.browser-title {
  width: 68%;
  height: 20px;
  margin-top: 18px;
  border-radius: 6px;
  background: #111827;
}

.browser-subtitle {
  width: 82%;
  height: 8px;
  margin-top: 14px;
  border-radius: 4px;
  background: #dce3ec;
}

.browser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.browser-card {
  height: 110px;
  border: 1px solid #e3e8ef;
  border-radius: 14px;
  background: #fff;
}

.brand-selector {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.brand-option {
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.66);
  text-align: left;
}

.brand-option[aria-pressed="true"] {
  border-color: rgba(56,189,248,.55);
  background: rgba(56,189,248,.13);
  color: var(--white);
}

.brand-option strong {
  display: block;
  font-size: 11px;
}

.brand-option span {
  display: block;
  margin-top: 3px;
  font-size: 9px;
}

/* Page heroes */
.page-hero {
  padding: clamp(76px, 9vw, 132px) 0 clamp(72px, 8vw, 118px);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
}

.page-hero .display-hero {
  font-size: clamp(48px, 5.5vw, 78px);
}

.page-visual {
  min-height: 500px;
}

/* Platform lifecycle */
.lifecycle-ribbon {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-md);
}

.ribbon-step {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 70px;
  padding: 11px 15px;
  border: 1px solid transparent;
  border-radius: 17px;
  background: rgba(245,247,251,.72);
  transition: background .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.ribbon-step.is-active {
  border-color: rgba(45,103,246,.24);
  background: rgba(45,103,246,.075);
  transform: translateX(5px);
}

.ribbon-step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--white);
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.ribbon-step strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

.ribbon-step span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}

.ribbon-check {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  background: rgba(34,207,163,.12);
  color: var(--success);
}

.story-rail {
  position: relative;
}

.story-rail::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 35px;
  width: 1px;
  background: linear-gradient(var(--blue), var(--cyan), var(--mint));
  content: "";
  opacity: .36;
}

.story-stage {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 30px;
  padding: 48px 0;
}

.story-stage-marker {
  position: sticky;
  top: 120px;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.story-stage-content {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  gap: 54px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.story-stage-copy h3 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.03;
}

.story-stage-copy p {
  margin: 20px 0 0;
  color: var(--muted);
}

.detail-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
}

.detail-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.detail-list li::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 7px;
  background: rgba(34,207,163,.11);
  color: var(--success);
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.guardrail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(34,207,163,.28);
  border-radius: 17px;
  background: rgba(34,207,163,.075);
}

.guardrail-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--success);
  color: var(--white);
}

.guardrail strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.guardrail span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

/* AI Now */
.brain-constellation {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center, rgba(45,103,246,.2), transparent 18rem),
    rgba(255,255,255,.045);
}

.brain-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 156px;
  height: 156px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), var(--violet));
  box-shadow: 0 0 0 24px rgba(45,103,246,.08), 0 25px 60px rgba(0,0,0,.25);
  color: var(--white);
  text-align: center;
  transform: translate(-50%, -50%);
}

.brain-center strong {
  display: block;
  font-size: 22px;
  letter-spacing: -.04em;
}

.brain-center span {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: 9px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.brain-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.brain-ring-1 { width: 280px; height: 280px; }
.brain-ring-2 { width: 410px; height: 410px; border-style: dashed; animation: orbit 32s linear infinite reverse; }
.brain-ring-3 { width: 530px; height: 530px; opacity: .66; }

.brain-orbit-label {
  position: absolute;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 11px;
  background: rgba(7,17,31,.72);
  color: rgba(255,255,255,.8);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  transform: translate(-50%, -50%);
}

.brain-orbit-label:nth-of-type(1) { top: 14%; left: 50%; }
.brain-orbit-label:nth-of-type(2) { top: 31%; left: 84%; }
.brain-orbit-label:nth-of-type(3) { top: 68%; left: 87%; }
.brain-orbit-label:nth-of-type(4) { top: 87%; left: 53%; }
.brain-orbit-label:nth-of-type(5) { top: 70%; left: 16%; }
.brain-orbit-label:nth-of-type(6) { top: 31%; left: 14%; }

.capability-band {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.capability-chip {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.two-column-story {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  align-items: start;
  gap: clamp(64px, 8vw, 120px);
}

.sticky-copy {
  position: sticky;
  top: 124px;
}

.story-stack {
  display: grid;
  gap: 16px;
}

.story-card {
  min-height: 280px;
  padding: 30px;
}

.story-card-number {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.story-card h3 {
  margin-top: 64px;
  font-size: 29px;
  line-height: 1.07;
}

.story-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.proof-badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-top: 20px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(45,103,246,.09);
  color: var(--blue-2);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.cascade {
  display: grid;
  gap: 14px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.7);
}

.cascade-row {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.cascade-row:not(:last-child)::after {
  position: absolute;
  bottom: -15px;
  left: 45px;
  width: 1px;
  height: 15px;
  background: var(--blue);
  content: "";
  opacity: .42;
}

.cascade-level {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.cascade-row strong {
  font-size: 14px;
}

.cascade-owner {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--cloud);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

/* React capability navigator */
.interactive-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-md);
}

.capability-navigator {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  min-height: 650px;
  overflow: hidden;
  border-radius: inherit;
}

.capability-tabs {
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: var(--cloud);
}

.capability-tab {
  display: grid;
  grid-template-columns: 34px 1fr;
  min-height: 60px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  text-align: left;
}

.capability-tab:hover,
.capability-tab[aria-selected="true"] {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.capability-tab-index {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(45,103,246,.09);
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
}

.capability-tab strong {
  font-size: 12px;
  line-height: 1.25;
}

.capability-panel {
  padding: clamp(34px, 5vw, 64px);
}

.capability-panel h3 {
  max-width: 720px;
  font-size: clamp(34px, 4vw, 54px);
}

.capability-outcome {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.capability-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.capability-work {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--cloud);
  color: #344052;
  font-size: 13px;
  font-weight: 650;
}

.capability-connect {
  margin-top: 36px;
  padding: 20px;
  border: 1px solid rgba(45,103,246,.18);
  border-radius: 17px;
  background: rgba(45,103,246,.055);
}

.capability-connect strong {
  display: block;
  color: var(--blue-2);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.capability-connect p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* Industries */
.industry-explorer {
  display: grid;
  gap: 26px;
}

.industry-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.industry-filter {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.industry-filter[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.industry-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: 20px;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
  max-height: 710px;
  overflow-y: auto;
  padding-right: 6px;
}

.industry-card-button {
  display: flex;
  min-height: 136px;
  flex-direction: column;
  align-items: flex-start;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.72);
  text-align: left;
  transition: border-color .2s ease, background .2s ease, transform .2s var(--ease);
}

.industry-card-button:hover,
.industry-card-button[aria-pressed="true"] {
  border-color: rgba(45,103,246,.38);
  background: rgba(45,103,246,.06);
  transform: translateY(-2px);
}

.industry-card-button strong {
  font-size: 13px;
  line-height: 1.3;
}

.industry-card-button span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.industry-detail {
  position: sticky;
  top: 110px;
  align-self: start;
  min-height: 710px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(56,189,248,.13), transparent 20rem),
    var(--white);
  box-shadow: var(--shadow-md);
}

.industry-detail h3 {
  margin-top: 18px;
  font-size: clamp(32px, 3.4vw, 48px);
}

.industry-detail-intro {
  margin: 18px 0 0;
  color: var(--muted);
}

.industry-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.industry-detail-block {
  min-height: 150px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cloud);
}

.industry-detail-block strong {
  display: block;
  color: var(--blue-2);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.industry-detail-block p,
.industry-detail-block ul {
  margin: 9px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  list-style: none;
}

.industry-detail-block li + li {
  margin-top: 4px;
}

.industry-detail .button-row {
  margin-top: 26px;
}

/* Partner program */
.business-model {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 34px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.05);
}

.business-model-step {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 15px;
  min-height: 74px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(255,255,255,.05);
}

.business-model-step span:first-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: rgba(56,189,248,.12);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
}

.business-model-step strong {
  color: var(--white);
  font-size: 13px;
}

.business-model-step small {
  color: rgba(255,255,255,.52);
  font-size: 9px;
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.revenue-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  grid-column: span 4;
  padding: 28px;
}

.revenue-card:nth-child(1),
.revenue-card:nth-child(7) {
  grid-column: span 6;
}

.revenue-number {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
}

.revenue-card h3 {
  margin-top: 74px;
  font-size: 26px;
}

.revenue-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.partner-journey {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.partner-step {
  position: relative;
  min-height: 300px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
}

.partner-step::after {
  position: absolute;
  top: 44px;
  right: -11px;
  z-index: 2;
  width: 20px;
  height: 1px;
  background: var(--blue);
  content: "";
  opacity: .35;
}

.partner-step:last-child::after {
  display: none;
}

.partner-step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
}

.partner-step h3 {
  margin-top: 74px;
  font-size: 19px;
  line-height: 1.1;
}

.partner-step p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.track-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 28px;
}

.track-card h3 {
  margin-top: 74px;
  font-size: 27px;
}

.track-card p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.track-note {
  margin-top: auto;
  padding-top: 28px;
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.68);
}

.faq-question {
  display: grid;
  width: 100%;
  min-height: 74px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  font-weight: 750;
  text-align: left;
}

.faq-question::after {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  content: "+";
  font-size: 20px;
  font-weight: 400;
  transition: transform .2s ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s var(--ease);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  max-width: 860px;
  margin: 0;
  padding: 0 20px 24px;
  color: var(--muted);
  font-size: 14px;
}

/* Forms */
.apply-paths {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(420px, .86fr);
  gap: 22px;
  align-items: start;
}

.form-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.form-header {
  padding: 28px 30px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(45,103,246,.07), rgba(116,88,245,.055));
}

.form-header h2 {
  font-size: 30px;
}

.form-header p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.progress-step {
  position: relative;
  min-height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(45,103,246,.12);
}

.progress-step::before {
  position: absolute;
  inset: 0;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}

.progress-step.is-complete::before,
.progress-step.is-active::before {
  transform: scaleX(1);
}

.form-body {
  padding: 30px;
}

.form-step-title {
  margin-bottom: 24px;
}

.form-step-title span {
  display: block;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.form-step-title h3 {
  margin-top: 8px;
  font-size: 28px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: #273244;
  font-size: 12px;
  font-weight: 760;
}

.field label span {
  color: var(--error);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #cdd6e2;
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(45,103,246,.11);
}

.field [aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(194,65,75,.08);
}

.field-help {
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1.4;
}

.field-error {
  color: var(--error);
  font-size: 11px;
  font-weight: 700;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-card {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  min-height: 74px;
  align-items: start;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cloud);
}

.choice-card input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.choice-card strong {
  display: block;
  font-size: 12px;
}

.choice-card span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cloud);
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.checkbox-row label {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}

.error-summary {
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid rgba(194,65,75,.28);
  border-radius: 14px;
  background: rgba(194,65,75,.055);
  color: var(--error);
}

.error-summary strong {
  display: block;
  font-size: 13px;
}

.error-summary ul {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 12px;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

.form-status.is-error {
  color: var(--error);
}

.success-state {
  padding: 54px 34px;
  text-align: center;
}

.success-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 22px;
  background: rgba(34,207,163,.12);
  color: var(--success);
}

.success-state h3 {
  font-size: 34px;
}

.success-state p {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--muted);
}

.success-reference {
  display: inline-flex;
  margin-top: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--cloud);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
}

.demo-card {
  position: sticky;
  top: 108px;
  padding: 30px;
}

.demo-card h2 {
  font-size: 34px;
}

.demo-card > p {
  margin: 14px 0 0;
  color: var(--muted);
}

.demo-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.demo-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.demo-list li::before {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 8px;
  background: rgba(45,103,246,.1);
  color: var(--blue);
  content: "✓";
  font-size: 10px;
  font-weight: 900;
}

.demo-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

/* Resources — fixed button architecture */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.resource-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  grid-column: span 4;
  padding: 30px;
  border-radius: 26px;
}

.resource-card-wide {
  grid-column: span 8;
}

.resource-card-accent {
  border-color: transparent;
  background: linear-gradient(145deg, var(--blue), #4b5ff0 58%, var(--violet));
  color: var(--white);
}

.resource-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 74px;
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.resource-card-accent .resource-meta {
  color: rgba(255,255,255,.68);
}

.resource-card h3 {
  max-width: 680px;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.02;
}

.resource-card p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
}

.resource-card-accent p {
  color: rgba(255,255,255,.72);
}

.resource-card__action {
  display: flex;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 30px;
}

.resource-card__action .card-action {
  flex: 0 0 auto;
  align-self: flex-start;
}

.resource-card-accent .card-action {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.12);
  color: var(--white);
}

/* Supporting pages */
.prose {
  max-width: 820px;
}

.prose h2 {
  margin-top: 54px;
  font-size: 34px;
  line-height: 1.1;
}

.prose h3 {
  margin-top: 36px;
  font-size: 24px;
  line-height: 1.15;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 22px;
}

.prose a {
  color: var(--blue-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 92px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 10% 20%, rgba(56,189,248,.2), transparent 22rem),
    radial-gradient(circle at 90% 80%, rgba(116,88,245,.28), transparent 28rem),
    var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.final-cta::after {
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.015);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  align-items: end;
  gap: 60px;
}

.final-cta h2 {
  max-width: 800px;
  font-size: clamp(42px, 5vw, 68px);
}

.final-cta p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.66);
}

.final-cta .button-row {
  justify-content: flex-end;
  margin: 0;
}

/* Footer */
.site-footer {
  margin-top: clamp(80px, 10vw, 150px);
  padding: 70px 0 30px;
  border-top: 1px solid var(--line);
  background: rgba(245,247,251,.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(160px, .7fr));
  gap: 60px;
}

.footer-brand p {
  max-width: 420px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-column h2 {
  margin-bottom: 18px;
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  width: max-content;
  max-width: 100%;
  color: #344052;
  font-size: 13px;
  font-weight: 650;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 11px;
}

.footer-microcopy {
  max-width: 720px;
}

/* Sticky mobile CTA */
.mobile-sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 80;
  display: none;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(7,17,31,.22);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(calc(100% + 24px));
  pointer-events: none;
  transition: opacity .25s ease, transform .35s var(--ease);
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-sticky-cta .button {
  width: 100%;
}

/* Reveal motion */
.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.motion-ready .reveal[data-reveal="left"] { transform: translateX(-24px); }
.motion-ready .reveal[data-reveal="right"] { transform: translateX(24px); }
.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translate(0,0);
}

@keyframes orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes nodePulse {
  0%, 70%, 100% { border-color: rgba(220,227,236,.9); box-shadow: var(--shadow-sm); }
  10%, 24% { border-color: rgba(45,103,246,.55); box-shadow: 0 18px 40px rgba(45,103,246,.16); }
}

/* Tablet */
@media (max-width: 1180px) {
  :root {
    --container: min(100% - 44px, 1080px);
  }

  .header-inner {
    grid-template-columns: 232px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .nav-link {
    padding-inline: 10px;
    font-size: 13px;
  }

  .header-actions .button {
    display: none;
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .88fr);
  }

  .hero-visual,
  .visual-shell {
    min-height: 560px;
  }

  .platform-map .module-card {
    grid-column: span 4;
  }

  .platform-map .module-card:nth-child(1),
  .platform-map .module-card:nth-child(2),
  .platform-map .module-card:nth-child(9),
  .platform-map .module-card:nth-child(10) {
    grid-column: span 6;
  }

  .brand-transform {
    grid-template-columns: minmax(0, .85fr) minmax(500px, 1.15fr);
    gap: 54px;
  }

  .two-column-story {
    grid-template-columns: minmax(0, .76fr) minmax(480px, 1.24fr);
    gap: 60px;
  }

  .partner-journey {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .partner-step:nth-child(4)::after {
    display: none;
  }

  .partner-step {
    min-height: 260px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 74px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .primary-nav,
  .header-actions .button,
  .header-actions .language-switcher {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
  }

  .hero-grid,
  .page-hero-grid,
  .brand-transform,
  .two-column-story,
  .apply-paths {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .page-hero-copy {
    max-width: 830px;
  }

  .hero-visual {
    width: min(720px, 100%);
    margin-inline: auto;
  }

  .page-visual {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

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

  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .stat-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .story-stage-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-stage {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .sticky-copy,
  .demo-card,
  .industry-detail {
    position: static;
  }

  .capability-navigator {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .industry-layout {
    grid-template-columns: 1fr;
  }

  .industry-list {
    max-height: none;
  }

  .industry-detail {
    min-height: 0;
  }

  .revenue-card,
  .revenue-card:nth-child(1),
  .revenue-card:nth-child(7) {
    grid-column: span 6;
  }

  .resource-card,
  .resource-card-wide {
    grid-column: span 6;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .final-cta .button-row {
    justify-content: flex-start;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 720px) {
  :root {
    --container: calc(100vw - 28px);
    --radius-lg: 26px;
    --radius-xl: 30px;
  }

  body {
    font-size: 16px;
  }

  .section {
    padding-block: 80px;
  }

  .section-tight {
    padding-block: 62px;
  }

  .brand-tagline {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .display-hero,
  .page-hero .display-hero {
    font-size: clamp(42px, 12.2vw, 50px);
    line-height: 1.01;
  }

  .display-section {
    font-size: clamp(34px, 9.8vw, 42px);
  }

  .lead {
    font-size: 18px;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button-row .button {
    width: 100%;
  }

  .trust-line {
    display: grid;
    gap: 8px;
  }

  .hero-visual,
  .visual-shell {
    min-height: 500px;
  }

  .visual-topbar {
    top: 16px;
    right: 16px;
    left: 16px;
  }

  .lifecycle-core {
    width: 132px;
    height: 132px;
  }

  .lifecycle-core::before { inset: -34px; }
  .lifecycle-core::after { inset: -80px; }
  .lifecycle-core strong { font-size: 18px; }

  .lifecycle-node {
    width: 106px;
    min-height: 58px;
    padding: 10px;
  }

  .lifecycle-node span {
    display: none;
  }

  .visual-review-gate {
    right: 16px;
    bottom: 16px;
    left: 16px;
    grid-template-columns: auto 1fr;
  }

  .review-pill {
    display: none !important;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr;
  }

  .outcome-card,
  .feature-card,
  .story-card,
  .track-card {
    min-height: 0;
  }

  .card-index,
  .feature-icon {
    margin-bottom: 42px;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .stat-item {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .platform-map {
    display: grid;
    grid-template-columns: 1fr;
  }

  .platform-map .module-card,
  .platform-map .module-card:nth-child(n) {
    grid-column: 1 / -1;
    min-height: 200px;
  }

  .brand-stage {
    min-height: 460px;
  }

  .brand-browser {
    inset: 40px 18px 92px;
  }

  .browser-content {
    grid-template-columns: 62px 1fr;
  }

  .browser-main {
    padding: 22px;
  }

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

  .browser-card:nth-child(n+2) {
    display: none;
  }

  .brand-selector {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .brand-option span {
    display: none;
  }

  .page-hero {
    padding-top: 58px;
  }

  .ribbon-step {
    grid-template-columns: 44px 1fr;
  }

  .ribbon-check {
    display: none;
  }

  .story-rail::before {
    display: none;
  }

  .story-stage {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 0;
  }

  .story-stage-marker {
    position: static;
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .story-stage-content {
    padding-bottom: 34px;
  }

  .brain-constellation {
    min-height: 500px;
  }

  .brain-ring-3 { width: 420px; height: 420px; }
  .brain-ring-2 { width: 330px; height: 330px; }
  .brain-ring-1 { width: 235px; height: 235px; }

  .brain-orbit-label {
    font-size: 8px;
  }

  .cascade {
    padding: 20px;
  }

  .cascade-row {
    grid-template-columns: 70px 1fr;
  }

  .cascade-owner {
    display: none;
  }

  .capability-navigator {
    display: block;
    min-height: 0;
  }

  .capability-tabs {
    display: flex;
    overflow-x: auto;
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    scroll-snap-type: x mandatory;
  }

  .capability-tab {
    flex: 0 0 190px;
    scroll-snap-align: start;
  }

  .capability-panel {
    padding: 28px 20px 24px;
  }

  .capability-panel h3 {
    font-size: 36px;
  }

  .capability-work-grid {
    grid-template-columns: 1fr;
  }

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

  .industry-detail {
    padding: 24px;
  }

  .industry-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .revenue-card,
  .revenue-card:nth-child(n) {
    grid-column: 1 / -1;
    min-height: 250px;
  }

  .partner-journey {
    grid-template-columns: 1fr;
  }

  .partner-step {
    min-height: 220px;
  }

  .partner-step::after {
    top: auto;
    right: auto;
    bottom: -11px;
    left: 42px;
    width: 1px;
    height: 20px;
  }

  .partner-step:nth-child(4)::after {
    display: block;
  }

  .partner-step:last-child::after {
    display: none;
  }

  .field-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .form-header,
  .form-body {
    padding: 24px 18px;
  }

  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .form-actions .button {
    width: 100%;
  }

  .form-actions .button:first-child {
    order: 2;
  }

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

  .resource-card,
  .resource-card-wide {
    min-height: 330px;
    grid-column: 1 / -1;
    padding: 24px;
  }

  .resource-meta {
    margin-bottom: 58px;
  }

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

  .resource-card__action .card-action {
    width: 100%;
    white-space: normal;
  }

  .final-cta {
    padding: 44px 24px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .mobile-sticky-cta {
    display: block;
  }

  .site-footer {
    padding-bottom: 110px;
  }
}

@media (max-width: 390px) {
  .brand-name {
    font-size: 15px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .mobile-menu-button {
    width: 42px;
    height: 42px;
  }

  .hero-visual,
  .visual-shell {
    min-height: 470px;
  }

  .lifecycle-node {
    width: 92px;
    min-height: 52px;
    padding: 8px;
  }

  .lifecycle-node strong {
    font-size: 11px;
  }

  .brain-orbit-label:nth-of-type(2),
  .brain-orbit-label:nth-of-type(5) {
    display: none;
  }

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .mobile-sticky-cta,
  .button-row,
  .mobile-nav {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section {
    padding-block: 36px;
  }

  .card,
  .interactive-shell {
    box-shadow: none;
  }
}

/* v2.0 premium extensions */
[hidden] { display: none !important; }

.header-signin {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-inline: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.header-signin:hover { color: var(--ink); }

.status-live {
  border-color: rgba(34, 207, 163, .26);
  background: rgba(34, 207, 163, .1);
  color: #0b7658;
}

.section-dark .status-live {
  border-color: rgba(34, 207, 163, .28);
  background: rgba(34, 207, 163, .12);
  color: #78f3cf;
}

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

.industry-preview-tile {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: end;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease;
}

.industry-preview-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(45,103,246,.35);
  box-shadow: var(--shadow-md);
}

.industry-preview-tile > span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.industry-preview-tile strong {
  align-self: end;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.industry-preview-tile svg { width: 20px; height: 20px; }

.brain-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  width: min(80%, 460px);
  transform: translateX(-50%);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.responsibility-note {
  max-width: 760px;
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--blue);
  background: rgba(45,103,246,.06);
  color: var(--muted);
  font-size: 14px;
}

.memory-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 110px 1fr;
  align-items: center;
  gap: 18px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 45%, rgba(45,103,246,.11), transparent 24rem),
    rgba(255,255,255,.84);
  box-shadow: var(--shadow-md);
}

.memory-source,
.memory-brain {
  min-height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  text-align: center;
}

.memory-source svg { width: 34px; height: 34px; color: var(--blue); }
.memory-brain { border-color: rgba(45,103,246,.24); background: linear-gradient(145deg,#07111f,#132642); color: var(--white); }
.memory-brain strong { font-family: var(--font-display); font-size: 32px; letter-spacing: -.05em; }
.memory-brain span { color: rgba(255,255,255,.65); font-size: 12px; }

.memory-review {
  min-height: 110px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-radius: 22px;
  background: rgba(34,207,163,.12);
  color: #0b7658;
}

.memory-review svg { width: 28px; height: 28px; }
.memory-visual > .detail-list { grid-column: 1 / -1; margin: 0; }

.work-thread {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.work-thread-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.work-thread-head strong {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -.035em;
}

.work-thread-events {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin: 28px 0;
}

.work-thread-events span {
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cloud);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.capability-hero-visual {
  min-height: 580px;
  display: grid;
  place-items: center;
}

.capability-orbit {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  border: 1px solid rgba(45,103,246,.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 70px rgba(45,103,246,.025), inset 0 0 0 140px rgba(116,88,245,.02);
}

.capability-orbit::before,
.capability-orbit::after {
  position: absolute;
  inset: 15%;
  border: 1px dashed rgba(45,103,246,.25);
  border-radius: 50%;
  content: "";
}

.capability-orbit::after { inset: 30%; border-style: solid; }

.capability-orbit > strong {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  transform: translate(-50%,-50%);
  border-radius: 46px;
  background: linear-gradient(145deg,var(--ink),var(--navy-2));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -.04em;
  line-height: 1.08;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.capability-orbit > span {
  position: absolute;
  min-width: 104px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-sm);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.capability-orbit > span:nth-child(1) { top: 5%; left: 50%; transform: translateX(-50%); }
.capability-orbit > span:nth-child(2) { top: 25%; right: 0; }
.capability-orbit > span:nth-child(3) { right: 2%; bottom: 21%; }
.capability-orbit > span:nth-child(4) { bottom: 4%; left: 50%; transform: translateX(-50%); }
.capability-orbit > span:nth-child(5) { bottom: 21%; left: 1%; }
.capability-orbit > span:nth-child(6) { top: 25%; left: 0; }

.context-map {
  min-height: 520px;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.05);
}

.context-map span {
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  color: rgba(255,255,255,.75);
  text-align: center;
}

.context-map strong {
  grid-column: 1 / -1;
  min-height: 140px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg,var(--blue),var(--violet));
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -.04em;
  text-align: center;
}

.custom-pack {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: stretch;
  gap: 12px;
}

.custom-pack > div {
  min-height: 190px;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.custom-pack > div:nth-child(even) {
  min-height: auto;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
}

.custom-pack > div:nth-child(even) svg { width: 26px; height: 26px; }
.custom-pack strong { font-family: var(--font-display); font-size: 22px; letter-spacing: -.035em; }

.industry-hero-map {
  position: relative;
  min-height: 580px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at center, rgba(45,103,246,.15), transparent 34%),
    linear-gradient(145deg,rgba(255,255,255,.9),rgba(245,247,251,.8));
  box-shadow: var(--shadow-md);
}

.industry-map-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 0 0 48px rgba(45,103,246,.06),0 0 0 96px rgba(116,88,245,.035);
}

.industry-hero-map > span {
  position: absolute;
  min-width: 108px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}
.industry-hero-map > span:nth-of-type(1) { top: 12%; left: 50%; transform:translateX(-50%); }
.industry-hero-map > span:nth-of-type(2) { top: 27%; right: 7%; }
.industry-hero-map > span:nth-of-type(3) { right: 7%; bottom: 24%; }
.industry-hero-map > span:nth-of-type(4) { bottom: 10%; left: 50%; transform:translateX(-50%); }
.industry-hero-map > span:nth-of-type(5) { bottom: 24%; left: 7%; }
.industry-hero-map > span:nth-of-type(6) { top: 27%; left: 7%; }

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.demo-divider { height: 1px; margin: 36px 0; background: var(--line); }

.trust-panel {
  display: grid;
  grid-template-columns: 72px minmax(0,1fr);
  gap: 26px;
  max-width: 1000px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.trust-panel > span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(34,207,163,.12);
  color: #0b7658;
}
.trust-panel > span svg { width: 34px; height: 34px; }
.trust-panel h2 { font-size: 34px; line-height: 1.05; }
.trust-panel p { color: var(--muted); }

.cookie-banner {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  left: 22px;
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}
.cookie-banner strong { font-family: var(--font-display); font-size: 18px; }
.cookie-banner p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions .button { min-height: 46px; }

.readiness-check {
  display: grid;
  grid-template-columns: minmax(0,1fr) 330px;
  gap: 24px;
  align-items: stretch;
}
.readiness-questions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.readiness-question {
  min-height: 112px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.8);
  cursor: pointer;
}
.readiness-question:has(input:checked) { border-color: rgba(34,207,163,.55); background: rgba(34,207,163,.11); }
.readiness-question input { width: 22px; height: 22px; accent-color: var(--mint); }
.readiness-score {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px;
  border-radius: 26px;
  background: var(--white);
  color: var(--ink);
}
.readiness-score > span { color: var(--muted); font-family: var(--font-mono); font-size: 10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.readiness-score strong { font-family: var(--font-display); font-size: 72px; letter-spacing: -.07em; line-height: .9; }
.readiness-score p { margin: 0; color: var(--muted); }

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  margin: 0;
}
.glossary-item {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}
.glossary-item dt { font-family: var(--font-display); font-size: 26px; font-weight: 750; letter-spacing: -.04em; }
.glossary-item dd { margin: 16px 0 0; color: var(--muted); }

@media (max-width: 1180px) {
  .header-signin { display:none; }
  .industry-preview-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 980px) {
  .memory-visual { grid-template-columns: 1fr; }
  .memory-review { min-height: 88px; }
  .work-thread-events { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .custom-pack { grid-template-columns: 1fr; }
  .custom-pack > div:nth-child(even) { min-height: 54px; transform: rotate(90deg); }
  .readiness-check { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .industry-preview-grid,
  .readiness-questions,
  .glossary-grid { grid-template-columns: 1fr; }
  .industry-preview-tile { min-height: 170px; }
  .brain-caption { bottom: 14px; font-size: 8px; }
  .memory-visual { min-height: 0; padding: 20px; }
  .work-thread { padding: 22px; }
  .work-thread-head { align-items: flex-start; flex-direction: column; }
  .work-thread-events { grid-template-columns: 1fr; }
  .capability-hero-visual,
  .industry-hero-map { min-height: 480px; }
  .capability-orbit > span:nth-child(2),
  .capability-orbit > span:nth-child(5),
  .industry-hero-map > span:nth-of-type(2),
  .industry-hero-map > span:nth-of-type(5) { display:none; }
  .capability-orbit > strong { width: 132px; height: 132px; border-radius: 38px; }
  .context-map { grid-template-columns: 1fr; padding: 20px; }
  .context-map strong { grid-column: 1; }
  .trust-panel { grid-template-columns: 1fr; padding: 24px; }
  .cookie-banner { grid-template-columns: 1fr; right: 12px; bottom: 86px; left: 12px; }
  .cookie-actions { display:grid; grid-template-columns:1fr; }
  .cookie-actions .button { width:100%; }
  .readiness-score strong { font-size: 60px; }
}

html.nav-locked,
html.nav-locked body {
  overflow: hidden;
}

.lifecycle-node.is-active {
  border-color: rgba(45, 103, 246, .48);
  box-shadow: 0 14px 42px rgba(45, 103, 246, .16);
  transform: translate(-50%, -50%) translateY(-3px);
}

.faq-item h3 {
  margin: 0;
  font: inherit;
  letter-spacing: normal;
}

.success-state:focus {
  outline: none;
}


/* Header switches to the complete mobile navigation before desktop links become cramped. */
@media (max-width: 1100px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
  }
  .primary-nav,
  .header-actions .button,
  .header-actions .desktop-language-switcher {
    display: none !important;
  }
  .header-actions .mobile-language-switcher {
    display: inline-flex;
  }
  .mobile-menu-button {
    display: grid;
  }
}

/* Mobile locale access and contextual conversion bar */
@media (max-width: 980px) {
  .header-actions .desktop-language-switcher,
  .header-actions > .button {
    display: none;
  }

  .header-actions .mobile-language-switcher {
    display: inline-flex;
    min-width: 72px;
    height: 42px;
  }
}

@media (max-width: 360px) {
  .header-actions {
    gap: 6px;
  }

  .header-actions .mobile-language-switcher {
    min-width: 66px;
  }

  .mobile-language-switcher a {
    min-width: 30px;
    min-height: 34px;
  }
}

/* ========================================================================== 
   v2.1.1 — precision interaction, complete product visuals, conversion UX
   ========================================================================== */

.site-footer {
  margin-top: 0;
}

/* Desktop navigation: links navigate; adjacent controls open contextual menus. */
.nav-control {
  display: flex;
  min-height: 46px;
  align-items: center;
  border-radius: 14px;
  transition: background .2s ease, box-shadow .2s ease;
}

.nav-control:hover,
.nav-item.is-open .nav-control,
.nav-item:focus-within .nav-control {
  background: rgba(7, 17, 31, .055);
}

.nav-control .nav-link {
  min-height: 46px;
  padding: 0 7px 0 14px;
  background: transparent !important;
}

.nav-menu-toggle {
  position: relative;
  width: 32px;
  height: 42px;
  flex: 0 0 32px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #303947;
}

.nav-menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: translate(-50%, -65%) rotate(45deg);
  transition: transform .18s ease;
}

.nav-menu-toggle[aria-expanded="true"] span {
  transform: translate(-50%, -20%) rotate(225deg);
}

.nav-menu-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -4px;
}

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

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

/* Mobile navigation is a true left drawer, not a page-covering link stack. */
.mobile-nav {
  position: fixed;
  z-index: 240;
  inset: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .24s ease, visibility 0s linear .24s;
}

.mobile-nav.is-open {
  display: block;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(7, 17, 31, .58);
  opacity: 0;
  backdrop-filter: blur(5px);
  transition: opacity .28s ease;
}

.mobile-nav.is-open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav-panel {
  position: relative;
  z-index: 1;
  width: min(430px, calc(100% - 22px));
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border-right: 1px solid rgba(220, 227, 236, .8);
  border-radius: 0 28px 28px 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(34, 207, 163, .12), transparent 20rem),
    #fbfaf6;
  box-shadow: 34px 0 90px rgba(7, 17, 31, .24);
  transform: translateX(-104%);
  transition: transform .38s cubic-bezier(.22,.8,.22,1);
}

.mobile-nav.is-open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.mobile-nav-close {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  color: var(--ink);
}

.mobile-nav-close svg {
  width: 20px;
  height: 20px;
}

.mobile-nav-scroll {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 22px 20px 30px;
}

.mobile-nav-kicker {
  margin: 0 0 10px;
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mobile-nav-list {
  gap: 9px;
}

.mobile-nav-link {
  grid-template-columns: 30px minmax(0, 1fr) 20px;
  min-height: 88px;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  border-color: rgba(220, 227, 236, .9);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 8px 24px rgba(7, 17, 31, .035);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  border-color: rgba(45, 103, 246, .35);
  background: var(--white);
}

.mobile-nav-link__index {
  margin: 0 !important;
  color: var(--blue) !important;
  font-family: var(--font-mono);
  font-size: 9px !important;
  font-weight: 800;
}

.mobile-nav-link > span:nth-child(2) {
  margin: 0;
}

.mobile-nav-link > svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.mobile-nav-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.mobile-nav-simple-list {
  display: grid;
  gap: 2px;
}

.mobile-nav-simple {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 8px;
  border-radius: 12px;
  color: #303947;
  font-size: 14px;
  font-weight: 720;
}

.mobile-nav-simple:hover,
.mobile-nav-simple:focus-visible {
  background: rgba(7, 17, 31, .05);
}

.mobile-nav-simple svg {
  width: 16px;
  height: 16px;
}

.mobile-nav-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px 20px max(16px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(251, 250, 246, .97);
}

.mobile-nav-footer .button {
  width: 100%;
}

/* Home hero lifecycle: complete, centered, and never clipped. */
.home-hero {
  padding-top: clamp(68px, 7vw, 100px);
  padding-bottom: clamp(90px, 9vw, 132px);
}

.home-hero .hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(520px, .98fr);
  gap: clamp(48px, 6vw, 88px);
}

.home-hero .hero-copy {
  align-self: center;
}

.home-hero .display-hero {
  max-width: 780px;
}

.hero-visual,
.visual-shell {
  min-height: 680px;
}

.visual-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 13px;
  padding: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(34, 207, 163, .14), transparent 17rem),
    radial-gradient(circle at 88% 86%, rgba(116, 88, 245, .14), transparent 19rem),
    rgba(255, 255, 255, .86);
}

.visual-topbar {
  position: relative;
  inset: auto;
  z-index: 3;
  min-height: 48px;
}

.visual-lifecycle-workspace {
  position: relative;
  z-index: 1;
  min-height: 466px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 12px;
}

.visual-lifecycle-map {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 227, 236, .72);
  border-radius: 24px;
  background:
    linear-gradient(rgba(7, 17, 31, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, .035) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(45, 103, 246, .08), transparent 47%),
    rgba(255, 255, 255, .58);
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.visual-orbit,
.visual-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.visual-orbit-one {
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(45, 103, 246, .2);
}

.visual-orbit-two {
  width: 91%;
  aspect-ratio: 1;
  border: 1px dashed rgba(45, 103, 246, .2);
  animation: iq-orbit 34s linear infinite;
}

.visual-pulse {
  width: 54%;
  aspect-ratio: 1;
  border: 1px solid rgba(34, 207, 163, .22);
  opacity: 0;
  animation: iq-pulse 4.2s ease-out infinite;
}

.visual-pulse-two {
  animation-delay: 2.1s;
}

.visual-lifecycle-map .lifecycle-core {
  width: 132px;
  height: 132px;
  z-index: 4;
  background: linear-gradient(145deg, #07111f, #102848 72%, #17395a);
  box-shadow: 0 0 0 16px rgba(45, 103, 246, .055), 0 22px 55px rgba(7, 17, 31, .25);
}

.visual-lifecycle-map .lifecycle-core::before {
  inset: -38px;
}

.visual-lifecycle-map .lifecycle-core::after {
  display: none;
}

.visual-lifecycle-map .lifecycle-node {
  z-index: 5;
  width: 106px;
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(220, 227, 236, .96);
  border-radius: 16px;
  background: rgba(255, 255, 255, .91);
  box-shadow: 0 12px 28px rgba(7, 17, 31, .08);
  text-align: left;
  transform: translate(-50%, -50%);
  animation: none;
}

.visual-lifecycle-map .lifecycle-node strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.15;
}

.visual-lifecycle-map .lifecycle-node span {
  color: var(--muted-2);
  font-size: 9px;
}

.visual-lifecycle-map .lifecycle-node:hover,
.visual-lifecycle-map .lifecycle-node:focus-visible,
.visual-lifecycle-map .lifecycle-node.is-active {
  border-color: rgba(45, 103, 246, .52);
  background: var(--white);
  box-shadow: 0 15px 34px rgba(45, 103, 246, .15);
  transform: translate(-50%, -50%) translateY(-3px);
}

.visual-lifecycle-map .lifecycle-node.is-active::before {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(34, 207, 163, .13);
  content: "";
}

.visual-lifecycle-map .lifecycle-node-1 { top: 11%; left: 50%; }
.visual-lifecycle-map .lifecycle-node-2 { top: 30%; left: 83%; }
.visual-lifecycle-map .lifecycle-node-3 { top: 69%; left: 83%; }
.visual-lifecycle-map .lifecycle-node-4 { top: 88%; left: 50%; }
.visual-lifecycle-map .lifecycle-node-5 { top: 69%; left: 17%; }
.visual-lifecycle-map .lifecycle-node-6 { top: 30%; left: 17%; }

.lifecycle-detail-card {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  border: 1px solid rgba(12, 27, 50, .2);
  border-radius: 24px;
  background: linear-gradient(160deg, #0b1a30, #102b4b 62%, #123f55);
  color: var(--white);
  box-shadow: 0 20px 45px rgba(7, 17, 31, .16);
}

.lifecycle-detail-card .meta-label {
  color: #7ce8c8;
}

.lifecycle-detail-card > strong {
  display: block;
  margin-top: 34px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -.04em;
  line-height: 1;
}

.lifecycle-detail-card > p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.55;
}

.lifecycle-progress {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  margin-top: 26px;
}

.lifecycle-progress-dot {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
}

.lifecycle-progress-dot.is-active {
  background: var(--mint);
  box-shadow: 0 0 14px rgba(34, 207, 163, .5);
}

.lifecycle-detail-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 24px;
  color: rgba(255, 255, 255, .56);
  font-size: 9px;
  font-weight: 700;
}

.lifecycle-detail-status > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.visual-control-dock {
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 12px;
}

.workflow-mode-card,
.visual-policy-note {
  min-height: 94px;
  display: grid;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(220, 227, 236, .84);
  border-radius: 19px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 10px 26px rgba(7, 17, 31, .05);
}

.workflow-mode-card {
  grid-template-columns: 100px minmax(0, 1fr);
}

.workflow-mode-card > span {
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.workflow-mode-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.workflow-mode-card strong {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(45, 103, 246, .09);
  color: var(--blue-2);
  font-size: 9px;
}

.workflow-mode-card strong:last-child {
  background: rgba(34, 207, 163, .12);
  color: #087354;
}

.visual-policy-note {
  grid-template-columns: 42px minmax(0, 1fr);
}

.review-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(34, 207, 163, .12);
  color: #0b7658;
}

.review-icon svg {
  width: 22px;
  height: 22px;
}

.visual-policy-note > span:last-child {
  min-width: 0;
}

.visual-policy-note strong,
.visual-policy-note span span {
  display: block;
}

.visual-policy-note strong {
  font-size: 10px;
}

.visual-policy-note span span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.35;
}

@keyframes iq-orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes iq-pulse {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.68); }
  18% { opacity: .75; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.65); }
}

/* More intentional dark-section spacing and contrast. */
.home-ai-section {
  padding-top: clamp(124px, 10vw, 154px);
  padding-bottom: clamp(112px, 9vw, 148px);
}

.home-ai-section .section-heading {
  align-items: start;
  margin-bottom: clamp(58px, 6vw, 82px);
}

.section-dark .feature-card {
  border-color: rgba(255, 255, 255, .15);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .045));
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 20px 50px rgba(0, 0, 0, .12);
}

.section-dark .feature-card h3 {
  color: var(--white);
}

.section-dark .feature-card p {
  color: rgba(255, 255, 255, .64);
}

.section-dark .feature-card .feature-icon {
  border: 1px solid rgba(56, 189, 248, .2);
  background: rgba(45, 103, 246, .18);
  color: #65d8ff;
}

.automation-assurance {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: center;
  gap: 32px;
  margin-top: 24px;
  padding: 28px 30px;
  border: 1px solid rgba(34, 207, 163, .22);
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(34, 207, 163, .1), rgba(56, 189, 248, .055));
}

.automation-assurance .meta-label {
  color: #78f3cf;
}

.automation-assurance > div:first-child > strong {
  display: block;
  max-width: 820px;
  margin-top: 10px;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.6;
}

.automation-mode-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.automation-mode-list span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .075);
  color: rgba(255, 255, 255, .78);
  font-size: 10px;
  font-weight: 750;
}

.automation-mode-list span:last-child {
  border-color: rgba(34, 207, 163, .28);
  color: #8af7d7;
}

/* Industry preview cards now carry complete, visible use-case content. */
.industry-preview-tile {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 25px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 207, 163, .075), transparent 12rem),
    rgba(255, 255, 255, .86);
}

.industry-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.industry-tile-index,
.industry-tile-tag {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.industry-tile-tag {
  max-width: 60%;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(34, 207, 163, .1);
  color: #0b7658;
  text-align: right;
}

.industry-preview-tile h3 {
  margin-top: 34px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.industry-preview-tile p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.industry-tile-link {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink) !important;
  font-family: var(--font-sans) !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0 !important;
  text-transform: none;
}

.industry-tile-link svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

/* White-label visual: a realistic product workspace, not empty skeleton boxes. */
.home-white-label {
  padding-top: clamp(118px, 9vw, 150px);
  padding-bottom: clamp(118px, 9vw, 150px);
}

.brand-transform {
  grid-template-columns: minmax(360px, .72fr) minmax(680px, 1.28fr);
  gap: clamp(54px, 6vw, 92px);
}

.brand-stage {
  min-height: 660px;
  padding: 26px 26px 96px;
  overflow: hidden;
  border-color: rgba(255,255,255,.17);
  background:
    radial-gradient(circle at 85% 15%, rgba(116, 88, 245, .16), transparent 24rem),
    radial-gradient(circle at 12% 90%, rgba(34, 207, 163, .1), transparent 20rem),
    rgba(255,255,255,.055);
}

.brand-browser {
  position: relative;
  inset: auto;
  height: 536px;
  border-radius: 22px;
  background: #f6f8fb;
}

.browser-top {
  height: 42px;
  padding: 0 14px;
}

.browser-address {
  max-width: 360px;
}

.browser-secure {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #677386;
  font-size: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.browser-secure svg {
  width: 13px;
  height: 13px;
  color: #0b7658;
}

.product-app {
  height: calc(100% - 42px);
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  overflow: hidden;
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 17px 12px 14px;
  background: linear-gradient(175deg, #07111f, #0d1f37);
  color: var(--white);
}

.product-brand {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 0 3px 17px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.product-brand .browser-brand {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--brand-accent, var(--blue));
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.product-brand strong,
.product-brand small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-brand strong {
  font-size: 9px;
}

.product-brand small {
  margin-top: 3px;
  color: rgba(255,255,255,.45);
  font-size: 7px;
}

.product-nav {
  display: grid;
  gap: 4px;
  margin-top: 16px;
}

.product-nav-item {
  min-height: 34px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 0 9px;
  border-radius: 9px;
  color: rgba(255, 255, 255, .54);
  font-size: 8px;
  font-weight: 650;
}

.product-nav-item svg {
  width: 14px;
  height: 14px;
}

.product-nav-item.is-active {
  background: color-mix(in srgb, var(--brand-accent, var(--blue)) 25%, transparent);
  color: white;
}

.product-sidebar-status {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 3px 7px;
  margin-top: auto;
  padding: 11px 9px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 11px;
  background: rgba(255, 255, 255, .05);
}

.product-sidebar-status > span {
  width: 7px;
  height: 7px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(34, 207, 163, .11);
}

.product-sidebar-status strong,
.product-sidebar-status small {
  display: block;
  grid-column: 2;
}

.product-sidebar-status strong {
  font-size: 7px;
}

.product-sidebar-status small {
  color: rgba(255,255,255,.45);
  font-size: 6px;
  line-height: 1.4;
}

.product-main {
  min-width: 0;
  overflow: hidden;
  background: #f7f9fc;
}

.product-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 17px;
  border-bottom: 1px solid #e1e7ef;
  background: rgba(255, 255, 255, .94);
}

.product-breadcrumb {
  color: #8a95a5;
  font-family: var(--font-mono);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-header h3 {
  margin-top: 5px;
  color: #172033;
  font-size: 14px;
  letter-spacing: -.035em;
}

.product-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-context {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  border: 1px solid #dce3ec;
  border-radius: 8px;
  color: #566276;
  font-size: 6px;
  font-weight: 700;
}

.product-context i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.product-avatar {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #e9eef6;
  color: #344052;
  font-size: 7px;
  font-weight: 800;
}

.product-dashboard {
  height: calc(100% - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, .8fr);
  grid-template-rows: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 10px;
  padding: 12px;
}

.product-dashboard article {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dce3ec;
  border-radius: 14px;
  background: white;
  box-shadow: 0 8px 20px rgba(7,17,31,.035);
}

.product-next-move {
  padding: 17px;
  background:
    radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--brand-accent, var(--blue)) 12%, transparent), transparent 13rem),
    white !important;
}

.product-panel-label,
.product-panel-head {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #607086;
  font-size: 7px;
  font-weight: 750;
}

.product-panel-label > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--brand-accent, var(--blue)) 12%, white);
  color: var(--brand-accent, var(--blue));
}

.product-panel-label svg {
  width: 13px;
  height: 13px;
}

.product-panel-label b {
  margin-left: auto;
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(34, 207, 163, .1);
  color: #0b7658;
  font-family: var(--font-mono);
  font-size: 5px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-next-move h4 {
  max-width: 300px;
  margin-top: 20px;
  color: #172033;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -.045em;
  line-height: 1.1;
}

.product-next-move p {
  max-width: 320px;
  margin: 8px 0 0;
  color: #6c7788;
  font-size: 8px;
  line-height: 1.5;
}

.product-signal-row,
.product-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.product-signal-row span {
  padding: 5px 7px;
  border-radius: 7px;
  background: #f3f6fa;
  color: #647186;
  font-size: 6px;
}

.product-primary-action,
.product-secondary-action {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  font-size: 6px;
  font-weight: 800;
}

.product-primary-action {
  background: var(--brand-accent, var(--blue));
  color: white;
}

.product-secondary-action {
  border: 1px solid #dce3ec;
  color: #344052;
}

.product-review-panel {
  padding: 14px;
}

.product-review-item {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  margin-top: 11px;
  padding: 8px;
  border: 1px solid #e5eaf1;
  border-radius: 10px;
  background: #fafbfd;
}

.review-avatar {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e8eef8;
  color: #43516a;
  font-size: 6px;
  font-weight: 800;
}

.product-review-item strong,
.product-review-item small {
  display: block;
}

.product-review-item strong {
  color: #263247;
  font-size: 6px;
}

.product-review-item small {
  margin-top: 2px;
  color: #8791a0;
  font-size: 5px;
}

.product-review-item b {
  color: var(--brand-accent, var(--blue));
  font-size: 5px;
}

.product-review-panel > p {
  margin: 10px 0 0;
  color: #7b8798;
  font-size: 6px;
}

.product-calendar-panel,
.product-lifecycle-panel {
  padding: 13px;
}

.product-panel-head {
  justify-content: space-between;
}

.product-panel-head small,
.product-panel-head strong {
  display: block;
}

.product-panel-head small {
  color: #8a95a5;
  font-size: 5px;
  text-transform: uppercase;
}

.product-panel-head strong {
  margin-top: 2px;
  color: #263247;
  font-size: 8px;
}

.product-panel-head > b {
  color: #0b7658;
  font-size: 5px;
}

.calendar-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-top: 14px;
}

.calendar-track span {
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #f1f4f8;
  color: #7c8797;
  font-size: 6px;
  font-weight: 800;
}

.calendar-track span.is-done {
  background: rgba(34, 207, 163, .1);
  color: #0b7658;
}

.calendar-track span.is-active {
  background: var(--brand-accent, var(--blue));
  color: white;
}

.calendar-event {
  display: grid;
  grid-template-columns: 7px 1fr;
  gap: 7px;
  margin-top: 12px;
}

.calendar-event i {
  width: 7px;
  height: 7px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--brand-accent, var(--blue));
}

.calendar-event strong,
.calendar-event small {
  display: block;
}

.calendar-event strong {
  color: #2d384b;
  font-size: 6px;
}

.calendar-event small {
  margin-top: 2px;
  color: #8993a2;
  font-size: 5px;
}

.lifecycle-mini {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  margin-top: 24px;
}

.lifecycle-mini::before {
  position: absolute;
  right: 8px;
  left: 8px;
  height: 2px;
  background: #dce3ec;
  content: "";
}

.lifecycle-mini span {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  justify-self: center;
  border: 2px solid #dce3ec;
  border-radius: 50%;
  background: white;
}

.lifecycle-mini span.is-complete {
  border-color: var(--mint);
  background: var(--mint);
}

.lifecycle-mini span.is-active {
  border-color: var(--brand-accent, var(--blue));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-accent, var(--blue)) 12%, transparent);
}

.lifecycle-mini-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 9px;
  color: #8791a0;
  font-size: 4.7px;
  text-align: center;
}

.brand-selector {
  right: 26px;
  bottom: 22px;
  left: 26px;
}

.brand-option {
  min-height: 54px;
}

/* Apply page: one active conversion path, premium hero, precise form controls. */
.apply-hero {
  padding-top: clamp(74px, 7vw, 108px);
  padding-bottom: clamp(84px, 8vw, 120px);
  background:
    radial-gradient(circle at 85% 12%, rgba(34, 207, 163, .12), transparent 27rem),
    radial-gradient(circle at 12% 90%, rgba(45, 103, 246, .08), transparent 25rem);
}

.apply-hero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(560px, 1.08fr);
  align-items: center;
}

.apply-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 30px;
}

.apply-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
}

.apply-hero-trust svg {
  width: 16px;
  height: 16px;
  color: #0b7658;
}

.application-hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(45, 103, 246, .105), transparent 18rem),
    linear-gradient(rgba(7, 17, 31, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, .035) 1px, transparent 1px),
    rgba(255,255,255,.82);
  background-size: auto, 30px 30px, 30px 30px, auto;
  box-shadow: var(--shadow-lg);
}

.application-visual-top {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 13px;
  border: 1px solid rgba(220, 227, 236, .84);
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.application-visual-top b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0b7658;
}

.application-visual-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(34,207,163,.12);
}

.application-visual-stage {
  position: relative;
  min-height: 350px;
}

.application-route {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68%;
  height: 68%;
  border: 1px dashed rgba(45, 103, 246, .24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.application-route-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72%;
  height: 72%;
  border: 1px solid rgba(34, 207, 163, .34);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: application-pulse 4s ease-out infinite;
}

.application-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 45px;
  background: linear-gradient(145deg, var(--ink), #12385c);
  color: white;
  box-shadow: 0 0 0 18px rgba(45, 103, 246, .06), 0 25px 60px rgba(7,17,31,.25);
  text-align: center;
  transform: translate(-50%, -50%);
}

.application-center > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 12px;
  background: rgba(34, 207, 163, .14);
  color: #7cf1cf;
}

.application-center svg {
  width: 19px;
  height: 19px;
}

.application-center strong,
.application-center small {
  display: block;
}

.application-center strong {
  font-family: var(--font-display);
  font-size: 16px;
}

.application-center small {
  max-width: 100px;
  margin-top: 5px;
  color: rgba(255,255,255,.55);
  font-size: 7px;
  line-height: 1.35;
}

.application-journey-card {
  position: absolute;
  z-index: 2;
  width: 168px;
  min-height: 90px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 8px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 32px rgba(7,17,31,.09);
}

.application-journey-card > span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
}

.application-journey-card strong,
.application-journey-card small {
  display: block;
}

.application-journey-card strong {
  color: var(--ink);
  font-size: 10px;
}

.application-journey-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 7px;
  line-height: 1.35;
}

.application-journey-card i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(34,207,163,.11);
  color: #0b7658;
}

.application-journey-card svg {
  width: 13px;
  height: 13px;
}

.application-journey-card-1 { top: 7%; left: 50%; transform: translateX(-50%); }
.application-journey-card-2 { right: 0; bottom: 9%; }
.application-journey-card-3 { bottom: 9%; left: 0; }

.application-visual-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.application-visual-footer > span {
  min-height: 72px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-content: center;
  gap: 2px 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.85);
}

.application-visual-footer svg {
  width: 20px;
  height: 20px;
  grid-row: 1 / span 2;
  color: var(--blue);
}

.application-visual-footer strong,
.application-visual-footer small {
  display: block;
}

.application-visual-footer strong {
  font-size: 9px;
}

.application-visual-footer small {
  color: var(--muted);
  font-size: 7px;
  line-height: 1.35;
}

@keyframes application-pulse {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.66); }
  20% { opacity: .7; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.18); }
}

.apply-conversion-section {
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 22px);
  padding-top: clamp(90px, 8vw, 126px);
  padding-bottom: clamp(100px, 9vw, 142px);
}

.apply-path-switcher,
.apply-paths {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.apply-tablist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 16px 40px rgba(7,17,31,.055);
}

.apply-tablist button {
  min-height: 84px;
  display: grid;
  grid-template-columns: 32px minmax(0,1fr);
  align-content: center;
  gap: 2px 12px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.apply-tablist button > span {
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
}

.apply-tablist button strong,
.apply-tablist button small {
  display: block;
}

.apply-tablist button strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
}

.apply-tablist button small {
  color: var(--muted);
  font-size: 10px;
}

.apply-tablist button[aria-selected="true"] {
  border-color: rgba(45,103,246,.24);
  background: white;
  box-shadow: 0 10px 26px rgba(45,103,246,.08);
}

.apply-paths {
  display: block;
}

.apply-panel {
  width: 100%;
}

.apply-panel[hidden] {
  display: none !important;
}

.apply-panel.is-active {
  animation: apply-panel-enter .3s ease both;
}

@keyframes apply-panel-enter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-shell {
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(7,17,31,.09);
}

.form-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: end;
  gap: 36px;
  padding: 36px 40px;
  background:
    radial-gradient(circle at 100% 0%, rgba(34,207,163,.09), transparent 16rem),
    linear-gradient(145deg, rgba(45,103,246,.075), rgba(116,88,245,.045));
}

.form-header h2 {
  max-width: 720px;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.12;
}

.form-progress {
  margin-top: 0;
}

.progress-step {
  min-height: 10px;
}

.progress-step > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.form-body {
  padding: 40px;
}

.form-step-title {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 4px 18px;
  margin-bottom: 30px;
}

.form-step-title > span {
  grid-row: 1 / span 2;
  padding-top: 5px;
}

.form-step-title h3,
.form-step-title p {
  grid-column: 2;
}

.form-step-title h3 {
  margin-top: 0;
}

.form-step-title p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.field-grid {
  gap: 21px 18px;
}

.field label,
.field legend {
  color: #273244;
  font-size: 12px;
  font-weight: 760;
}

.field label > span:not(.required-mark):not(.sr-only),
.checkbox-row > span {
  color: inherit;
}

.required-mark {
  display: inline !important;
  margin-left: 3px;
  color: #d3283f !important;
  font-size: 15px;
  font-weight: 900;
  line-height: 0;
}

.field input,
.field select,
.field textarea {
  border-color: #c8d2df;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(7,17,31,.02);
}

.field select {
  padding-right: 42px;
  background-image: linear-gradient(45deg, transparent 50%, #667386 50%), linear-gradient(135deg, #667386 50%, transparent 50%);
  background-position: calc(100% - 19px) 50%, calc(100% - 14px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  appearance: none;
}

.form-actions {
  min-height: 60px;
  justify-content: flex-end;
  padding-top: 6px;
}

.form-action-note {
  max-width: 360px;
  margin-right: auto;
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1.45;
}

.demo-form-shell {
  padding: 0;
}

.demo-form {
  margin-top: 0;
  padding: 40px;
}

.demo-form-intro {
  margin: -40px -40px 36px;
  padding: 36px 40px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(34,207,163,.09), transparent 16rem),
    linear-gradient(145deg, rgba(45,103,246,.075), rgba(116,88,245,.045));
}

.demo-form-intro h2 {
  max-width: 760px;
  margin-top: 10px;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.15;
}

.demo-form-intro > p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.demo-coverage {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
  gap: 56px;
  margin-top: 24px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.demo-coverage h2 {
  margin-top: 13px;
  font-size: clamp(30px, 3.5vw, 46px);
}

.demo-coverage p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

.demo-coverage .demo-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.apply-trust-section {
  padding-top: clamp(90px, 8vw, 124px);
  padding-bottom: clamp(90px, 8vw, 124px);
}

/* General polish for all long-form pages. */
.page-hero {
  overflow: hidden;
}

.section-dark .section-heading .lead,
.section-dark .lead {
  color: rgba(255,255,255,.7);
}

.section-dark + .section,
.section-dark + .section-tight {
  border-top: 0;
}

.card,
.module-card,
.story-card,
.feature-card,
.industry-card-button,
.resource-card {
  text-wrap: pretty;
}

@media (max-width: 1320px) {
  .header-inner {
    grid-template-columns: 245px minmax(0, 1fr) auto;
    gap: 16px;
  }
  .nav-control .nav-link {
    padding-left: 10px;
    font-size: 13px;
  }
  .nav-menu-toggle {
    width: 28px;
    flex-basis: 28px;
  }
  .home-hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(475px, .92fr);
    gap: 44px;
  }
  .visual-lifecycle-workspace {
    grid-template-columns: minmax(0, 1fr) 168px;
  }
  .visual-lifecycle-map .lifecycle-node {
    width: 94px;
  }
  .brand-transform {
    grid-template-columns: minmax(330px, .72fr) minmax(610px, 1.28fr);
    gap: 50px;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 220px minmax(0, 1fr) auto;
  }
  .header-actions > .button,
  .header-signin {
    display: none;
  }
  .home-hero .hero-grid,
  .apply-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(450px, .95fr);
  }
  .visual-lifecycle-workspace {
    grid-template-columns: 1fr;
  }
  .lifecycle-detail-card {
    min-height: 128px;
    display: grid;
    grid-template-columns: minmax(130px,.65fr) minmax(0,1.35fr);
    align-content: center;
    column-gap: 18px;
  }
  .lifecycle-detail-card > strong,
  .lifecycle-detail-card > p {
    margin-top: 0;
  }
  .lifecycle-detail-card .meta-label {
    grid-column: 1;
  }
  .lifecycle-detail-card > strong {
    grid-column: 1;
    font-size: 20px;
  }
  .lifecycle-detail-card > p,
  .lifecycle-progress,
  .lifecycle-detail-status {
    grid-column: 2;
  }
  .lifecycle-progress {
    margin-top: 14px;
  }
  .lifecycle-detail-status {
    margin-top: 8px;
    padding-top: 0;
  }
  .hero-visual,
  .visual-shell {
    min-height: 810px;
  }
  .visual-lifecycle-map {
    min-height: 465px;
  }
  .brand-transform {
    grid-template-columns: 1fr;
  }
  .brand-transform > div:first-child {
    max-width: 760px;
  }
  .brand-stage {
    width: 100%;
  }
  .application-hero-visual {
    min-height: 500px;
  }
}

@media (max-width: 980px) {
  .primary-nav {
    display: none;
  }
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .mobile-menu-button {
    display: grid;
  }
  .mobile-nav {
    display: block;
  }
  .home-hero .hero-grid,
  .apply-hero-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }
  .home-hero .hero-copy,
  .apply-hero .page-hero-copy {
    max-width: 780px;
  }
  .hero-visual,
  .visual-shell {
    min-height: 700px;
  }
  .visual-lifecycle-workspace {
    grid-template-columns: minmax(0, 1fr) 200px;
  }
  .lifecycle-detail-card {
    min-height: 0;
    display: flex;
  }
  .lifecycle-detail-card > strong {
    margin-top: 30px;
  }
  .lifecycle-detail-card > p {
    margin-top: 12px;
  }
  .lifecycle-progress {
    margin-top: 24px;
  }
  .lifecycle-detail-status {
    margin-top: auto;
    padding-top: 20px;
  }
  .visual-lifecycle-map {
    min-height: 0;
  }
  .automation-assurance {
    grid-template-columns: 1fr;
  }
  .automation-mode-list {
    justify-content: flex-start;
  }
  .brand-stage {
    min-height: 630px;
  }
  .product-app {
    grid-template-columns: 142px minmax(0,1fr);
  }
  .apply-hero-grid {
    gap: 48px;
  }
  .application-hero-visual {
    max-width: 760px;
    width: 100%;
  }
  .form-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .form-progress {
    max-width: 420px;
  }
  .demo-coverage {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (min-width: 981px) {
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 74px;
  }
  .header-inner {
    gap: 10px;
  }
  .brand-tagline {
    display: none;
  }
  .brand-name {
    font-size: 15px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .mobile-nav-panel {
    width: calc(100% - 12px);
    border-radius: 0 22px 22px 0;
  }
  .mobile-nav-top,
  .mobile-nav-scroll,
  .mobile-nav-footer {
    padding-inline: 16px;
  }
  .mobile-nav-footer {
    grid-template-columns: 1fr;
  }
  .mobile-nav-footer .language-switcher {
    justify-self: start;
  }
  .home-hero {
    padding-top: 58px;
  }
  .home-hero .hero-grid {
    gap: 44px;
  }
  .hero-visual,
  .visual-shell {
    min-height: 0;
  }
  .visual-shell {
    padding: 12px;
    border-radius: 26px;
  }
  .visual-topbar {
    min-height: 44px;
    padding: 10px;
  }
  .visual-topbar > span:first-child {
    max-width: 44%;
  }
  .visual-lifecycle-workspace {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .visual-lifecycle-map {
    min-height: 430px;
  }
  .visual-lifecycle-map .lifecycle-core {
    width: 108px;
    height: 108px;
  }
  .visual-lifecycle-map .lifecycle-core strong {
    font-size: 19px;
  }
  .visual-lifecycle-map .lifecycle-node {
    width: 78px;
    min-height: 51px;
    padding: 8px;
    border-radius: 13px;
  }
  .visual-lifecycle-map .lifecycle-node strong {
    font-size: 10px;
  }
  .visual-lifecycle-map .lifecycle-node span {
    font-size: 7px;
  }
  .visual-lifecycle-map .lifecycle-node-1 { top: 10%; left: 50%; }
  .visual-lifecycle-map .lifecycle-node-2 { top: 29%; left: 82%; }
  .visual-lifecycle-map .lifecycle-node-3 { top: 69%; left: 82%; }
  .visual-lifecycle-map .lifecycle-node-4 { top: 89%; left: 50%; }
  .visual-lifecycle-map .lifecycle-node-5 { top: 69%; left: 18%; }
  .visual-lifecycle-map .lifecycle-node-6 { top: 29%; left: 18%; }
  .lifecycle-detail-card {
    min-height: 198px;
    padding: 20px;
  }
  .lifecycle-detail-card > strong {
    margin-top: 22px;
  }
  .visual-control-dock {
    grid-template-columns: 1fr;
  }
  .workflow-mode-card {
    grid-template-columns: 1fr;
  }
  .home-ai-section {
    padding-top: 88px;
    padding-bottom: 92px;
  }
  .home-ai-section .section-heading {
    margin-bottom: 44px;
  }
  .automation-assurance {
    padding: 22px;
  }
  .industry-preview-tile {
    min-height: 252px;
  }
  .brand-stage {
    min-height: 0;
    padding: 12px 12px 86px;
    border-radius: 24px;
  }
  .brand-browser {
    height: 520px;
  }
  .browser-secure,
  .product-context {
    display: none;
  }
  .browser-address {
    min-width: 0;
    margin-left: 4px;
  }
  .product-app {
    grid-template-columns: 78px minmax(0,1fr);
  }
  .product-sidebar {
    padding-inline: 8px;
  }
  .product-brand {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .product-brand > span:last-child,
  .product-nav-item span,
  .product-sidebar-status strong,
  .product-sidebar-status small {
    display: none;
  }
  .product-nav-item {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0;
  }
  .product-sidebar-status {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .product-sidebar-status > span {
    margin: 0;
  }
  .product-header {
    padding-inline: 12px;
  }
  .product-header h3 {
    font-size: 12px;
  }
  .product-dashboard {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    overflow-y: auto;
  }
  .product-next-move,
  .product-review-panel,
  .product-calendar-panel,
  .product-lifecycle-panel {
    min-height: 180px;
  }
  .brand-selector {
    right: 12px;
    bottom: 14px;
    left: 12px;
  }
  .brand-option {
    min-width: 0;
    padding-inline: 8px;
  }
  .brand-option span {
    display: none;
  }
  .apply-hero {
    padding-top: 60px;
  }
  .apply-hero-grid {
    gap: 40px;
  }
  .application-hero-visual {
    min-height: 510px;
    padding: 12px;
    border-radius: 26px;
  }
  .application-visual-stage {
    min-height: 342px;
  }
  .application-center {
    width: 122px;
    height: 122px;
    border-radius: 36px;
  }
  .application-journey-card {
    width: 132px;
    min-height: 76px;
    grid-template-columns: 18px minmax(0,1fr) 18px;
    gap: 5px;
    padding: 9px;
  }
  .application-journey-card strong {
    font-size: 8px;
  }
  .application-journey-card small {
    font-size: 6px;
  }
  .application-journey-card-2 { right: -2px; }
  .application-journey-card-3 { left: -2px; }
  .application-visual-footer {
    grid-template-columns: 1fr;
  }
  .application-visual-footer > span:nth-child(2) {
    display: none;
  }
  .apply-tablist {
    grid-template-columns: 1fr;
  }
  .form-header,
  .form-body,
  .demo-form,
  .demo-coverage {
    padding: 24px 20px;
  }
  .demo-form-intro {
    margin: -24px -20px 28px;
    padding: 24px 20px;
  }
  .form-step-title {
    grid-template-columns: 1fr;
  }
  .form-step-title > span,
  .form-step-title h3,
  .form-step-title p {
    grid-column: 1;
    grid-row: auto;
  }
  .form-step-title h3 {
    margin-top: 8px;
  }
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .form-actions .button {
    width: 100%;
  }
  .form-action-note {
    order: -1;
    margin: 0;
  }
  .demo-coverage .demo-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .header-inner {
    padding-inline: 14px;
  }
  .brand {
    gap: 8px;
  }
  .brand-tagline {
    display: none;
  }
  .header-actions {
    gap: 6px;
  }
  .header-actions .mobile-language-switcher {
    display: inline-flex !important;
    min-width: 62px;
    height: 40px;
  }
  .mobile-language-switcher a {
    min-width: 27px;
    min-height: 32px;
  }
  .visual-lifecycle-map {
    min-height: 408px;
  }
  .visual-lifecycle-map .lifecycle-node {
    width: 72px;
  }
  .visual-lifecycle-map .lifecycle-node-2,
  .visual-lifecycle-map .lifecycle-node-3 { left: 81%; }
  .visual-lifecycle-map .lifecycle-node-5,
  .visual-lifecycle-map .lifecycle-node-6 { left: 19%; }
  .application-journey-card {
    width: 118px;
  }
  .application-journey-card i,
  .application-journey-card > span {
    display: none;
  }
  .application-journey-card {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .visual-orbit-two,
  .visual-pulse,
  .application-route-pulse {
    animation: none !important;
  }
  .mobile-nav,
  .mobile-nav-panel,
  .mobile-nav-backdrop,
  .apply-panel.is-active {
    transition: none !important;
    animation: none !important;
  }
}

/* v2.1.1 final viewport polish */
.section,
.section-tight,
[id] {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

@media (min-width: 1181px) {
  .home-hero {
    padding-top: clamp(44px, 4vw, 64px);
    padding-bottom: clamp(78px, 7vw, 104px);
  }
  .home-hero .display-hero {
    font-size: clamp(54px, 4.8vw, 74px);
    line-height: .96;
  }
  .home-hero .lead {
    max-width: 640px;
  }
  .home-hero .hero-grid {
    align-items: center;
  }
  .hero-visual,
  .visual-shell {
    min-height: 630px;
  }
  .visual-lifecycle-workspace {
    min-height: 414px;
  }
}

/* The drawer owns the full mobile viewport and remains above the sticky header. */
@media (max-width: 980px) {
  .site-header.menu-open {
    z-index: 250;
  }
  .site-header.menu-open .header-inner {
    visibility: hidden;
  }
  .mobile-nav {
    inset: 0 !important;
    height: 100dvh;
    min-height: 100vh;
  }
  .mobile-nav-panel {
    position: absolute;
    inset: 0 auto 0 0;
    height: 100dvh;
    min-height: 100vh;
  }
  .mobile-nav-scroll {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  .mobile-nav-link > span:nth-child(2) {
    display: grid;
    gap: 5px;
  }
  .mobile-nav-link > span:nth-child(2) > strong,
  .mobile-nav-link > span:nth-child(2) > span {
    display: block;
    margin: 0;
  }
  .mobile-nav-link > span:nth-child(2) > strong {
    line-height: 1.15;
  }
}

/* ==========================================================================\
   iQPartners v2.1.1 — compact narrative rhythm, market clarity, and forms\
   ========================================================================== */

/* Keep the next chapter visible on first load instead of treating every hero
   like a full-screen poster. */
.section {
  padding-block: clamp(68px, 6.6vw, 104px);
}

.section-tight {
  padding-block: clamp(48px, 5vw, 76px);
}

.page-hero {
  min-height: 0;
  padding: clamp(42px, 4.4vw, 66px) 0 clamp(50px, 5vw, 74px);
  overflow: clip;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(34px, 4.5vw, 64px);
}

.page-hero .display-hero {
  max-width: 760px;
  font-size: clamp(43px, 4.35vw, 64px);
  line-height: .98;
  text-wrap: balance;
}

.page-hero .lead {
  max-width: 690px;
  margin-top: 20px;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.52;
}

.page-hero .button-row {
  margin-top: 26px;
}

.page-visual {
  min-height: 380px;
}

/* An explicit, accessible invitation to continue the story. */
.home-hero,
.page-hero {
  position: relative;
}

.page-scroll-cue {
  position: absolute;
  z-index: 8;
  right: max(22px, calc((100vw - min(1360px, calc(100vw - 48px))) / 2));
  bottom: 14px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid rgba(7, 17, 31, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 9px 28px rgba(7,17,31,.08);
  color: var(--muted);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: .02em;
  backdrop-filter: blur(14px);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.page-scroll-cue:hover,
.page-scroll-cue:focus-visible {
  border-color: rgba(45,103,246,.35);
  color: var(--blue);
  transform: translateY(2px);
}

.page-scroll-cue-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  line-height: 1;
}

/* Home remains a signature opening, but the first following section is visible
   at standard laptop heights. */
@media (min-width: 1181px) {
  .home-hero {
    padding-top: clamp(38px, 3.4vw, 54px);
    padding-bottom: clamp(60px, 5vw, 78px);
  }

  .home-hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(490px, .96fr);
    gap: clamp(36px, 4vw, 60px);
  }

  .home-hero .display-hero {
    font-size: clamp(50px, 4.45vw, 68px);
    line-height: .965;
  }

  .hero-visual,
  .visual-shell {
    min-height: 552px;
  }

  .visual-lifecycle-workspace {
    min-height: 344px;
  }
}

/* Compact hero-specific product visuals. */
.page-platform .lifecycle-ribbon {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-height: none;
  padding: 16px;
}

.page-platform .ribbon-step {
  min-height: 52px;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  padding: 7px 9px;
  border-radius: 13px;
}

.page-platform .ribbon-step-number {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.page-platform .ribbon-step > span:nth-child(2) > span,
.page-platform .ribbon-check {
  display: none;
}

.page-platform .ribbon-step strong {
  font-size: 11px;
}

.page-ai-now .page-hero .display-hero {
  max-width: 720px;
  font-size: clamp(41px, 4vw, 59px);
}

.page-ai-now .brain-constellation {
  min-height: 410px;
}

.page-ai-now .brain-ring-1 { width: 220px; height: 220px; }
.page-ai-now .brain-ring-2 { width: 310px; height: 310px; }
.page-ai-now .brain-ring-3 { width: 392px; height: 392px; }
.page-ai-now .brain-center { width: 132px; height: 132px; }
.page-ai-now .brain-caption { bottom: 14px; }

.page-capabilities .capability-hero-visual {
  min-height: 405px;
}

.page-capabilities .capability-orbit {
  width: min(390px, 100%);
}

.page-capabilities .capability-orbit > strong {
  width: 126px;
  height: 126px;
  border-radius: 38px;
  font-size: 19px;
}

.page-partners .business-model {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  padding: 18px;
}

.page-partners .business-model-step {
  min-height: 62px;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  padding: 9px 11px;
}

.page-partners .business-model-step span:first-child {
  width: 30px;
  height: 30px;
}

.page-partners .business-model-step small {
  display: none;
}

.apply-hero .application-hero-visual {
  min-height: 430px;
}

.apply-hero .application-visual-stage {
  min-height: 276px;
}

.apply-hero .application-center {
  width: 128px;
  height: 128px;
  border-radius: 38px;
}

.apply-hero .application-journey-card {
  width: 150px;
  min-height: 78px;
}

/* The Business Brain section now reads as a deliberate architecture, not text
   floating on an empty dark surface. */
.ai-brain-layout {
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 5vw, 76px);
}

.ai-brain-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ai-brain-grid .story-card {
  position: relative;
  min-height: 248px;
  overflow: hidden;
  padding: 27px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(56,189,248,.13), transparent 13rem),
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.048));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 48px rgba(0,0,0,.12);
}

.ai-brain-grid .story-card::after {
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(124,241,207,.12);
  border-radius: 50%;
  content: "";
}

.ai-brain-grid .story-card-number {
  color: #7cf1cf;
}

.ai-brain-grid .story-card h3 {
  max-width: 290px;
  margin-top: 46px;
  color: var(--white);
  font-size: clamp(22px, 2vw, 28px);
}

.ai-brain-grid .story-card p {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.58;
}

.ai-brain-section .proof-badge {
  border: 1px solid rgba(124,241,207,.18);
  background: rgba(34,207,163,.1);
  color: #a8f5de;
}

/* Partner-first industry hero. iQPartners frames the opportunity; iQmindset
   remains the platform configured underneath it. */
.page-industries .page-hero .display-hero {
  max-width: 650px;
  font-size: clamp(45px, 4.3vw, 63px);
}

.industry-solution-visual {
  position: relative;
  min-height: 398px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 13px;
  overflow: hidden;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(56,189,248,.16), transparent 17rem),
    radial-gradient(circle at 10% 100%, rgba(34,207,163,.12), transparent 15rem),
    linear-gradient(rgba(7,17,31,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,17,31,.035) 1px, transparent 1px),
    rgba(255,255,255,.86);
  background-size: auto, auto, 28px 28px, 28px 28px, auto;
  box-shadow: var(--shadow-lg);
}

.industry-solution-top,
.industry-solution-footer {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 13px;
  border: 1px solid rgba(220,227,236,.86);
  border-radius: 13px;
  background: rgba(255,255,255,.82);
}

.industry-solution-top > span {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 820;
}

.industry-solution-top b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.industry-solution-top i,
.industry-solution-footer > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(34,207,163,.12);
}

.industry-solution-center {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 17px 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--ink), #143354);
  color: var(--white);
}

.industry-solution-center > span {
  color: #7cf1cf;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.industry-solution-center strong {
  font-size: 22px;
  text-align: center;
}

.industry-solution-center small {
  color: rgba(255,255,255,.58);
  font-size: 9px;
}

.industry-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.industry-solution-module {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  gap: 3px 10px;
  min-height: 94px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.84);
}

.industry-solution-module > span {
  grid-row: 1 / span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: rgba(45,103,246,.09);
  color: var(--blue);
}

.industry-solution-module svg {
  width: 17px;
  height: 17px;
}

.industry-solution-module strong {
  align-self: end;
  color: var(--ink);
  font-size: 11px;
}

.industry-solution-module small {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.35;
}

.industry-solution-footer {
  justify-content: flex-start;
  color: var(--muted);
  font-size: 9px;
}

.industry-solution-footer strong {
  margin-left: 3px;
}

.industry-explorer-section .section-heading {
  margin-bottom: 36px;
}

.industry-explorer {
  gap: 18px;
}

.industry-layout {
  grid-template-columns: minmax(340px, .8fr) minmax(0, 1.2fr);
  gap: 18px;
}

.industry-list {
  max-height: 620px;
  gap: 9px;
}

.industry-card-button {
  min-height: 112px;
  padding: 15px;
}

.industry-card-button span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.industry-detail {
  top: calc(var(--header-h) + 18px);
  min-height: 620px;
  padding: 28px;
}

.industry-detail h3 {
  font-size: clamp(31px, 3vw, 43px);
}

.industry-detail-grid {
  gap: 10px;
  margin-top: 22px;
}

.industry-detail-block {
  min-height: 126px;
  padding: 15px;
}

/* Searchable multi-selects replace long checkbox walls while preserving a
   semantic native select as the no-JavaScript and submission foundation. */
.form-shell {
  overflow: visible;
}

.multiselect-field {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.multiselect-field legend {
  padding: 0;
}

.field-help {
  margin: -1px 0 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.searchable-multiselect.is-enhanced {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.smart-multiselect {
  position: relative;
  z-index: 3;
}

.multiselect-field.is-open .smart-multiselect {
  z-index: 80;
}

.smart-multiselect-trigger {
  width: 100%;
  min-height: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid #c8d2df;
  border-radius: 14px;
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(7,17,31,.02);
  color: var(--ink);
  text-align: left;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.smart-multiselect-trigger:hover {
  border-color: rgba(45,103,246,.42);
}

.smart-multiselect-trigger:focus-visible,
.multiselect-field.is-open .smart-multiselect-trigger {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(45,103,246,.12);
  outline: 0;
}

.smart-multiselect-trigger[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 4px rgba(194,65,75,.1);
}

.smart-multiselect-trigger-copy {
  min-width: 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 680;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smart-multiselect-trigger-copy.is-placeholder {
  color: #758194;
  font-weight: 520;
}

.smart-multiselect-count {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.smart-multiselect-chevron {
  position: relative;
  width: 16px;
  height: 16px;
}

.smart-multiselect-chevron::before,
.smart-multiselect-chevron::after {
  position: absolute;
  top: 7px;
  width: 7px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--muted);
  content: "";
  transition: transform .2s ease;
}

.smart-multiselect-chevron::before { left: 2px; transform: rotate(42deg); }
.smart-multiselect-chevron::after { right: 2px; transform: rotate(-42deg); }
.multiselect-field.is-open .smart-multiselect-chevron::before { transform: rotate(-42deg); }
.multiselect-field.is-open .smart-multiselect-chevron::after { transform: rotate(42deg); }

.smart-multiselect-popover {
  position: absolute;
  z-index: 90;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.985);
  box-shadow: 0 28px 72px rgba(7,17,31,.18);
  backdrop-filter: blur(18px);
}

.smart-multiselect-popover[hidden] {
  display: none !important;
}

.smart-multiselect-search-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.smart-multiselect-search {
  min-height: 44px !important;
  padding: 0 12px !important;
  border-radius: 11px !important;
  font-size: 13px !important;
}

.smart-multiselect-clear {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--cloud);
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
}

.smart-multiselect-clear:hover,
.smart-multiselect-clear:focus-visible {
  border-color: rgba(45,103,246,.3);
  color: var(--blue);
}

.smart-multiselect-options {
  max-height: 265px;
  overflow-y: auto;
  display: grid;
  gap: 4px;
  padding: 8px 2px 2px;
  overscroll-behavior: contain;
}

.smart-multiselect-option {
  position: relative;
  display: grid;
  grid-template-columns: 20px 20px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: var(--ink);
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease;
}

.smart-multiselect-option:hover,
.smart-multiselect-option:focus-within {
  border-color: rgba(45,103,246,.2);
  background: rgba(45,103,246,.055);
}

.smart-multiselect-option.is-selected {
  border-color: rgba(45,103,246,.24);
  background: rgba(45,103,246,.075);
}

.smart-multiselect-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.smart-multiselect-check {
  grid-column: 1;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid #aeb9c8;
  border-radius: 6px;
  background: var(--white);
}

.smart-multiselect-option.is-selected .smart-multiselect-check {
  border-color: var(--blue);
  background: var(--blue);
}

.smart-multiselect-option.is-selected .smart-multiselect-check::after {
  width: 8px;
  height: 4px;
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  content: "";
  transform: translateY(-1px) rotate(-45deg);
}

.smart-multiselect-option-label {
  grid-column: 3;
  font-size: 12px;
  font-weight: 690;
  line-height: 1.35;
}

.smart-multiselect-option.is-other-option .smart-multiselect-option-label {
  color: var(--blue);
}

.smart-multiselect-empty {
  margin: 0;
  padding: 18px 12px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.smart-multiselect-other {
  display: grid;
  gap: 6px;
  margin-top: 9px;
  padding: 11px;
  border-radius: 13px;
  background: rgba(34,207,163,.075);
}

.smart-multiselect-other[hidden] {
  display: none !important;
}

.smart-multiselect-other > span {
  color: #0b7658;
  font-size: 10px;
  font-weight: 800;
}

.smart-multiselect-other input {
  min-height: 46px !important;
  padding: 0 12px !important;
  border-radius: 11px !important;
  background: white !important;
  font-size: 13px !important;
}

.smart-multiselect-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
}

.smart-multiselect-chips:empty {
  display: none;
}

.smart-multiselect-chip {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  padding: 0 10px;
  border: 1px solid rgba(45,103,246,.18);
  border-radius: 999px;
  background: rgba(45,103,246,.07);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
}

.smart-multiselect-chip > span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smart-multiselect-chip > span:last-child {
  color: var(--blue);
  font-size: 15px;
  line-height: 1;
}

.form-header {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

/* Reduce dead air around conversion and final sections. */
.apply-conversion-section,
.industry-explorer-section {
  padding-top: clamp(58px, 5.5vw, 86px);
}

.apply-trust-section {
  padding-top: clamp(62px, 6vw, 92px);
  padding-bottom: clamp(62px, 6vw, 92px);
}

.final-cta {
  margin-block: 0;
}

@media (max-width: 1180px) {
  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
    gap: 36px;
  }

  .page-hero .display-hero {
    font-size: clamp(42px, 5vw, 58px);
  }

  .page-ai-now .brain-constellation,
  .page-capabilities .capability-hero-visual,
  .industry-solution-visual {
    min-height: 380px;
  }
}

@media (max-width: 980px) {
  .section {
    padding-block: clamp(64px, 8vw, 88px);
  }

  .page-hero {
    padding-top: 46px;
    padding-bottom: 70px;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .page-hero .display-hero,
  .page-ai-now .page-hero .display-hero,
  .page-industries .page-hero .display-hero {
    max-width: 760px;
    font-size: clamp(42px, 7vw, 58px);
  }

  .page-visual,
  .page-ai-now .brain-constellation,
  .page-capabilities .capability-hero-visual,
  .industry-solution-visual {
    min-height: 370px;
  }

  .page-scroll-cue {
    right: 20px;
    bottom: 14px;
  }

  .ai-brain-layout,
  .industry-layout {
    grid-template-columns: 1fr;
  }

  .ai-brain-section .sticky-copy,
  .industry-detail {
    position: static;
  }

  .industry-list {
    max-height: 510px;
  }

  .industry-detail {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .section {
    padding-block: 66px;
  }

  .section-tight {
    padding-block: 52px;
  }

  .page-hero {
    padding-top: 34px;
    padding-bottom: 66px;
  }

  .page-hero .display-hero,
  .page-ai-now .page-hero .display-hero,
  .page-industries .page-hero .display-hero {
    font-size: clamp(38px, 11.5vw, 48px);
    line-height: .99;
  }

  .page-hero .lead {
    font-size: 17px;
  }

  .page-scroll-cue {
    right: 14px;
    bottom: 12px;
    min-height: 36px;
  }

  .page-scroll-cue > span:first-child {
    display: none;
  }

  .page-platform .lifecycle-ribbon {
    display: flex;
    overflow-x: auto;
    padding: 13px;
    scroll-snap-type: x mandatory;
  }

  .page-platform .ribbon-step {
    min-width: 210px;
    scroll-snap-align: start;
  }

  .page-ai-now .brain-constellation,
  .page-capabilities .capability-hero-visual,
  .industry-solution-visual {
    min-height: 350px;
  }

  .page-ai-now .brain-ring-3 {
    width: 330px;
    height: 330px;
  }

  .page-ai-now .brain-ring-2 {
    width: 270px;
    height: 270px;
  }

  .ai-brain-grid,
  .industry-solution-grid,
  .industry-detail-grid {
    grid-template-columns: 1fr;
  }

  .ai-brain-grid .story-card {
    min-height: 218px;
  }

  .industry-solution-center {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .industry-solution-module {
    min-height: 78px;
  }

  .industry-layout {
    gap: 14px;
  }

  .industry-list {
    grid-template-columns: 1fr;
    max-height: 430px;
  }

  .industry-card-button {
    min-height: 98px;
  }

  .industry-detail {
    padding: 22px;
  }

  .smart-multiselect-popover {
    right: 0;
    left: 0;
  }

  .smart-multiselect-search-wrap {
    grid-template-columns: 1fr;
  }

  .smart-multiselect-clear {
    width: 100%;
  }

  .smart-multiselect-trigger {
    grid-template-columns: minmax(0, 1fr) 18px;
  }

  .smart-multiselect-count {
    display: none;
  }

  .apply-hero .application-hero-visual {
    min-height: 430px;
  }
}

@media (max-width: 390px) {
  .page-hero .display-hero,
  .page-ai-now .page-hero .display-hero,
  .page-industries .page-hero .display-hero {
    font-size: 39px;
  }

  .industry-solution-visual {
    min-height: 370px;
    padding: 12px;
  }

  .industry-solution-top b {
    font-size: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-scroll-cue,
  .smart-multiselect-trigger,
  .smart-multiselect-option,
  .smart-multiselect-chevron::before,
  .smart-multiselect-chevron::after {
    transition: none !important;
  }
}
