/* ImagineNXT — recommended site (2026 positioning) */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700;800&family=Nunito:wght@600;700;800&family=Roboto:wght@400;500;700&display=swap');

:root {
  --bg: #0e102c;
  --bg-elevated: #161838;
  --bg-card: #1c2450;
  --text: #ececf4;
  --muted: #a8adc4;
  --purple: #3e2a7d;
  --purple-light: #6b4fc7;
  --pink: #ee8cb7;
  --peach: #f6b26b;
  --accent-line: rgba(186, 196, 220, 0.22);
  --font-display: 'Nunito', system-ui, sans-serif;
  --font-hero-inner: 'Inter', 'Nunito', system-ui, sans-serif;
  --font-body: 'Roboto', system-ui, sans-serif;
  --prose-size: clamp(1.05rem, 1.8vw, 1.15rem);
  --prose-line: 1.55;
  --prose-color: rgba(236, 236, 244, 0.88);
  --prose-weight: 500;
  --hero-image: url('../assets/hero-bg.png');
  --nav-text: #e8ecf4;
  --nav-text-muted: rgba(232, 236, 244, 0.82);
  --glass-blur: 8px;
  --glass-saturate: 1.28;
  --nav-glass-blur: 6px;
  --panel-highlight: linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.015) 24%, transparent 46%);
  --panel-fill: linear-gradient(165deg, rgba(30, 28, 58, 0.94) 0%, rgba(16, 18, 44, 0.96) 52%, rgba(10, 12, 36, 0.97) 100%);
  --panel-border-color: rgba(196, 204, 224, 0.12);
  --panel-glow: 0 0 18px rgba(120, 130, 165, 0.06), 0 0 28px rgba(107, 79, 199, 0.05);
  --panel-shadow: 0 10px 36px rgba(0, 0, 0, 0.26);
  --panel-inset: inset 0 1px 0 rgba(255, 255, 255, 0.11), inset 0 -1px 0 rgba(0, 0, 0, 0.18);
  --title-gradient-short: linear-gradient(90deg, #ffffff 0%, #d4e4ff 42%, #8fa8ff 100%);
  --title-gradient-long: linear-gradient(90deg, #ffffff 0%, #b8d0ff 22%, #9b72e8 48%, #e878b8 72%, #f6b26b 100%);
  --title-peach: linear-gradient(90deg, #fff0d8, #ffc878, var(--peach), #ffe8b8);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  background-color: #040610;
  background-image:
    linear-gradient(
      118deg,
      rgba(255, 255, 255, 0.035) 0%,
      rgba(210, 228, 255, 0.018) 10%,
      transparent 22%
    ),
    radial-gradient(ellipse 100% 72% at 6% -6%, rgba(80, 55, 140, 0.36), transparent 50%),
    radial-gradient(ellipse 52% 42% at 91% 7%, rgba(150, 175, 220, 0.12), transparent 56%),
    radial-gradient(ellipse 62% 48% at 86% 34%, rgba(238, 140, 183, 0.07), transparent 52%),
    radial-gradient(ellipse 72% 52% at 14% 90%, rgba(246, 178, 107, 0.05), transparent 54%),
    radial-gradient(ellipse 92% 62% at 50% 106%, rgba(30, 55, 110, 0.32), transparent 58%),
    linear-gradient(
      152deg,
      transparent 28%,
      rgba(90, 125, 200, 0.04) 43%,
      rgba(140, 95, 185, 0.045) 50%,
      rgba(200, 150, 105, 0.03) 57%,
      transparent 72%
    ),
    linear-gradient(
      180deg,
      #04050e 0%,
      #060818 16%,
      #080a1c 38%,
      #0a0c20 52%,
      #080a1c 72%,
      #05060e 100%
    );
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.52;
  mix-blend-mode: screen;
  background:
    linear-gradient(
      105deg,
      transparent 0%,
      transparent 36%,
      rgba(255, 255, 255, 0.03) 44%,
      rgba(210, 225, 255, 0.065) 49%,
      rgba(175, 155, 220, 0.052) 51%,
      rgba(215, 175, 130, 0.038) 53%,
      transparent 62%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.025) 0%,
      transparent 14%,
      transparent 86%,
      rgba(0, 0, 0, 0.16) 100%
    );
}

/* Subtle grain + fine metallic fleck */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 8%),
    radial-gradient(circle at 78% 62%, rgba(160, 180, 220, 0.03) 0%, transparent 6%);
  background-size: 180px 180px, 100% 100%, 100% 100%;
}

body > header,
body > main,
body > footer {
  position: relative;
  z-index: 1;
}

a { color: #9eb0ff; }
a:hover { color: var(--peach); }

img { max-width: 100%; height: auto; }

.container { width: min(1120px, 92vw); margin: 0 auto; }

/* Nav — solid black bar + silver edge (glass logo frame) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
  background: #05060e;
  border-bottom: 1px solid rgba(186, 198, 222, 0.16);
  box-shadow:
    0 1px 0 rgba(220, 228, 245, 0.05),
    0 4px 18px rgba(0, 0, 0, 0.38);
}

.site-header > .container.header-row {
  padding: 0.5rem 1.15rem;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-header .header-row {
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
}

.logo--blend img {
  mix-blend-mode: normal;
}

.logo img {
  display: block;
  height: clamp(3.16rem, 4.93vw, 4.66rem);
  width: auto;
  max-width: min(22.8rem, 78vw);
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 768px) {
  .logo img {
    height: clamp(2.7rem, 11.4vw, 3.67rem);
    max-width: min(19rem, 87vw);
  }
}

/* Unified dropdown nav */
.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.25rem;
  font-family: var(--font-hero-inner);
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.site-nav > a,
.mobile-nav > a {
  color: var(--nav-text);
  font-weight: 800;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

.site-nav > a:hover,
.site-nav > a.active,
.mobile-nav > a:hover,
.mobile-nav > a.active {
  color: var(--peach);
}

.nav-group {
  position: relative;
}

.nav-label {
  color: var(--nav-text);
  font-weight: 800;
  cursor: default;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

.nav-group:hover .nav-label,
.nav-group:focus-within .nav-label {
  color: var(--peach);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 0.5rem 0;
  background: #0a0c14;
  border: 1px solid rgba(186, 198, 222, 0.14);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  z-index: 200;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 0.55rem 1rem;
  color: var(--nav-text-muted);
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  color: var(--peach);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  display: none;
  font-family: var(--font-hero-inner);
  font-size: 1.04rem;
  font-weight: 700;
  background: #12141f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--nav-text);
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  width: 100%;
  padding: 1rem 0 0;
}

.mobile-nav .site-nav {
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
}

.mobile-nav .nav-group {
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  background: #0a0c14;
  border: 1px solid rgba(186, 198, 222, 0.14);
}

.mobile-nav .nav-label {
  display: block;
  margin-bottom: 0.35rem;
  padding: 0;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(200, 208, 228, 0.75);
}

.mobile-nav .site-nav > a {
  display: block;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  background: #0a0c14;
  border: 1px solid rgba(186, 198, 222, 0.14);
}

.mobile-nav .nav-dropdown {
  position: static;
  display: block;
  box-shadow: none;
  border: none;
  padding: 0;
  background: transparent;
}

.mobile-nav .nav-dropdown a {
  padding: 0.5rem 0;
  font-size: 1.04rem;
  border-bottom: 1px solid rgba(196, 204, 224, 0.08);
}

.mobile-nav .nav-dropdown a:last-child {
  border-bottom: none;
}

.mobile-nav .nav-dropdown a:hover,
.mobile-nav .nav-dropdown a.active {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.mobile-nav:not([hidden]) {
  display: block;
}

@media (max-width: 900px) {
  .header-row > .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }
}

/* Shared hero background — homepage .hero and inner .page-hero */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg, rgba(8, 12, 28, 0.94) 0%, rgba(8, 12, 28, 0.86) 42%, rgba(8, 12, 28, 0.52) 72%, rgba(8, 12, 28, 0.36) 100%),
    radial-gradient(ellipse 70% 90% at 85% 50%, rgba(62, 42, 125, 0.28), transparent),
    var(--hero-image) center right / cover no-repeat;
  pointer-events: none;
}

/* Inner-page hero — taller band, lighter overlay (text sits in frosted box) */
.page-hero {
  position: relative;
  padding: 3.25rem 0 2rem;
  overflow: hidden;
  min-height: clamp(340px, 48vh, 520px);
  display: flex;
  align-items: center;
  border-bottom: none;
}

.page-hero .hero-bg {
  background:
    linear-gradient(180deg, rgba(6, 8, 20, 0.72) 0%, rgba(10, 8, 28, 0.58) 42%, rgba(6, 8, 20, 0.68) 100%),
    radial-gradient(ellipse 90% 80% at 50% 40%, rgba(62, 42, 125, 0.12), transparent 70%),
    var(--hero-image) center center / cover no-repeat;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
  width: min(52rem, 92vw);
  margin: 0 auto;
  text-align: center;
  padding: 2.25rem 2.5rem;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 28%, transparent 50%),
    linear-gradient(165deg, rgba(34, 26, 72, 0.62) 0%, rgba(18, 22, 54, 0.68) 52%, rgba(12, 14, 40, 0.72) 100%);
  backdrop-filter: blur(10px) saturate(1.12);
  -webkit-backdrop-filter: blur(10px) saturate(1.12);
  border: none;
  box-shadow:
    var(--panel-glow),
    0 10px 32px rgba(0, 0, 0, 0.22);
}

.page-hero h1 {
  display: inline-block;
  max-width: 100%;
  font-family: var(--font-hero-inner);
  font-size: clamp(2.45rem, 5.6vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.85rem;
  background: var(--title-gradient-short);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.page-hero h1.title-gradient-long {
  background-image: var(--title-gradient-long);
}

.page-hero h1 span {
  display: inline;
  background: var(--title-peach);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.page-hero .lead {
  font-size: clamp(1.15rem, 2vw, 1.28rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--peach);
  max-width: none;
  margin: 0;
}

@media (max-width: 640px) {
  .page-hero > .container {
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
  }
}

/* Per-page hero backgrounds (page art replaces default hero-bg.png) */
body[data-page="about"] .page-hero { --hero-image: url('../assets/page-about.png'); }
body[data-page="advisor"] .page-hero { --hero-image: url('../assets/page-advisor.png'); }
body[data-page="orchestrator"] .page-hero { --hero-image: url('../assets/page-orchestrator.png'); }
body[data-page="experience"] .page-hero { --hero-image: url('../assets/page-experience.png'); }

body[data-page="partnerships"] .page-hero { --hero-image: url('../assets/page-partnerships.png'); }
body[data-page="partner-with-us"] .page-hero { --hero-image: url('../assets/page-partner-with-us.png'); }

#strategic-partners,
#partner-with-us {
  scroll-margin-top: 5.5rem;
}
body[data-page="ai-strategy-office"] .page-hero { --hero-image: url('../assets/page-ai-strategy.png'); }
body[data-page="contact"] .page-hero { --hero-image: url('../assets/page-contact.png'); }
body[data-page="schedule"] .page-hero { --hero-image: url('../assets/page-contact.png'); }
body[data-page="careers"] .page-hero { --hero-image: url('../assets/page-careers.png'); }
body[data-page="customer-spotlights"] .page-hero { --hero-image: url('../assets/page-customer-spotlights.png'); }
body[data-page="advisory-edge"] .page-hero { --hero-image: url('../assets/page-advisory-edge.png'); }
body[data-page="leadership"] .page-hero { --hero-image: url('../assets/page-leadership.png'); }

.schedule-embed {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 14px;
  background: rgba(26, 34, 72, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.schedule-embed .tidycal-embed {
  min-height: 0;
}

.schedule-embed iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  vertical-align: top;
}

.schedule-fallback {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.contact-panel {
  margin: 1.5rem 0 1.25rem;
  padding: 1.5rem 1.6rem;
  border-radius: 14px;
  background:
    var(--panel-highlight),
    linear-gradient(165deg, rgba(36, 28, 82, 0.9) 0%, rgba(24, 30, 68, 0.92) 100%);
  border: 1px solid var(--panel-border-color);
  border-left: 3px solid var(--pink);
  box-shadow:
    var(--panel-glow),
    0 8px 28px rgba(0, 0, 0, 0.22),
    var(--panel-inset);
}

.contact-panel-label {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--peach);
}

.contact-panel-email {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.3;
}

.contact-panel-email a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(238, 140, 183, 0.35);
}

.contact-panel-email a:hover {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

.contact-panel-hint {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 36rem;
}

.contact-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-schedule-note {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.contact-schedule-note a {
  color: var(--pink);
  font-weight: 600;
}

.contact-schedule-note a:hover {
  color: var(--peach);
}

.contact-hq {
  margin: 1.75rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(107, 79, 199, 0.22);
}

.contact-hq-address {
  font-style: normal;
}

/* Shared body prose — inner pages + homepage section intros */
.content-block p,
.content-block li,
.section-head p,
.section-head-journey .journey-lead,
.section-shell > p:not([class]),
.leader-card-with-photo > div > p:not(.role),
.partnership-card-body p,
.partnership-card-body li,
.orchestrator-step p,
.platform-stats-grid p,
.feature-split-body p,
.spotlight-card-body p:not(.spotlight-kicker),
.adoption-list li {
  font-size: var(--prose-size);
  line-height: var(--prose-line);
}

.content-block p,
.section-head p,
.section-head-journey .journey-lead,
.section-shell > p:not([class]),
.leader-card-with-photo > div > p:not(.role) {
  font-weight: var(--prose-weight);
  color: var(--prose-color);
}

.feature-split-body p {
  font-weight: var(--prose-weight);
  color: var(--prose-color);
}

.content-block p {
  margin: 0 0 1rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block ul,
.content-block ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--prose-color);
}

.content-block li {
  margin-bottom: 0.45rem;
  font-weight: var(--prose-weight);
}

.content-block li:last-child {
  margin-bottom: 0;
}

/* Contact HQ — must follow .content-block p (overrides prose color/size) */
.content-block .contact-hq .contact-hq-brand {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--pink);
}

.content-block .contact-hq .contact-hq-legal {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  line-height: 1.55;
  font-weight: 700;
  color: var(--peach);
}

.content-block .contact-hq .contact-hq-address {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  line-height: 1.55;
  font-style: normal;
  color: var(--muted);
}

.content-block .contact-hq .contact-hq-email {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.content-block .contact-hq .contact-hq-email a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: none;
}

.content-block .contact-hq .contact-hq-email a:hover {
  color: var(--peach);
}

.content-block .contact-hq .contact-hq-global {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(168, 173, 196, 0.85);
}

.section-shell > p:not([class]) {
  margin: 0 0 1rem;
}

.leader-card-with-photo > div > p:not(.role) {
  margin: 0 0 0.75rem;
}

.content-block h3 {
  color: var(--peach);
  font-family: var(--font-hero-inner);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 2rem;
}

.leader-card {
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.leader-card h3 {
  margin: 0 0 0.35rem;
  color: var(--peach);
  font-family: var(--font-display);
  font-size: 1.56rem;
  font-weight: 800;
}

.leader-card .role {
  font-size: 0.9rem;
  color: var(--pink);
  margin-bottom: 0.75rem;
}

.site-footer .legal {
  font-size: 0.72rem;
  margin-top: 0.5rem;
  max-width: 36rem;
  line-height: 1.5;
}

/* Hero — homepage only uses newhero_background.png */
.hero {
  position: relative;
  padding: 4rem 0 2.5rem;
  overflow: hidden;
  --hero-image: url('../assets/newhero_background.png');
}

.hero > .container {
  position: relative;
  z-index: 2;
}

/* Hero — video as background (revert: remove hero--video-bg from section + restore hero-grid card) */
.hero--video-bg {
  min-height: clamp(28rem, 72vh, 40rem);
  padding: 4.5rem 0 2.5rem;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #080b1c;
}

.hero-video-bg__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.hero--video-bg .hero-bg {
  opacity: 0.35;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      102deg,
      rgba(8, 11, 28, 0.94) 0%,
      rgba(8, 11, 28, 0.9) 30%,
      rgba(8, 11, 28, 0.84) 48%,
      rgba(8, 11, 28, 0.74) 62%,
      rgba(8, 11, 28, 0.62) 100%
    );
}

.hero-copy-block {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  padding: 0.25rem 0 1.5rem;
}

.hero--video-bg .hero-copy-block {
  max-width: 64rem;
}

.hero-lower {
  position: relative;
  z-index: 1;
}

@media (max-width: 800px) {
  .hero--video-bg {
    min-height: 0;
    padding: 3rem 0 2rem;
  }

  .hero-video-bg {
    height: min(38vh, 15rem);
    bottom: auto;
  }

  .hero-scrim {
    height: min(38vh, 15rem);
    bottom: auto;
    background:
      linear-gradient(
        180deg,
        rgba(8, 11, 28, 0.52) 0%,
        rgba(8, 11, 28, 0.72) 100%
      );
  }

  .hero-video-bg__media {
    object-fit: cover;
    object-position: center 38%;
  }

  .hero-copy-block {
    max-width: none;
    padding-bottom: 1.25rem;
  }

  .hero-lower {
    margin-top: 0.25rem;
    padding-top: 0.35rem;
    border-radius: 12px 12px 0 0;
    background: rgba(8, 11, 28, 0.92);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-bg {
    display: none;
  }

  .hero--video-bg .hero-bg {
    opacity: 1;
  }

  .hero-scrim {
    background: rgba(8, 11, 28, 0.55);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2.25rem;
  align-items: center;
}

.hero h1 {
  display: inline-block;
  max-width: 100%;
  font-family: var(--font-hero-inner);
  font-size: clamp(2.45rem, 5.6vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 1rem;
  background: var(--title-gradient-short);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero h1.title-gradient-long {
  background-image: var(--title-gradient-long);
}

.hero h1 span {
  display: inline;
  white-space: nowrap;
  background: var(--title-peach);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero .lead {
  font-size: clamp(calc(1.15rem + 2px), calc(2vw + 2px), calc(1.28rem + 2px));
  font-weight: 700;
  line-height: 1.55;
  color: rgba(236, 236, 244, 0.92);
  max-width: 38rem;
  margin: 0 0 0.65rem;
}

.hero--video-bg .lead {
  max-width: 62rem;
}

.hero--video-bg .lead:not(.lead-accent) {
  max-width: 74rem;
}

.hero .lead .lead-one-line {
  white-space: nowrap;
}

@media (max-width: 800px) {
  .hero .lead .lead-one-line {
    white-space: normal;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-stats {
    flex-wrap: wrap;
    row-gap: 0.55rem;
  }

  .hero-stats li {
    white-space: normal;
  }
}

.hero .lead.lead-accent {
  color: var(--peach);
  margin-bottom: 1.5rem;
}

.hero .lead.lead-accent strong {
  color: #ffe4c4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--accent-line);
}

.hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: none;
  background: rgba(12, 18, 40, 0.35);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(107, 79, 199, 0.1);
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.14),
    inset 0 -3px 7px rgba(0, 0, 0, 0.24);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 38%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

/* Light veil on left + right edges of hero asset */
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      rgba(10, 14, 38, 0.1) 0%,
      rgba(10, 14, 38, 0.06) 14%,
      rgba(10, 14, 38, 0.02) 26%,
      transparent 38%,
      transparent 62%,
      rgba(10, 14, 38, 0.02) 74%,
      rgba(10, 14, 38, 0.06) 86%,
      rgba(10, 14, 38, 0.1) 100%
    );
}

.hero-platform-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.hero-platform-stage {
  position: relative;
  display: block;
  line-height: 0;
}

.hero-orbit-glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  overflow: visible;
  mix-blend-mode: screen;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-orbit-glow {
    display: none;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  font-size: clamp(0.76rem, 1.35vw, 0.84rem);
  color: var(--muted);
}

.hero-launch-callouts {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

/* Hero — ALICE Blueprint launch callout (last row, hoverable) */
.hero-launch-callout {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 0;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  background:
    var(--panel-highlight),
    linear-gradient(165deg, rgba(42, 34, 88, 0.72) 0%, rgba(26, 28, 58, 0.78) 100%);
  border: 1px solid rgba(140, 118, 210, 0.32);
  border-left: 3px solid #ff8c42;
  box-shadow: 0 0 14px rgba(107, 79, 199, 0.1), var(--panel-inset);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-launch-callout:hover {
  border-color: rgba(238, 140, 183, 0.55);
  border-left-color: #ffb347;
  transform: translateY(-2px);
  box-shadow:
    0 0 28px rgba(107, 79, 199, 0.22),
    0 0 20px rgba(238, 140, 183, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.2),
    var(--panel-inset);
}

.hero-launch-callout-text {
  flex: 1 1 14rem;
  min-width: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(232, 236, 255, 0.9);
}

.hero-launch-callout-text strong {
  color: #fff;
  font-weight: 700;
}

.launch-product-name {
  font-family: var(--font-hero-inner);
  font-weight: 800;
  letter-spacing: -0.01em;
  background: var(--title-peach);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-launch-callout:hover .launch-product-name {
  background: linear-gradient(90deg, #ffe8b8, #ffc878, #fff0d8, #ffc878);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-launch-callout-cta {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--peach);
  white-space: nowrap;
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  background: rgba(246, 178, 107, 0.1);
  border: 1px solid rgba(246, 178, 107, 0.28);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-launch-callout--hot .hero-launch-callout-cta {
  color: #ff8a96;
  background: rgba(232, 69, 92, 0.1);
  border-color: rgba(232, 69, 92, 0.32);
}

@media (max-width: 800px) {
  .hero-launch-callout {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.55rem;
    row-gap: 0.45rem;
    align-items: start;
  }

  .launch-badge,
  .hot-badge {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .hero-launch-callout-text {
    grid-column: 2;
    grid-row: 1;
    flex: unset;
  }

  .hero-launch-callout-cta {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    width: auto;
    font-size: 0.78rem;
  }
}

.hero-launch-callout:hover .hero-launch-callout-cta {
  color: #fff;
  background: rgba(246, 178, 107, 0.22);
  border-color: rgba(246, 178, 107, 0.45);
}

.hero-launch-callout--hot:hover .hero-launch-callout-cta {
  color: #fff;
  background: rgba(232, 69, 92, 0.22);
  border-color: rgba(232, 69, 92, 0.45);
}

.launch-badge {
  flex-shrink: 0;
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1028;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.1) 38%, transparent 52%),
    linear-gradient(135deg, #ffc96a 0%, #ff9a4d 48%, #ff7a2e 100%);
  border: 1px solid rgba(255, 220, 160, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -1px 0 rgba(120, 50, 10, 0.18),
    0 0 16px rgba(255, 140, 66, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.22);
}

.hot-badge {
  flex-shrink: 0;
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.08) 38%, transparent 52%),
    linear-gradient(135deg, #ff8a96 0%, #f04d62 48%, #d92f4a 100%);
  border: 1px solid rgba(255, 180, 190, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(80, 10, 20, 0.22),
    0 0 16px rgba(232, 69, 92, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.22);
}

.hero-launch-callout--hot {
  border-left-color: #e8455c;
}

.hero-launch-callout--hot:hover {
  border-left-color: #ff6b7a;
  box-shadow:
    0 0 28px rgba(232, 69, 92, 0.2),
    0 0 20px rgba(238, 140, 183, 0.1),
    0 10px 24px rgba(0, 0, 0, 0.2),
    var(--panel-inset);
}

@media (max-width: 640px) {
  .hero-launch-callout {
    padding: 0.75rem 0.9rem;
  }

  .hero-launch-callout-text {
    font-size: 0.84rem;
  }
}

/* Imagine + NXT — brand bridge (homepage, between hero and how-it-runs) */
.name-bridge {
  padding: 2.5rem 0;
}

.name-bridge-intro {
  margin: 0 0 1.15rem;
}

.name-formula {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin: 0 0 1rem;
  font-family: var(--font-hero-inner);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: var(--title-gradient-long);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.name-imagine {
  font-weight: 800;
}

.name-plus {
  color: rgba(210, 220, 255, 0.72);
  -webkit-text-fill-color: rgba(210, 220, 255, 0.72);
  font-weight: 800;
  font-size: 0.82em;
  letter-spacing: 0;
}

.name-nxt-mark {
  display: inline-block;
  font-weight: 800;
}

.name-bridge-hook {
  margin: 1.1rem 0 0;
  text-align: left;
  font-family: var(--font-hero-inner);
  font-size: clamp(1.12rem, 2.1vw, 1.42rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: rgba(200, 206, 228, 0.82);
}

.name-bridge-hook-accent {
  font-weight: 800;
  background: var(--title-peach);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.name-bridge-lead {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--prose-size);
  font-weight: var(--prose-weight);
  letter-spacing: -0.01em;
  line-height: var(--prose-line);
  color: var(--prose-color);
  text-align: left;
}

.emph-imagine {
  display: inline-block;
  font-family: var(--font-hero-inner);
  font-weight: 800;
  background: linear-gradient(90deg, #eef2ff 0%, #a8b8ff 50%, #7b94ff 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.emph-nxt {
  display: inline-block;
  font-family: var(--font-hero-inner);
  font-weight: 800;
  background: var(--title-gradient-short);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.nxt-letter {
  color: var(--peach);
  font-weight: 800;
}

.nxt-pillars-list {
  margin: 0;
  padding: 0 0 0 1.2rem;
  list-style: disc;
}

.nxt-pillars-list li {
  margin: 0 0 0.55rem;
  padding-left: 0.2rem;
  font-family: var(--font-body);
  font-size: var(--prose-size);
  font-weight: var(--prose-weight);
  line-height: var(--prose-line);
  color: var(--prose-color);
}

.nxt-pillars-list li:last-child {
  margin-bottom: 0;
}

.nxt-pillars-list li::marker {
  color: var(--peach);
}

.nxt-pillars-term {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--prose-color);
}

.nxt-pillars-term::after {
  content: ": ";
  font-weight: var(--prose-weight);
  color: rgba(236, 236, 244, 0.5);
}

.nxt-pillars-desc {
  color: var(--muted);
}

@media (max-width: 800px) {
  .name-bridge {
    padding: 2rem 0;
  }

  .nxt-pillars-list li {
    margin-bottom: 0.5rem;
  }
}

.hero-stats li {
  flex: 0 0 auto;
  padding-left: 0.85rem;
  border-left: 2px solid var(--purple-light);
  white-space: nowrap;
}

@media (max-width: 520px) {
  .hero-stats {
    flex-wrap: wrap;
    row-gap: 0.55rem;
  }
}

.hero-stats strong {
  color: var(--peach);
  font-family: var(--font-display);
  font-weight: 800;
}

/* Product page outcome stats (Orchestrator, etc.) */
.platform-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.platform-stats-grid li {
  padding: 1.25rem 1.35rem;
  border-radius: 12px;
  background:
    var(--panel-highlight),
    linear-gradient(165deg, rgba(30, 28, 62, 0.88) 0%, rgba(18, 20, 48, 0.9) 100%);
  border: 1px solid var(--panel-border-color);
  border-left: 3px solid rgba(200, 208, 228, 0.28);
  box-shadow:
    0 0 12px rgba(120, 130, 165, 0.05),
    0 6px 22px rgba(0, 0, 0, 0.2),
    var(--panel-inset);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.platform-stats-grid li:hover {
  border-color: rgba(210, 218, 238, 0.22);
  border-left-color: var(--peach);
  transform: translateY(-2px);
  box-shadow:
    0 0 20px rgba(120, 130, 165, 0.1),
    0 0 24px rgba(107, 79, 199, 0.08),
    0 14px 32px rgba(0, 0, 0, 0.34),
    var(--panel-inset);
}

.platform-stat {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--peach);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.platform-stat-title {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.platform-stats-grid p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 800px) {
  .platform-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* How it runs — platform story */
.environment-flow-figure {
  position: relative;
  margin: 0 0 2rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(107, 79, 199, 0.2);
  background: rgba(8, 12, 28, 0.35);
}

.environment-flow-figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* Homepage how-it-runs: figure is last in shell — tighten gap to next section */
#how-it-runs {
  padding-bottom: 0.5rem;
}

#how-it-runs .environment-flow-figure {
  margin-bottom: 0;
}

#how-it-runs .section-shell {
  padding-bottom: 0.85rem;
}

@media (max-width: 640px) {
  #how-it-runs {
    padding-bottom: 0.25rem;
  }

  #how-it-runs .section-shell {
    padding-bottom: 0.65rem;
  }
}

@media (max-width: 800px) {
  .environment-flow-figure {
    width: calc(100% + 3.5rem);
    max-width: calc(100% + 3.5rem);
    margin-left: -1.75rem;
    margin-right: -1.75rem;
    border-radius: 10px;
  }
}

@media (max-width: 640px) {
  .environment-flow-figure {
    width: calc(100% + 2.5rem);
    max-width: calc(100% + 2.5rem);
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
}

.placeholder-media {
  background: rgba(26, 34, 72, 0.6);
}

.placeholder-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

.leader-card-with-photo {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.leader-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.leader-linkedin {
  display: inline-flex;
  line-height: 0;
  border-radius: 8px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.leader-linkedin:hover {
  transform: translateY(-1px);
  opacity: 0.88;
}

.leader-linkedin img {
  display: block;
  width: 40px;
  height: 40px;
}

.leader-photo {
  width: 150px;
  height: 205px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid rgba(107, 79, 199, 0.35);
  background: #1a1030;
}

/* Waist-up portrait (prasan_profile) */
.leader-photo--prasan {
  object-position: center 12%;
}

/* Head-and-shoulders — center face in same frame height as Prasan */
.leader-photo--vb {
  object-position: center 22%;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.spotlight-pillars {
  margin-top: 1.25rem;
}

.spotlight-pillars .platform-pillar strong {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.3;
  min-height: 1.48rem;
  letter-spacing: 0;
}

.spotlight-enterprise-band {
  padding: 1.5rem 1.5rem 1.35rem;
  margin-bottom: 2.25rem;
  border-radius: 14px;
  background:
    var(--panel-highlight),
    linear-gradient(155deg, rgba(42, 34, 88, 0.92) 0%, rgba(24, 28, 58, 0.94) 55%, rgba(18, 22, 48, 0.96) 100%);
  border: 1px solid rgba(107, 79, 199, 0.35);
  box-shadow:
    0 0 28px rgba(107, 79, 199, 0.14),
    0 10px 32px rgba(0, 0, 0, 0.22),
    var(--panel-inset);
}

.spotlight-enterprise-band h2.spotlight-enterprise-title {
  display: block;
  margin: 0;
  max-width: 100%;
  font-family: var(--font-hero-inner);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  background: linear-gradient(90deg, #ececf4 0%, #ddd2f0 42%, #e4cad8 68%, #ecd8c4 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.spotlight-enterprise-kicker {
  margin: 0 0 0.4rem;
  font-family: var(--font-hero-inner);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
}

.spotlight-enterprise-lead {
  margin: 0.65rem 0 0;
  max-width: none;
  width: 100%;
  color: var(--muted);
  font-size: var(--prose-size);
  line-height: var(--prose-line);
}

.spotlight-industry-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.spotlight-industry-pill {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-family: var(--font-hero-inner);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--peach);
  background: rgba(107, 79, 199, 0.22);
  border: 1px solid rgba(238, 140, 183, 0.28);
}

.spotlight-industry-pills--intro {
  justify-content: flex-start;
  margin: -0.35rem 0 1.5rem;
  padding-top: 0;
  border-top: none;
}

.flip-grid[data-spotlight-cards] .nxt-front img {
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.spotlight-feed {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin: 0;
  margin-top: 0.25rem;
  padding: 0.25rem 0 0.25rem 0.35rem;
}

.spotlight-feed::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(238, 140, 183, 0.65), rgba(107, 79, 199, 0.25));
  border-radius: 2px;
  pointer-events: none;
}

.spotlight-feed-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 0 0.85rem;
  align-items: stretch;
  padding: 0;
  border: none;
  background: none;
}

.spotlight-feed-item:hover {
  background: none;
}

.spotlight-feed-marker {
  display: flex;
  justify-content: center;
  padding-top: 1.35rem;
  position: relative;
  z-index: 1;
}

.spotlight-feed-marker span {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--peach);
  border: 2px solid rgba(18, 22, 48, 0.95);
  box-shadow: 0 0 0 3px rgba(238, 140, 183, 0.25), 0 0 14px rgba(238, 140, 183, 0.45);
}

.spotlight-feed-card {
  display: grid;
  grid-template-columns: minmax(108px, 168px) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.95rem 1rem 1rem;
  border-radius: 12px;
  background:
    var(--panel-highlight),
    linear-gradient(165deg, rgba(34, 28, 78, 0.78) 0%, rgba(22, 28, 62, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid rgba(107, 79, 199, 0.55);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18), var(--panel-inset);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.spotlight-feed-item:hover .spotlight-feed-card {
  border-color: rgba(238, 140, 183, 0.4);
  border-left-color: var(--peach);
  transform: translateX(4px);
  box-shadow:
    0 0 24px rgba(107, 79, 199, 0.2),
    0 10px 28px rgba(0, 0, 0, 0.24),
    var(--panel-inset);
}

.spotlight-feed-media {
  margin: 0;
  align-self: start;
}

.spotlight-feed-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(107, 79, 199, 0.35);
}

.spotlight-feed-content {
  min-width: 0;
}

.spotlight-feed-tag {
  margin: 0 0 0.35rem;
  font-family: var(--font-hero-inner);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pink);
  line-height: 1.35;
}

.spotlight-feed-item h3.spotlight-case-title {
  display: inline-block;
  max-width: 100%;
  margin: 0 0 0.45rem;
  font-family: var(--font-hero-inner);
  font-size: clamp(1.08rem, 2.4vw, 1.32rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.32;
  background: var(--title-gradient-long);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.spotlight-feed-teaser {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.58;
  color: var(--muted);
}

.spotlight-feed-details {
  margin-top: 0.7rem;
}

.spotlight-feed-details summary {
  cursor: pointer;
  font-family: var(--font-hero-inner);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--lavender);
  list-style: none;
}

.spotlight-feed-details summary::-webkit-details-marker {
  display: none;
}

.spotlight-feed-details summary::after {
  content: ' →';
  color: var(--pink);
}

.spotlight-feed-details[open] summary::after {
  content: '';
}

.spotlight-feed-details ul {
  margin: 0.55rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.spotlight-feed-details li {
  font-size: 0.86rem;
  line-height: 1.55;
  margin-bottom: 0.28rem;
}

@media (max-width: 700px) {
  .spotlight-pillars {
    grid-template-columns: 1fr;
  }

  .spotlight-feed::before {
    left: 10px;
  }

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

  .spotlight-feed-item:hover .spotlight-feed-card {
    transform: translateY(-2px);
  }
}

@media (max-width: 480px) {
  .spotlight-enterprise-band {
    padding: 1.15rem 1rem 1rem;
  }
}

.spotlight-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.spotlight-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.spotlight-card-body {
  padding: 0.85rem 1rem 1rem;
}

.spotlight-card-body h3 {
  margin: 0 0 0.5rem;
  color: var(--peach);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.spotlight-card-body p.spotlight-kicker {
  margin: 0 0 0.35rem;
  font-family: var(--font-hero-inner);
  font-size: var(--prose-size);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--pink);
  text-align: center;
}

.spotlight-card-body p:not(.spotlight-kicker) {
  margin: 0 0 0.65rem;
  color: var(--muted);
}

.spotlight-card-body ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.spotlight-card-body li {
  font-size: var(--prose-size);
  line-height: var(--prose-line);
  margin-bottom: 0.3rem;
}

@media (max-width: 600px) {
  .leader-card-with-photo {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

.platform-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.platform-pillar {
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  background:
    var(--panel-highlight),
    linear-gradient(165deg, rgba(30, 28, 62, 0.88) 0%, rgba(18, 20, 48, 0.9) 100%);
  border: 1px solid var(--panel-border-color);
  border-left: 3px solid rgba(200, 208, 228, 0.28);
  box-shadow:
    0 0 12px rgba(120, 130, 165, 0.05),
    0 6px 22px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.08),
    inset 0 -3px 6px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.platform-pillar:hover {
  border-color: rgba(210, 218, 238, 0.22);
  border-left-color: var(--peach);
  transform: translateY(-2px);
  box-shadow:
    0 0 20px rgba(120, 130, 165, 0.1),
    0 0 24px rgba(107, 79, 199, 0.08),
    0 14px 32px rgba(0, 0, 0, 0.34),
    inset 0 2px 4px rgba(255, 255, 255, 0.08),
    inset 0 -3px 6px rgba(0, 0, 0, 0.2);
}

.platform-pillar strong {
  display: block;
  color: var(--peach);
  font-family: var(--font-display);
  margin-bottom: 0.35rem;
  font-size: 1.14rem;
}

.platform-pillar p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.platform-offering,
.consulting-ip {
  font-weight: 600;
  background: var(--title-gradient-short);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.platform-section-lead {
  margin: 0;
  max-width: 40rem;
  font-size: var(--prose-size);
  line-height: var(--prose-line);
  font-weight: var(--prose-weight);
  color: var(--prose-color);
}

.platform-lead-orchestrator {
  font-family: var(--font-hero-inner);
  font-weight: 800;
  color: var(--peach);
}

.platform-lead-advisor {
  font-family: var(--font-hero-inner);
  font-weight: 800;
  color: #a8b8ff;
}

/* Homepage product cards — Orchestrator vs Advisor (compact horizontal) */
.product-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  border-radius: 14px;
  overflow: hidden;
  background:
    var(--panel-highlight),
    linear-gradient(165deg, rgba(34, 28, 78, 0.9) 0%, rgba(22, 28, 62, 0.92) 100%);
  border: 1px solid var(--panel-border-color);
  color: inherit;
  text-decoration: none;
  box-shadow:
    var(--panel-glow),
    0 10px 24px rgba(0, 0, 0, 0.28),
    inset 0 2px 4px rgba(255, 255, 255, 0.11),
    inset 0 -3px 6px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card-title {
  margin: 0;
  padding: 1rem 1.1rem 0.55rem;
  font-family: var(--font-hero-inner);
  font-size: clamp(1.22rem, 2vw, 1.32rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--peach);
  line-height: 1.25;
}

.product-card-main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

.product-card:hover {
  border-color: rgba(238, 140, 183, 0.55);
  transform: translateY(-2px);
  box-shadow:
    0 0 32px rgba(107, 79, 199, 0.28),
    0 0 40px rgba(238, 140, 183, 0.1),
    0 14px 32px rgba(0, 0, 0, 0.34),
    inset 0 2px 4px rgba(255, 255, 255, 0.11),
    inset 0 -3px 6px rgba(0, 0, 0, 0.2);
}

.product-card img {
  display: block;
  flex: 0 0 auto;
  width: 200px;
  max-width: 46%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: top center;
  align-self: flex-start;
  border-radius: 8px;
  margin: 0.35rem 0 0.75rem 0.85rem;
  filter: none;
  border-bottom: none;
  border-right: 1px solid rgba(107, 79, 199, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-card-thumb {
  flex: 0 0 auto;
  width: 200px;
  max-width: 46%;
  margin: 0.35rem 0 0.75rem 0.85rem;
  border-radius: 8px;
  overflow: hidden;
  align-self: flex-start;
  border-right: 1px solid rgba(107, 79, 199, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  background: rgba(18, 14, 36, 0.65);
}

.product-card-thumb img {
  display: block;
  width: 100%;
  min-height: 172px;
  height: auto;
  margin: 0;
  max-width: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center top;
}

.product-card-thumb--advisor {
  min-height: 172px;
  padding: 0.6rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  background: linear-gradient(165deg, rgba(42, 32, 82, 0.96) 0%, rgba(20, 16, 40, 0.98) 100%);
}

.product-card-thumb-label {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--peach);
  text-align: center;
  line-height: 1.2;
}

.product-card-process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.26rem;
}

.product-card-process-steps li {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.71rem;
  font-weight: 600;
  color: rgba(220, 224, 245, 0.94);
  line-height: 1.2;
}

.product-card-process-steps li img {
  width: 28px;
  height: 28px;
  min-height: 0;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.product-card-body {
  padding: 0.35rem 1.1rem 1.05rem;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-card-lead {
  margin: 0 0 0.5rem;
  font-size: clamp(0.95rem, 1.6vw, 1.02rem);
  color: var(--muted);
  line-height: 1.45;
}

.product-card-list {
  margin: 0 0 0.75rem;
  padding: 0 0 0 1.15rem;
  list-style: disc;
  flex: 1;
}

.product-card-list li {
  margin: 0 0 0.42rem;
  font-size: clamp(0.92rem, 1.5vw, 0.98rem);
  line-height: 1.48;
  color: rgba(200, 206, 228, 0.92);
}

.product-card-list li::marker {
  color: var(--peach);
}

.product-card-list li:last-child {
  margin-bottom: 0;
}

.product-card-list strong {
  color: rgba(232, 236, 255, 0.95);
  font-weight: 600;
}

.product-card-cta {
  align-self: flex-end;
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: clamp(0.88rem, 1.4vw, 0.94rem);
  font-weight: 600;
  color: var(--peach);
  line-height: 1.35;
  text-align: right;
}

.product-card:hover .product-card-cta {
  color: #ffe4c4;
}

@media (max-width: 1024px) {
  .product-cards {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 0 0.85rem 0;
  }

  .product-card-title {
    padding: 0.85rem 0 0.45rem;
  }

  .product-card-main {
    flex-direction: column;
  }

  .product-card img,
  .product-card-thumb {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
    object-position: center;
    align-self: auto;
    border-radius: 10px;
    margin: 0;
    border-right: none;
    border-bottom: none;
    background: rgba(8, 12, 28, 0.35);
  }

  .product-card-thumb img {
    min-height: 0;
    width: 100%;
    object-fit: cover;
    max-height: 220px;
  }

  .product-card-thumb--advisor {
    min-height: 0;
    padding: 0.85rem 0.75rem;
  }

  .product-card-body {
    padding: 0.85rem 0 1.05rem;
    width: 100%;
    flex: 1 1 auto;
  }
}

@media (max-width: 700px) {
  .platform-pillars {
    grid-template-columns: 1fr;
  }

  .orchestrator-steps {
    grid-template-columns: 1fr;
  }
}

/* Hero value carousel */
.hero-carousel {
  margin-top: 0;
  background: linear-gradient(145deg, #1a2248 0%, #261a52 100%);
}

.hero-carousel-slide {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  min-height: 240px;
  aspect-ratio: auto;
  padding: 1.75rem 1.5rem;
  gap: 0.5rem;
}

.hero-slide-stat {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  color: var(--peach);
}

.hero-slide-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  text-transform: capitalize;
}

.hero-slide-body {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
}

.carousel-dot.active {
  background: var(--peach);
}

.pillar-mini {
  display: grid;
  gap: 0.75rem;
}

.pillar-mini div {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(62, 42, 125, 0.25);
  border-left: 3px solid var(--pink);
  font-size: 0.92rem;
}

.pillar-mini strong {
  display: block;
  color: var(--peach);
  margin-bottom: 0.15rem;
}

/* Sections */
section { padding: 1.5rem 0; }
section[id] { scroll-margin-top: 5rem; }
section.alt {
  background: transparent;
}

.cta-block {
  text-align: center;
  padding: 2rem 0 2.5rem;
}

.cta-block-head {
  margin-left: auto;
  margin-right: auto;
}

.section-head.cta-block-head p {
  margin-left: auto;
  margin-right: auto;
}

.cta-block-head .cta-block-lead {
  color: var(--prose-color);
  font-size: var(--prose-size);
  font-weight: var(--prose-weight);
  line-height: var(--prose-line);
  margin-bottom: 0.65rem;
}

.cta-block-head .cta-block-sub {
  color: var(--peach);
  font-size: clamp(1.16rem, 2vw, 1.27rem);
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
}

.cta-block-copy {
  max-width: 40rem;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.cta-block-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-block-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.section-shell {
  padding: 1.65rem 1.75rem;
  border-radius: 18px;
  background:
    var(--panel-highlight),
    var(--panel-fill);
  border: 1px solid var(--panel-border-color);
  box-shadow:
    var(--panel-glow),
    0 10px 32px rgba(0, 0, 0, 0.22);
}

@media (max-width: 800px) {
  .section-shell {
    overflow-x: clip;
  }

  .where-it-fits-shell {
    overflow-x: clip;
  }
}

@media (max-width: 640px) {
  .section-shell {
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
  }

  .site-header > .container.header-row {
    padding: 0.5rem 0.85rem;
    border-radius: 0;
  }
}

.section-head {
  margin-bottom: 1.2rem;
}

.section-head h2 {
  display: inline-block;
  max-width: 100%;
  font-family: var(--font-hero-inner);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  background: var(--title-gradient-short);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.section-head h2.title-gradient-long {
  background-image: var(--title-gradient-long);
}

.section-head p {
  margin: 0;
  font-weight: var(--prose-weight);
  color: var(--prose-color);
}

.section-head-sub {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.section-head-sub h3 {
  font-family: var(--font-hero-inner);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.section-footnote {
  margin: 1.25rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.7;
  text-align: center;
}

/* Adoption maturity — Mechanize / Cognize / Agentize (Advisor #entry-paths) */
#entry-paths {
  scroll-margin-top: 5.5rem;
}

#entry-paths .section-head p,
#entry-paths .adoption-list li,
#entry-paths .adoption-foot {
  font-size: var(--prose-size);
  line-height: var(--prose-line);
  font-weight: var(--prose-weight);
  color: var(--prose-color);
}

.adoption-list {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  max-width: none;
}

.adoption-list li {
  margin-bottom: 0.5rem;
}

.adoption-list li:last-child {
  margin-bottom: 0;
}

.adoption-list strong {
  color: var(--peach);
  font-weight: 700;
}

.adoption-foot {
  margin: 0 0 1.5rem;
  max-width: none;
  text-align: left;
}

.adoption-hover-hint {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

.adoption-cards .nxt-flip {
  max-width: none;
}

.adoption-cards .nxt-flip-inner {
  min-height: 190px;
  aspect-ratio: 16 / 10;
}

.adoption-cards .nxt-back {
  padding: 0.9rem 1rem;
  justify-content: flex-start;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0.78rem;
  line-height: 1.32;
  -webkit-overflow-scrolling: touch;
}

.adoption-cards .nxt-back h3 {
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.adoption-cards .nxt-back p {
  font-size: 0.76rem;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.adoption-cards .nxt-back ul {
  padding-left: 0.95rem;
}

.adoption-cards .nxt-back li {
  margin-bottom: 0.15rem;
  font-size: 0.74rem;
}

/* Tone stock card art toward site navy / purple / peach */
.adoption-cards .nxt-front img,
.flip-grid[data-scenario-cards] .nxt-front img,
.flip-grid[data-spotlight-cards] .nxt-front img {
  filter: saturate(0.62) hue-rotate(16deg) brightness(0.78) contrast(1.12);
}

/* Digital twin cards — light grade; art is already themed in overall.png */
.flip-grid[data-digital-twin-cards] .nxt-front {
  background: #120e28;
  isolation: isolate;
}

.flip-grid[data-digital-twin-cards] .nxt-front img {
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  filter: saturate(0.9) hue-rotate(11deg) brightness(1) contrast(1.04);
  transform: translateZ(0);
}

.flip-grid[data-digital-twin-cards] .nxt-front::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(
      155deg,
      rgba(238, 140, 183, 0.06) 0%,
      rgba(62, 42, 125, 0.05) 32%,
      rgba(28, 18, 58, 0.04) 52%,
      rgba(8, 6, 20, 0.12) 100%
    ),
    radial-gradient(ellipse 88% 62% at 50% 12%, rgba(238, 140, 183, 0.05), transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(107, 79, 199, 0.03), transparent 68%);
}

.adoption-cards .nxt-front-overlay,
.flip-grid[data-scenario-cards] .nxt-front-overlay {
  background: linear-gradient(
    180deg,
    rgba(6, 8, 20, 0.1) 0%,
    rgba(28, 18, 58, 0.55) 42%,
    rgba(4, 6, 16, 0.94) 100%
  );
}

.flip-grid[data-digital-twin-cards] .nxt-front-overlay {
  background: linear-gradient(
    180deg,
    rgba(6, 8, 20, 0.02) 0%,
    rgba(28, 18, 58, 0.2) 48%,
    rgba(4, 6, 16, 0.88) 100%
  );
}

/* Journey cards — show art clearly; light bottom band + depth (no full-card blur) */
.flip-grid[data-journey-cards] .nxt-front img {
  filter: none;
}

.flip-grid[data-journey-cards] .nxt-flip-inner {
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.42),
    0 6px 14px rgba(62, 42, 125, 0.22);
}

.flip-grid[data-journey-cards] .nxt-front {
  border: 1px solid rgba(107, 79, 199, 0.4);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.flip-grid[data-journey-cards] .nxt-front-overlay {
  background: linear-gradient(
    180deg,
    rgba(6, 8, 20, 0) 0%,
    rgba(6, 8, 20, 0.12) 50%,
    rgba(4, 6, 16, 0.9) 100%
  );
}

/* NXT Process — plain-English header */
.section-head-journey .journey-lead {
  margin: 0 0 0.85rem;
  font-weight: var(--prose-weight);
  color: var(--prose-color);
}

.section-head-journey .journey-lead:last-of-type {
  margin-bottom: 0;
}

/* Journey stepper */
.journey-stepper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0;
  margin-bottom: 1.15rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.journey-stepper span:not(.arrow) {
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  background: rgba(62, 42, 125, 0.3);
  color: var(--peach);
}

.journey-stepper .arrow {
  padding: 0 0.25rem;
  color: var(--purple-light);
}

/* Homepage journey: 3 cards, then 2 centered — large & visible */
.journey-cards-split {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.1rem;
  width: 100%;
}

.journey-cards-split .flip-grid {
  margin-top: 0;
  width: 100%;
}

.journey-cards-split .nxt-flip {
  max-width: none;
  width: 100%;
}

.journey-cards-split .nxt-flip-inner {
  min-height: 210px;
  aspect-ratio: 16 / 9;
}

.journey-cards-split .nxt-shift {
  font-size: clamp(1rem, 1.9vw, 1.3rem);
}

.journey-cards-split .nxt-shift-sub {
  font-size: clamp(0.78rem, 1.3vw, 0.9rem);
}

.flip-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1020px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.flip-grid-2-centered {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: calc((1020px - 2 * 1rem) / 3 * 2 + 1rem);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.flip-grid-2-centered .nxt-flip {
  max-width: none;
  width: 100%;
}

@media (max-width: 1100px) {
  .flip-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 620px;
  }

  .flip-grid-2-centered {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: calc((620px - 1rem) / 2 * 2 + 1rem);
  }
}

@media (max-width: 640px) {
  .flip-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .flip-grid-2-centered {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .journey-cards-split .nxt-flip-inner {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

/* Advisory Edge article grid */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.1rem;
}

.article-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.article-card:hover {
  border-color: var(--accent-line);
  transform: translateY(-2px);
}

.article-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.article-card-body {
  padding: 1rem 1.1rem 1.25rem;
}

.article-card-body h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.35;
  color: var(--text);
}

.article-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Orchestrator Platform Components — four cards, two per row */
.orchestrator-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.orchestrator-step {
  padding: 1.35rem 1.4rem;
  border-radius: 14px;
  background:
    var(--panel-highlight),
    linear-gradient(165deg, rgba(34, 28, 78, 0.88) 0%, rgba(22, 28, 62, 0.9) 100%);
  border: 1px solid var(--panel-border-color);
  border-left: 3px solid var(--pink);
  box-shadow:
    0 0 18px rgba(107, 79, 199, 0.16),
    0 6px 22px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.11),
    inset 0 -3px 6px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.orchestrator-step:hover {
  border-color: rgba(238, 140, 183, 0.55);
  border-left-color: var(--peach);
  transform: translateY(-2px);
  box-shadow:
    0 0 32px rgba(107, 79, 199, 0.28),
    0 0 40px rgba(238, 140, 183, 0.12),
    0 14px 32px rgba(0, 0, 0, 0.34),
    inset 0 2px 4px rgba(255, 255, 255, 0.11),
    inset 0 -3px 6px rgba(0, 0, 0, 0.2);
}

.orchestrator-step strong {
  display: block;
  color: var(--peach);
  margin-bottom: 0.65rem;
  font-family: var(--font-hero-inner);
  font-size: clamp(1.22rem, 2.2vw, 1.38rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.orchestrator-step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 400;
}

.orchestrator-step .orchestrator-acronym {
  font-size: 0.78em;
  font-weight: 500;
  color: rgba(168, 173, 196, 0.92);
}

.orchestrator-step-optional {
  border-style: dashed;
  border-color: rgba(107, 79, 199, 0.35);
  border-left: 3px solid var(--pink);
}

.orchestrator-step-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(107, 79, 199, 0.2);
}

@media (max-width: 800px) {
  .orchestrator-steps {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    min-width: 0;
  }

  .orchestrator-step {
    padding: 1rem 1.05rem;
    min-width: 0;
    box-shadow:
      0 0 12px rgba(107, 79, 199, 0.12),
      0 4px 12px rgba(0, 0, 0, 0.18),
      inset 0 2px 4px rgba(255, 255, 255, 0.1),
      inset 0 -3px 6px rgba(0, 0, 0, 0.18);
  }

  .orchestrator-step:hover {
    transform: none;
  }

  .orchestrator-step strong {
    font-size: 1.22rem;
    margin-bottom: 0.5rem;
    line-height: 1.22;
  }

  .orchestrator-step p {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  .orchestrator-step-optional strong {
    display: inline;
    margin-right: 0.4rem;
    margin-bottom: 0;
  }

  .orchestrator-step-optional .orchestrator-step-tag {
    margin-bottom: 0.45rem;
    vertical-align: middle;
  }

  .orchestrator-env-pillars.platform-pillars {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .orchestrator-env-pillars .platform-pillar {
    padding: 1rem 1.05rem;
    box-shadow:
      0 0 12px rgba(107, 79, 199, 0.12),
      0 4px 12px rgba(0, 0, 0, 0.18),
      inset 0 2px 4px rgba(255, 255, 255, 0.1),
      inset 0 -3px 6px rgba(0, 0, 0, 0.18);
  }

  .orchestrator-env-pillars .platform-pillar:hover {
    transform: none;
  }

  .orchestrator-env-pillars .platform-pillar strong {
    font-size: 1.05rem;
  }

  .orchestrator-env-pillars .platform-pillar p {
    font-size: 0.92rem;
    line-height: 1.5;
  }
}


.section-shell .partnership-card,
.section-shell .leader-card {
  background:
    var(--panel-highlight),
    linear-gradient(165deg, rgba(34, 28, 78, 0.88) 0%, rgba(22, 28, 62, 0.9) 100%);
  border: 1px solid var(--panel-border-color);
  box-shadow:
    0 0 18px rgba(107, 79, 199, 0.14),
    0 6px 22px rgba(0, 0, 0, 0.18),
    var(--panel-inset);
}

/* Partnership cards — image left, text right (repeatable) */
.partnership-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.partnership-card {
  display: grid;
  grid-template-columns: minmax(144px, 192px) 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
  border-radius: 14px;
  background:
    var(--panel-highlight),
    linear-gradient(165deg, rgba(40, 32, 88, 0.9) 0%, rgba(28, 34, 72, 0.92) 100%);
  border: 1px solid var(--panel-border-color);
  box-shadow:
    var(--panel-glow),
    0 8px 28px rgba(0, 0, 0, 0.22),
    var(--panel-inset);
}

.partnership-card-media {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(107, 79, 199, 0.22);
  background: rgba(8, 12, 28, 0.35);
}

.partnership-card-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.partnership-card-body h3 {
  margin: 0 0 0.65rem;
  color: var(--peach);
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.3;
}

.partnership-card-body p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.partnership-card-body ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.partnership-card-body li {
  margin-bottom: 0.35rem;
}

.partnership-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* Homepage strategic partnerships — image 10% smaller than partnerships page (desktop only) */
#partnerships .partnership-card {
  grid-template-columns: minmax(130px, 173px) 1fr;
}

@media (max-width: 700px) {
  .partnership-card,
  #partnerships .partnership-card {
    grid-template-columns: 1fr;
  }

  .partnership-card-media {
    max-width: min(192px, 72%);
    margin: 0 auto;
  }

  #partnerships .partnership-card-media {
    max-width: min(173px, 72%);
  }
}

/* Side-by-side feature (ALICE, etc.) */
.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(107, 79, 199, 0.2);
}

.section-shell > .feature-split:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.feature-split-wide {
  grid-template-columns: 1fr;
}

.feature-split-wide .feature-split-body {
  max-width: min(52rem, 100%);
}

.feature-split-media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(107, 79, 199, 0.22);
  background: rgba(8, 12, 28, 0.35);
}

.feature-split-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
}

.feature-split-body p {
  margin: 0 0 1rem;
}

.feature-split-body p:last-child {
  margin-bottom: 0;
}

.feature-split-body .btn-primary {
  margin-top: 0.25rem;
}

.alice-name {
  color: var(--peach);
  font-family: var(--font-display);
  font-weight: 700;
}

.alice-expansion {
  color: var(--muted);
  font-size: 0.92em;
  font-weight: var(--prose-weight);
}

@media (max-width: 800px) {
  .feature-split {
    grid-template-columns: 1fr;
  }
}

.partner-logo-img {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: contain;
  flex-shrink: 0;
}

.partner-logo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  text-align: center;
  color: var(--muted);
  padding: 0.5rem;
}

/* Scenarios compact */
.scenario-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.85rem;
}

.scenario-tile {
  padding: 1.25rem;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.scenario-tile h4 {
  margin: 0 0 0.35rem;
  color: var(--peach);
  font-size: 0.95rem;
}

.scenario-tile p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* FAQ */
.faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
}

.faq details:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-hero-inner);
  font-size: clamp(1.08rem, 2vw, 1.22rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--text);
}

.faq p {
  margin: 0.75rem 0 0;
  font-size: var(--prose-size);
  line-height: var(--prose-line);
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: none;
  text-align: center;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 920px;
}

.footer-col {
  text-align: center;
  min-width: 200px;
  max-width: 260px;
}

.footer-heading {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--peach);
}

.footer-quick-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-quick-links li {
  margin-bottom: 0.4rem;
}

.footer-quick-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
}

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: none;
  text-align: center;
  width: 100%;
  max-width: 52rem;
}

.footer-entity {
  margin: 0 auto 0.65rem;
  max-width: 46rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
}

.footer-brand {
  margin: 0 auto 0.5rem;
  color: var(--text);
  font-size: 0.9rem;
  max-width: 42rem;
  text-align: center;
}

.footer-bottom > p:not(.legal):not(.footer-brand):not(.footer-entity) {
  margin: 0 auto 0.5rem;
}

.footer-bottom .legal {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 700px) {
  .site-footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 0.65rem;
    margin-bottom: 1.5rem;
    justify-items: stretch;
  }

  .footer-col {
    min-width: 0;
    max-width: none;
    text-align: left;
  }

  .footer-quick-links li {
    margin-bottom: 0.3rem;
  }

  .footer-quick-links a {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .footer-heading {
    font-size: 0.7rem;
    margin-bottom: 0.45rem;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 800px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-visual {
    order: 2;
    max-width: 100%;
  }

  .hero-visual::after {
    background:
      linear-gradient(
        90deg,
        rgba(10, 14, 38, 0.09) 0%,
        rgba(10, 14, 38, 0.04) 18%,
        transparent 36%,
        transparent 64%,
        rgba(10, 14, 38, 0.04) 82%,
        rgba(10, 14, 38, 0.09) 100%
      );
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(12, 18, 40, 0.78) 0%, rgba(12, 18, 40, 0.55) 45%, rgba(12, 18, 40, 0.72) 100%),
      radial-gradient(ellipse 85% 75% at 65% 35%, rgba(62, 42, 125, 0.42), transparent 70%),
      var(--hero-image) center 30% / cover no-repeat;
  }

  .hero {
    padding-bottom: 2.5rem;
  }
}

/* —— ALICE Blueprint (orchestrator) —— */
#alice-blueprint {
  scroll-margin-top: 5.5rem;
}

.environment-flow-figure--orchestrator {
  margin-bottom: 0;
}

#alice-blueprint .blueprint-section-head {
  text-align: left;
}

.blueprint-section-title-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  margin-bottom: 0.35rem;
}

.blueprint-section-title-row h2 {
  margin: 0;
}

.blueprint-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--peach);
  margin-top: -0.25rem;
}

.blueprint-pillars {
  margin-bottom: 0;
}

.blueprint-guides-block {
  margin-top: 2rem;
  padding: 1.65rem 1.35rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(107, 79, 199, 0.32);
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(107, 79, 199, 0.14), transparent 68%),
    var(--panel-highlight),
    linear-gradient(165deg, rgba(34, 28, 78, 0.82) 0%, rgba(22, 28, 62, 0.9) 100%);
  box-shadow:
    0 0 24px rgba(107, 79, 199, 0.12),
    0 8px 28px rgba(0, 0, 0, 0.2),
    var(--panel-inset);
}

.blueprint-guides-head {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 1.35rem;
}

.blueprint-guides-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--font-hero-inner);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
}

.blueprint-guides-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-hero-inner);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  background: var(--title-gradient-short);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.blueprint-guides-lead {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: var(--prose-weight);
  color: var(--muted);
}

.architect-profiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 0;
}

.architect-profile-card {
  padding: 1.1rem 1.2rem;
  border-radius: 12px;
  background:
    linear-gradient(165deg, rgba(42, 34, 88, 0.55) 0%, rgba(18, 22, 48, 0.72) 100%);
  border: 1px solid rgba(107, 79, 199, 0.28);
  border-left: 3px solid var(--pink);
  box-shadow: var(--panel-inset);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.architect-profile-card:hover {
  border-color: rgba(238, 140, 183, 0.45);
  border-left-color: var(--peach);
  transform: translateY(-2px);
  box-shadow:
    0 0 22px rgba(107, 79, 199, 0.18),
    var(--panel-inset);
}

.architect-profile-card h4 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--peach);
}

.architect-profile-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.architect-studio-note {
  font-size: 0.8rem;
  color: rgba(158, 176, 255, 0.85);
}

.blueprint-cta-row {
  margin: 1.75rem 0 0;
  text-align: center;
}

.blueprint-cta-row .btn-secondary {
  margin-left: 0.75rem;
}

@media (max-width: 900px) {
  .architect-profiles {
    grid-template-columns: 1fr;
  }

  .blueprint-guides-block {
    padding: 1.35rem 1rem 1.2rem;
  }

  .blueprint-cta-row .btn-secondary {
    display: inline-block;
    margin-left: 0;
    margin-top: 0.75rem;
  }
}

/* —— Governed Digital Twins —— */
section#governed-digital-twins {
  scroll-margin-top: 5.5rem;
}

/* —— What's NXT? — org persona routing (homepage) —— */
#whats-nxt {
  scroll-margin-top: 5.5rem;
  padding: 2.75rem 0 3rem;
}

.whats-nxt-head {
  text-align: left;
  max-width: none;
  margin: 0 0 1.5rem;
}

.whats-nxt-title {
  display: inline-block;
  max-width: 100%;
  margin: 0 0 0.5rem;
  font-family: var(--font-hero-inner);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: var(--title-gradient-short);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.whats-nxt-lead {
  margin: 0 0 0.45rem;
  font-family: var(--font-hero-inner);
  font-size: clamp(1.12rem, 2.1vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--peach);
}

.whats-nxt-sub {
  margin: 0;
  font-size: var(--prose-size);
  line-height: var(--prose-line);
  color: var(--muted);
}

.whats-nxt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
}

.whats-nxt-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.6rem 1.4rem;
  border-radius: 16px;
  background:
    var(--panel-highlight),
    linear-gradient(165deg, rgba(38, 30, 82, 0.94) 0%, rgba(20, 24, 56, 0.96) 100%);
  border: 1px solid rgba(140, 118, 210, 0.38);
  border-top: 3px solid var(--pink);
  box-shadow:
    0 0 28px rgba(107, 79, 199, 0.22),
    0 12px 36px rgba(0, 0, 0, 0.28),
    var(--panel-inset);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.whats-nxt-card:hover {
  border-color: rgba(238, 140, 183, 0.5);
  border-top-color: var(--peach);
  transform: translateY(-3px);
  box-shadow:
    0 0 36px rgba(107, 79, 199, 0.32),
    0 0 44px rgba(238, 140, 183, 0.1),
    0 16px 40px rgba(0, 0, 0, 0.34),
    var(--panel-inset);
}

.whats-nxt-card--partner {
  border-top-color: #a8b8ff;
}

.whats-nxt-card--partner:hover {
  border-color: rgba(168, 184, 255, 0.55);
  border-top-color: #c5d0ff;
  box-shadow:
    0 0 36px rgba(123, 148, 255, 0.32),
    0 0 40px rgba(168, 184, 255, 0.14),
    0 16px 40px rgba(0, 0, 0, 0.34),
    var(--panel-inset);
}

.whats-nxt-card-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-hero-inner);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--peach);
}

.whats-nxt-card p {
  margin: 0 0 0.65rem;
  font-size: var(--prose-size);
  line-height: var(--prose-line);
  font-weight: var(--prose-weight);
  color: var(--prose-color);
}

.whats-nxt-card p.whats-nxt-card-audience {
  margin: 0 0 0.65rem;
  font-size: clamp(1.08rem, 1.85vw, 1.18rem);
  line-height: 1.45;
  font-weight: 600;
  color: rgba(246, 178, 107, 0.82);
}

.whats-nxt-card-cta {
  margin-top: auto;
  padding-top: 0.75rem;
}

.whats-nxt-card-cta .btn-primary,
.whats-nxt-card-cta .btn-secondary {
  display: inline-block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.whats-nxt-card-paths {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(238, 140, 183, 0.28);
}

.whats-nxt-card-paths-lead {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  line-height: var(--prose-line);
  font-weight: var(--prose-weight);
  color: var(--prose-color);
}

.whats-nxt-card-paths-link {
  margin: 0;
  text-align: right;
}

.whats-nxt-card-paths-link a {
  font-family: var(--font-hero-inner);
  font-size: clamp(1.02rem, 1.8vw, 1.15rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--peach);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(238, 140, 183, 0.65);
}

.whats-nxt-card-paths-link a:hover {
  color: var(--pink);
  text-decoration-color: var(--pink);
}

.entry-paths-bridge {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.entry-paths-cta {
  margin: 2rem 0 0;
  text-align: center;
}

@media (max-width: 720px) {
  .whats-nxt-grid {
    grid-template-columns: 1fr;
  }

  .whats-nxt-section {
    padding: 2.25rem 0 2.5rem;
  }
}

#scenarios #governed-digital-twins {
  scroll-margin-top: 5.5rem;
}

#scenarios {
  padding-bottom: 0.25rem;
}

#scenarios + section {
  padding-top: 0.25rem;
}

.where-it-fits-shell {
  padding-bottom: 1.1rem;
}

.where-it-fits-title {
  display: inline-block;
  max-width: 100%;
  margin: 0 0 0.65rem;
  font-family: var(--font-hero-inner);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  background: var(--title-gradient-short);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.where-it-fits-subtitle {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(107, 79, 199, 0.28);
  font-family: var(--font-hero-inner);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.25;
  background: var(--title-gradient-short);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.where-it-fits-block {
  margin-top: 0;
  min-width: 0;
  overflow-x: clip;
}

.where-it-fits-block + .where-it-fits-block {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(107, 79, 199, 0.16);
}

.where-it-fits-subtitle.where-it-fits-subtitle--with-hot {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 100%;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: inherit;
  -webkit-text-fill-color: inherit;
}

.where-it-fits-subtitle-text {
  background: var(--title-gradient-short);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hot-badge--inline {
  flex-shrink: 0;
  margin-top: 0.14rem;
  -webkit-text-fill-color: #fff;
}

.section-title-row--twins {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.55rem 0.65rem;
  margin-bottom: 0.35rem;
}

.hot-badge--title {
  flex-shrink: 0;
  margin-top: 0.18rem;
}

.section-title-row--twins h2 {
  margin: 0;
}

.where-it-fits-block .flip-grid {
  margin-top: 0;
  min-width: 0;
}

.where-it-fits-block .flip-grid[data-digital-twin-cards] {
  margin-top: 0;
}

.where-it-fits-more {
  margin: 0.85rem 0 0;
  text-align: right;
}

.where-it-fits-more a {
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--peach);
  text-decoration: none;
}

.where-it-fits-more a:hover {
  color: var(--pink);
  text-decoration: none;
}

.platform-mid-cta {
  margin: 1.75rem 0 0;
  text-align: center;
}

.platform-mid-cta .btn-secondary {
  margin-left: 0.75rem;
}

.faq-all-link {
  margin: 1.25rem 0 0;
  text-align: right;
}

.faq-all-link a {
  font-weight: 700;
  color: var(--peach);
  text-decoration: none;
}

.faq-all-link a:hover {
  color: var(--pink);
  text-decoration: none;
}

@media (max-width: 900px) {
  .platform-mid-cta .btn-secondary {
    display: inline-block;
    margin-left: 0;
    margin-top: 0.75rem;
  }
}

.digital-twins-intro {
  margin: 0.15rem 0 0.45rem;
  max-width: none;
  font-size: var(--prose-size);
  line-height: var(--prose-line);
  font-weight: 400;
  color: var(--prose-color);
  overflow: visible;
  white-space: normal;
}

.digital-twins-intro .governance-tagline--peach {
  font-family: var(--font-hero-inner);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.governance-tagline {
  margin: 0.2rem 0 0.5rem;
  font-family: var(--font-hero-inner);
  font-size: clamp(1.02rem, 1.85vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

#scenarios #governed-digital-twins .governance-tagline--peach,
.governance-tagline--peach {
  color: var(--peach);
  -webkit-text-fill-color: var(--peach);
}

section#governed-digital-twins .section-head .governance-tagline {
  color: var(--prose-color);
  -webkit-text-fill-color: var(--prose-color);
  font-weight: 600;
}

@media (min-width: 768px) {
  .governance-tagline {
    white-space: nowrap;
  }
}

#governed-digital-twins .section-head .digital-twins-intro {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.blueprint-twins-link {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
}

.blueprint-twins-link a {
  color: var(--peach);
  text-decoration: none;
}

.blueprint-twins-link a:hover {
  color: var(--pink);
}
