/* 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(107, 79, 199, 0.45);
  --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');
  --glass-blur: 8px;
  --glass-saturate: 1.28;
  --nav-glass-blur: 6px;
  --panel-highlight: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 24%, transparent 46%);
  --panel-fill: linear-gradient(165deg, rgba(44, 34, 96, 0.92) 0%, rgba(26, 32, 72, 0.94) 52%, rgba(20, 24, 56, 0.96) 100%);
  --panel-border-color: rgba(107, 79, 199, 0.45);
  --panel-glow: 0 0 28px rgba(107, 79, 199, 0.22), 0 0 48px rgba(238, 140, 183, 0.07);
  --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; }

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: #060818;
  background-image:
    linear-gradient(
      118deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(210, 228, 255, 0.03) 10%,
      transparent 22%
    ),
    radial-gradient(ellipse 100% 72% at 6% -6%, rgba(80, 55, 140, 0.44), transparent 50%),
    radial-gradient(ellipse 52% 42% at 91% 7%, rgba(150, 175, 220, 0.15), transparent 56%),
    radial-gradient(ellipse 62% 48% at 86% 34%, rgba(238, 140, 183, 0.09), transparent 52%),
    radial-gradient(ellipse 72% 52% at 14% 90%, rgba(246, 178, 107, 0.06), transparent 54%),
    radial-gradient(ellipse 92% 62% at 50% 106%, rgba(30, 55, 110, 0.36), transparent 58%),
    linear-gradient(
      152deg,
      transparent 28%,
      rgba(90, 125, 200, 0.05) 43%,
      rgba(140, 95, 185, 0.06) 50%,
      rgba(200, 150, 105, 0.04) 57%,
      transparent 72%
    ),
    linear-gradient(
      180deg,
      #050610 0%,
      #070a1a 16%,
      #0c0e26 38%,
      #111436 52%,
      #0c0e28 72%,
      #070812 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.64;
  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 — dark frame strip + lighter glass card */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.55rem 0 0.65rem;
  background:
    linear-gradient(180deg, rgba(6, 8, 22, 0.94) 0%, rgba(8, 10, 28, 0.88) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.42);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.site-header > .container.header-row {
  padding: 0.55rem 1.15rem;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, transparent 42%),
    linear-gradient(165deg, rgba(58, 50, 124, 0.72) 0%, rgba(44, 50, 104, 0.76) 100%);
  border: 1px solid rgba(180, 196, 240, 0.32);
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.18),
    0 0 22px rgba(107, 79, 199, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(var(--nav-glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--nav-glass-blur)) saturate(var(--glass-saturate));
}

.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: 0;
}

.logo img {
  display: block;
  height: 2.47rem;
  width: auto;
  max-width: min(253px, 46vw);
}

/* 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: 1rem;
  letter-spacing: -0.01em;
}

.site-nav > a {
  color: rgba(236, 236, 244, 0.95);
  font-weight: 700;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

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

.nav-group {
  position: relative;
}

.nav-label {
  color: rgba(236, 236, 244, 0.95);
  font-weight: 700;
  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: var(--bg-card);
  border: 1px solid var(--accent-line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  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: rgba(236, 236, 244, 0.88);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  color: var(--peach);
  background: rgba(62, 42, 125, 0.35);
}

.nav-toggle {
  display: none;
  font-family: var(--font-hero-inner);
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--bg-card);
  border: 1px solid var(--accent-line);
  color: rgba(236, 236, 244, 0.95);
  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: flex-start;
}

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

.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(12, 18, 40, 0.92) 0%, rgba(12, 18, 40, 0.8) 42%, rgba(12, 18, 40, 0.42) 72%, rgba(12, 18, 40, 0.22) 100%),
    radial-gradient(ellipse 70% 90% at 85% 50%, rgba(62, 42, 125, 0.35), 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: 1px solid rgba(107, 79, 199, 0.12);
}

.page-hero .hero-bg {
  background:
    linear-gradient(180deg, rgba(8, 12, 28, 0.82) 0%, rgba(14, 12, 38, 0.68) 42%, rgba(8, 12, 28, 0.8) 100%),
    radial-gradient(ellipse 90% 80% at 50% 40%, rgba(62, 42, 125, 0.28), 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: 16px;
  background:
    var(--panel-highlight),
    var(--panel-fill);
  border: 1px solid var(--panel-border-color);
  box-shadow:
    var(--panel-glow),
    var(--panel-shadow),
    var(--panel-inset);
}

.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: 12px;
  }
}

/* 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'); }
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 — replace assets/hero-bg.png with your Cloudinary URL when ready */
.hero {
  position: relative;
  padding: 4rem 0 3rem;
  overflow: hidden;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  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;
  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(1.15rem, 2vw, 1.28rem);
  font-weight: 700;
  line-height: 1.55;
  color: rgba(236, 236, 244, 0.92);
  max-width: 38rem;
  margin: 0 0 0.65rem;
}

.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: 1px solid var(--accent-line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: rgba(12, 18, 40, 0.5);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 90% 85% at 0% 50%,
      rgba(10, 14, 38, 0.62) 0%,
      rgba(10, 14, 38, 0.22) 42%,
      transparent 68%
    ),
    linear-gradient(
      90deg,
      rgba(10, 14, 38, 0.58) 0%,
      rgba(10, 14, 38, 0.2) 22%,
      transparent 40%
    );
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

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

.name-bridge-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem 2rem;
  align-items: center;
  margin: 0 0 2rem;
}

.name-bridge-brand {
  text-align: left;
}

.name-formula {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin: 0 0 0.85rem;
  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: 0;
  max-width: 22rem;
  font-family: var(--font-hero-inner);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--prose-color);
}

.name-bridge-lead-card {
  padding: 1.35rem 1.45rem;
  border-radius: 14px;
  background:
    var(--panel-highlight),
    linear-gradient(165deg, rgba(34, 28, 78, 0.88) 0%, rgba(22, 28, 62, 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);
}

.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 {
  font-family: var(--font-hero-inner);
  font-weight: 800;
  color: #e8eeff;
}

.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 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.nxt-pillar {
  padding: 1.15rem 1.2rem;
  border-radius: 12px;
  background:
    var(--panel-highlight),
    linear-gradient(165deg, rgba(34, 28, 78, 0.82) 0%, rgba(22, 28, 62, 0.88) 100%);
  border: 1px solid var(--panel-border-color);
  border-top: 3px solid rgba(107, 79, 199, 0.55);
  box-shadow: 0 0 14px rgba(107, 79, 199, 0.12), var(--panel-inset);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nxt-pillar:hover {
  border-color: rgba(238, 140, 183, 0.55);
  border-top-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),
    var(--panel-inset);
}

.nxt-pillar h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.26rem;
  font-weight: 700;
  color: var(--prose-color);
  text-align: center;
}

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

.name-bridge .name-bridge-foot {
  margin: 1.5rem 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
}

.name-bridge .name-bridge-foot a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.45);
}

.name-bridge .name-bridge-foot a:hover {
  color: #fff;
  border-bottom-color: var(--peach);
}

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

  .name-bridge {
    padding: 2rem 0;
  }

  .name-bridge-intro {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .name-bridge-hook {
    max-width: none;
  }
}

.hero-stats li {
  padding-left: 0.85rem;
  border-left: 2px solid var(--purple-light);
}

.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(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),
    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(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),
    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 {
  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;
}

.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: 140px 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: 140px;
  height: 140px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(107, 79, 199, 0.35);
}

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

.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: 12px;
  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),
    var(--panel-inset);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.platform-pillar: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),
    var(--panel-inset);
}

.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);
}

/* 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: row;
  align-items: stretch;
  border-radius: 12px;
  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),
    var(--panel-inset);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.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),
    var(--panel-inset);
}

.product-card img {
  display: block;
  flex: 0 0 clamp(100px, 28%, 140px);
  width: clamp(100px, 28%, 140px);
  max-width: 140px;
  height: auto;
  min-height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  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-body {
  padding: 0.85rem 1rem 0.95rem;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-card-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-hero-inner);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--peach);
  line-height: 1.25;
}

.product-card-body p {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: #9eb0ff;
  line-height: 1.3;
}

.product-card:hover .product-card-cta {
  color: var(--peach);
}

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

@media (max-width: 480px) {
  .product-card {
    flex-direction: column;
  }

  .product-card img {
    flex: none;
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 7;
    border-right: none;
    border-bottom: 1px solid rgba(107, 79, 199, 0.35);
  }

  .product-card-body {
    padding: 0.9rem 1rem 1rem;
  }

  .product-card-body p {
    -webkit-line-clamp: unset;
    display: block;
  }
}

@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: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(107, 79, 199, 0.05) 50%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.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 {
  color: var(--peach);
  font-size: clamp(1.16rem, 2vw, 1.27rem);
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
}

.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: 16px;
  background:
    var(--panel-highlight),
    var(--panel-fill);
  border: 1px solid var(--panel-border-color);
  box-shadow:
    var(--panel-glow),
    var(--panel-shadow),
    var(--panel-inset);
}

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

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

.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 */
#adoption .section-head p,
#adoption .adoption-list li,
#adoption .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 auto 1.25rem;
  padding-left: 1.25rem;
  max-width: 720px;
}

.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;
}

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

.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%
  );
}

/* 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: 1fr;
    max-width: 100%;
  }

  .flip-grid-2-centered {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .journey-cards-split .nxt-flip-inner {
    min-height: 190px;
  }
}

/* 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: 12px;
  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),
    var(--panel-inset);
  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),
    var(--panel-inset);
}

.orchestrator-step strong {
  display: block;
  color: var(--peach);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.3;
}

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

.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);
}


.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(180px, 240px) 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;
}

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

  .partnership-card-media {
    max-width: min(280px, 100%);
  }
}

/* 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;
}

@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: 1px solid rgba(255, 255, 255, 0.06);
  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: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  width: 100%;
  max-width: 52rem;
}

.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) {
  margin: 0;
}

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

@media (max-width: 700px) {
  .footer-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .footer-col {
    max-width: 100%;
  }
}

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