/*
 * HELIX MICROSITE — Page Styles
 * helix-microsite.css
 *
 * Load order:
 *   1. tokens.css
 *   2. semantic-tokens.css
 *   3. helix-components.css
 *   4. helix-microsite.css  ← this file
 *
 * Contains all page-specific styles for index.html.
 * Typography classes (.mc-*) use responsive clamp() values
 * that intentionally override the fixed-rem definitions in tokens.css.
 */

/* ═══════════════════════════════════════════
   TYPOGRAPHY SCALE
   ═══════════════════════════════════════════ */
.mc-eyebrow {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hx-text-low);
}

.mc-headline-01 {
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.mc-headline-03 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
}

.mc-headline-05 {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--hx-text-med);
}

.mc-subtitle-02 {
  font-size: 14px;
  font-weight: 500;
}

.mc-body-1 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.mc-button-text {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.35s ease;
  transform: translateY(-100%);
  opacity: 0;
}

.nav--visible {
  transform: translateY(0);
  opacity: 1;
}

.nav--sticky {
  background: rgba(13,26,45,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid transparent;
  border-image: var(--gradient-progress) 1;
}

.nav__logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  padding: 8px 24px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--hx-text-med);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}
.nav__link:hover,
.nav__link--active {
  color: #fff;
}
.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cap-lightblue-600);
  border-radius: 1px;
}

.nav__cta {
  padding: 10px 20px;
  font-size: 13px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: all 0.3s ease;
}
.nav__hamburger--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger--open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13,26,45,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 8999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 0;
}
.nav__drawer--open {
  display: flex;
}
.nav__drawer a {
  font-size: 20px;
  font-weight: 400;
  color: var(--hx-text-high);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--glass-border);
  transition: color 0.2s ease;
}
.nav__drawer a:hover {
  color: var(--cap-lightblue-600);
}
.nav__drawer .btn-pill {
  margin-top: 24px;
  text-align: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,26,45,0.4) 0%, rgba(13,26,45,0.95) 100%);
  z-index: 1;
}

html {
  scroll-behavior: smooth;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  margin-bottom: 20px;
}

.hero__headline {
  margin-bottom: 20px;
}

.hero__subline {
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 1.4s forwards;
}

.hero__scroll-text {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hx-text-low);
}

.hero__scroll-chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--hx-text-low);
  border-bottom: 2px solid var(--hx-text-low);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ═══════════════════════════════════════════
   SECTIONS — SHARED
   ═══════════════════════════════════════════ */
.section {
  min-height: 80vh;
  padding: clamp(60px, 8vh, 120px) clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.section__eyebrow {
  margin-bottom: 16px;
}

.section__headline {
  margin-bottom: 24px;
  max-width: 700px;
}

.section__divider {
  width: 80px;
  height: 2px;
  background: var(--gradient-progress);
  border-radius: 1px;
  margin-top: 48px;
}

/* Placeholder styling */
.section--placeholder .section__headline {
  opacity: 0.5;
}
.section--placeholder::after {
  content: 'Coming in next phase';
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--hx-text-low);
  font-style: italic;
}

/* ═══════════════════════════════════════════
   FOOTER (placeholder)
   ═══════════════════════════════════════════ */
.footer {
  min-height: auto;
  padding: 40px clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--glass-border);
}
.footer .section__headline {
  font-size: 14px;
  font-weight: 400;
  color: var(--hx-text-low);
  opacity: 1;
}

/* ═══════════════════════════════════════════
   HELIX 3D MODEL SECTION
   ═══════════════════════════════════════════ */
.helix-model {
  min-height: 100vh;
  padding: 0;
  position: relative;
  background: rgba(0,0,0,0.2);
  overflow: hidden;
  margin-bottom: -56px;
}
.helix-model__inner {
  display: flex;
  align-items: center;
  height: 100vh;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
  position: relative;
}
.helix-model__header {
  position: absolute;
  top: clamp(40px, 6vh, 80px);
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
  pointer-events: none;
}
.helix-model__header .mc-eyebrow { margin-bottom: 12px; }

/* Three.js canvas area */
.helix-model__canvas-wrap {
  width: 60%;
  height: 100vh;
  position: relative;
  flex-shrink: 0;
}
.helix-model__canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Layer labels floating over canvas */
.helix-model__labels {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.helix-model__label {
  position: absolute;
  font-size: 10px;
  font-weight: 500;
  pointer-events: auto;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0.6;
  cursor: pointer;
}
.helix-model__label--active {
  opacity: 1;
}
.helix-model__label--platform { color: #0058AB; }
.helix-model__label--agents   { color: #1DB8F2; }
.helix-model__label--services { color: #00D5D0; }

/* Detail panels — fixed position, crossfade in place */
.helix-model__panels {
  width: 40%;
  padding-left: clamp(24px, 3vw, 48px);
  display: flex;
  align-items: center;
  position: relative;
  min-height: 240px;
}
.helix-model__panel {
  position: absolute;
  top: 50%;
  left: clamp(24px, 3vw, 48px);
  right: 0;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.helix-model__panel--active {
  opacity: 1;
  pointer-events: auto;
}
.helix-model__panel-eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.helix-model__panel-headline {
  font-size: 20px;
  font-weight: 500;
  color: var(--hx-text-high);
  margin-bottom: 12px;
  line-height: 1.3;
}
.helix-model__panel-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--hx-text-med);
}
.helix-model__panel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Scroll progress bar */
.helix-model__progress {
  position: absolute;
  right: clamp(16px, 2vw, 32px);
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  z-index: 10;
}
.helix-model__progress-fill {
  width: 100%;
  background: var(--gradient-progress);
  border-radius: 2px;
  height: 0%;
  transition: height 0.1s linear;
}
.helix-model__progress-dots {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.helix-model__progress-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  margin-left: -3px;
  cursor: pointer;
}
.helix-model__progress-dot--active {
  background: var(--cap-lightblue-600);
  border-color: var(--cap-lightblue-600);
  box-shadow: 0 0 8px rgba(29,184,242,0.5);
}

/* CSS Fallback (mobile / low power) */
.helix-model__fallback {
  display: none;
  width: 100%;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 4vw, 64px);
}
.helix-model--fallback .helix-model__canvas-wrap,
.helix-model--fallback .helix-model__panels,
.helix-model--fallback .helix-model__progress {
  display: none;
}
.helix-model--fallback .helix-model__fallback {
  display: block;
}
.helix-model--fallback .helix-model__inner {
  flex-direction: column;
  height: auto;
  padding-top: 120px;
  padding-bottom: 80px;
}

.helix-fallback__layers {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 48px;
}
.helix-fallback__layer {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.helix-fallback__layer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.helix-fallback__layer--platform::before { background: #0058AB; }
.helix-fallback__layer--agents::before   { background: #1DB8F2; }
.helix-fallback__layer--services::before { background: #00D5D0; }

.helix-fallback__layer-name {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.helix-fallback__layer-headline {
  font-size: 18px;
  font-weight: 500;
  color: var(--hx-text-high);
  margin-bottom: 8px;
}
.helix-fallback__layer-body {
  font-size: 14px;
  color: var(--hx-text-med);
  line-height: 1.5;
}

/* Mobile layout for 3D section */
@media (max-width: 767px) {
  .helix-model--fallback .helix-model__header {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 32px;
  }
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Initial hidden states — GSAP will animate these in.
   Using visibility to avoid specificity fights with GSAP inline styles. */

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 767px) {
  .nav__links {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
  .nav__cta-desktop {
    display: none;
  }

  .hero__content {
    padding: 0 16px;
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero__buttons .btn-pill {
    justify-content: center;
  }

  .section {
    padding: 60px 24px;
    min-height: 60vh;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero__pillars {
    gap: 16px;
  }
}

/* ═══════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  /* GSAP handles reduced-motion state via JS */
}

/* ═══════════════════════════════════════════
   SECTION A: SERVICE CATALOGUE — Diamond
   ═══════════════════════════════════════════ */
.catalogue {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: visible;
}
.catalogue__header {
  margin-bottom: 80px;
}
.catalogue__header .section__eyebrow {
  margin-bottom: 12px;
}
.catalogue__header .section__headline {
  max-width: 640px;
  margin: 0 auto;
}

/* Diamond container */
.diamond {
  position: relative;
  width: 560px;
  height: 560px;
  margin: 0 auto;
}

/* Connecting lines via SVG */
.diamond__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.diamond__lines line {
  stroke: rgba(255,255,255,0.1);
  stroke-width: 1;
}

/* You+ circle */
.diamond__centre {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  z-index: 3;
  background: rgba(18,26,56,0.8);
  animation: youPlusPulse 2.4s ease-in-out infinite;
}
@keyframes youPlusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.25); }
  50% { box-shadow: 0 0 20px 4px rgba(255,255,255,0.12); }
}

/* Pillar cards positioned absolutely */
.pillar-card {
  position: absolute;
  width: 220px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: left;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  opacity: 0;
}
.pillar-card--top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top: 2px solid var(--mode-sensing);
}
.pillar-card--right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-top: 2px solid var(--mode-orchestration);
}
.pillar-card--bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top: 2px solid var(--mode-data);
}
.pillar-card--left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-top: 2px solid var(--mode-generative);
}
.pillar-card__name {
  font-size: 20px;
  font-weight: 500;
  color: var(--hx-text-high);
  margin-bottom: 6px;
}
.pillar-card__tagline {
  font-size: 14px;
  font-weight: 400;
  color: var(--hx-text-med);
  line-height: 1.4;
}

/* Hover states */
.pillar-card--top:hover {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 8px 32px rgba(209,36,122,0.2);
  border-color: var(--mode-sensing);
}
.pillar-card--right:hover {
  transform: translateY(-50%) translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,88,171,0.2);
  border-color: var(--mode-orchestration);
}
.pillar-card--bottom:hover {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 8px 32px rgba(137,107,237,0.2);
  border-color: var(--mode-data);
}
.pillar-card--left:hover {
  transform: translateY(-50%) translateY(-4px);
  box-shadow: 0 8px 32px rgba(16,162,132,0.2);
  border-color: var(--mode-generative);
}

/* Modal */
.pillar-modal-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pillar-modal-scrim.is-active {
  opacity: 1;
  pointer-events: auto;
}
.pillar-modal {
  width: 90%;
  max-width: 520px;
  max-height: 80vh;
  overflow-y: auto;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  transform: translateY(24px);
  transition: transform 0.3s ease;
  position: relative;
}
.pillar-modal-scrim.is-active .pillar-modal {
  transform: translateY(0);
}
.pillar-modal__top-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 16px 16px 0 0;
}
.pillar-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.pillar-modal__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
}
.pillar-modal__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.pillar-modal__close {
  background: none;
  border: none;
  color: var(--hx-text-med);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.pillar-modal__close:hover {
  color: #fff;
}
.pillar-modal__service {
  padding: 16px 0;
  border-bottom: 1px solid var(--glass-border);
}
.pillar-modal__service:last-child {
  border-bottom: none;
}
.pillar-modal__service-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--hx-text-high);
  margin-bottom: 4px;
}
.pillar-modal__service-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--hx-text-med);
  line-height: 1.5;
}

/* Mobile diamond */
@media (max-width: 767px) {
  .diamond {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 480px;
  }
  .diamond__lines { display: none; }
  .diamond__centre {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    grid-column: 1 / -1;
    margin: 0 auto 8px;
  }
  .pillar-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 100%;
  }
  .pillar-card--top:hover,
  .pillar-card--right:hover,
  .pillar-card--bottom:hover,
  .pillar-card--left:hover {
    transform: translateY(-4px);
  }
}

/* ═══════════════════════════════════════════
   SECTION B: WHY HELIX — Flip Cards
   ═══════════════════════════════════════════ */
.benefits {
  padding: 120px 24px;
  text-align: center;
  position: relative;
}
.benefits__header {
  margin-bottom: 64px;
}
.benefits__header .section__eyebrow {
  margin-bottom: 12px;
}
.benefits__header .section__headline {
  max-width: 640px;
  margin: 0 auto;
}

/* Flip cards grid */
.flip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 80px;
}
@media (max-width: 1023px) {
  .flip-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
  }
}
@media (max-width: 567px) {
  .flip-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

/* Flip card */
.flip-card {
  perspective: 800px;
  height: 320px;
  cursor: pointer;
}
.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
}
.flip-card__inner.is-flipped {
  transform: rotateY(180deg);
}
.flip-card__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: rgba(18,26,56,0.95);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  overflow: hidden;
}
.flip-card__face--back {
  transform: rotateY(180deg);
  background: rgba(0,30,60,0.95);
}
.flip-card__icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.flip-card__icon--warn {
  color: var(--hx-text-low);
}
.flip-card__icon--check {
  color: #00D5D0;
}
.flip-card__label {
  font-size: 13px;
  font-weight: 500;
  color: #00D5D0;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.flip-card__title {
  font-size: 20px;
  font-weight: 500;
  color: var(--hx-text-high);
  margin-bottom: 10px;
  line-height: 1.3;
}
.flip-card__desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--hx-text-med);
  line-height: 1.6;
}

/* Stats row */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.stat-card {
  flex: 1 1 0;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-progress);
}
.stat-card__number {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 500;
  color: var(--hx-text-high);
  line-height: 1.1;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
.stat-card__number::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cap-turquoise-600), transparent);
  border-radius: 1px;
}
.stat-card__label {
  font-size: 14px;
  font-weight: 400;
  color: var(--hx-text-med);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════
   SECTION: THE NEW ORGANISATION — Toggle + Org Views
   ═══════════════════════════════════════════ */
.org {
  padding: 120px 24px;
  text-align: center;
  position: relative;
}
.org__header {
  margin-bottom: 48px;
}
.org__header .section__eyebrow { margin-bottom: 12px; }
.org__header .section__headline { max-width: 700px; margin: 0 auto; }

/* Toggle pill */
.org-toggle {
  width: 280px;
  height: 44px;
  border-radius: 999px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  margin: 0 auto 48px;
  padding: 3px;
  outline: none;
}
.org-toggle:focus-visible {
  box-shadow: 0 0 0 2px var(--cap-lightblue-600);
}
.org-toggle__slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  border-radius: 999px;
  background: linear-gradient(90deg, #00B4D8, #00D5D0);
  transition: transform 0.35s ease;
  z-index: 0;
}
.org-toggle--helix .org-toggle__slider {
  transform: translateX(100%);
}
.org-toggle__label {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  user-select: none;
}
.org-toggle__label--active {
  color: #fff;
}

/* Content area */
.org-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 48px;
  position: relative;
  min-height: 420px;
}
.org-view {
  width: 100%;
  transition: opacity 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
}
.org-view--hidden {
  opacity: 0;
  pointer-events: none;
}
.org-view--visible {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

/* ── Today: Org chart ── */
.org-chart {
  width: 100%;
}
.org-chart__row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.org-chart__box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--hx-text-med);
  text-align: center;
  min-width: 100px;
}
.org-chart__box--cmo {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: var(--hx-text-high);
  font-size: 16px;
  padding: 14px 32px;
}
.org-chart__connector {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 0;
}
.org-chart__branch {
  width: 60%;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto;
}
.org-chart__sub {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.org-chart__dep {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
}
.org-chart__annotations {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.org-chart__annotation {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  text-align: right;
  white-space: nowrap;
}

/* ── With Helix: Network view ── */
.org-helix {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.org-helix__ring {
  position: relative;
  width: 280px;
  height: 280px;
}
.org-helix__you {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background: rgba(18,26,56,0.8);
  animation: youPlusPulse 2.4s ease-in-out infinite;
  z-index: 2;
}
.org-helix__node {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  z-index: 2;
}
.org-helix__node--pink   { background: rgba(209,36,122,0.25); border: 1px solid #D1247A; top: 0; left: 50%; transform: translateX(-50%); }
.org-helix__node--blue   { background: rgba(0,88,171,0.25); border: 1px solid #0058AB; top: 50%; right: 0; transform: translateY(-50%); }
.org-helix__node--purple { background: rgba(137,107,237,0.25); border: 1px solid #896BED; bottom: 0; left: 50%; transform: translateX(-50%); }
.org-helix__node--teal   { background: rgba(16,162,132,0.25); border: 1px solid #10A284; top: 50%; left: 0; transform: translateY(-50%); }

.org-helix__lines {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.org-helix__lines line {
  stroke: rgba(255,255,255,0.15);
  stroke-width: 1;
  stroke-dasharray: 4 4;
  animation: orgLineDash 1.5s linear infinite;
}
@keyframes orgLineDash {
  to { stroke-dashoffset: -16; }
}

.org-helix__layer {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.org-helix__agent {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--hx-text-high);
}
.org-helix__martech {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--hx-text-low);
}
.org-helix__layer-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hx-text-low);
  margin-bottom: -16px;
}
.org-helix__annotations {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.org-helix__annotation {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
}

/* Deep-dive buttons */
.org-deepdive {
  display: flex;
  justify-content: center;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}


/* Mobile org chart adjustments */
@media (max-width: 767px) {
  .org-chart__annotations,
  .org-helix__annotations {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
  }
  .org-content {
    min-height: auto;
  }
  .org-view {
    position: relative;
  }
  .org-helix__ring {
    width: 220px;
    height: 220px;
  }
  .org-helix__node {
    width: 44px;
    height: 44px;
    font-size: 8px;
  }
  .org-helix__you {
    width: 80px;
    height: 80px;
    font-size: 15px;
  }
}

/* ═══════════════════════════════════════════
   SECTION: GET STARTED — Stepper + Cards
   ═══════════════════════════════════════════ */
.onboard {
  padding: 64px 24px 120px;
  text-align: center;
  position: relative;
}
.onboard__header {
  margin-bottom: 64px;
}
.onboard__header .section__eyebrow { margin-bottom: 12px; }
.onboard__header .section__headline { max-width: 640px; margin: 0 auto; }

/* Cards grid — 2 options side by side */
.onboard-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .onboard-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

.onboard-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 32px;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
}
.onboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-progress);
}
.onboard-card__number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 72px;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}
.onboard-card__label {
  font-size: 11px;
  font-weight: 500;
  color: var(--hx-text-low);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.onboard-card__title {
  font-size: 24px;
  font-weight: 300;
  color: var(--hx-text-high);
  margin-bottom: 10px;
}
.onboard-card__desc {
  flex: 1;
}
.onboard-card__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--hx-text-med);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 4px 14px;
  margin-top: auto;
  margin-bottom: 0;
}
.onboard-card__desc {
  font-size: 14px;
  color: var(--hx-text-med);
  line-height: 1.6;
  margin-bottom: 20px;
}
.onboard-card__cta {
  margin-top: auto;
  padding-top: 24px;
  align-self: flex-start;
}

.onboard-card__detail-inner {
  padding-top: 20px;
}
.onboard-card__detail-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--hx-text-low);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* Mini cards for Discover */
.onboard-mini {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--cap-turquoise-600);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.onboard-mini:last-child { margin-bottom: 0; }
.onboard-mini__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--hx-text-high);
  margin-bottom: 4px;
}
.onboard-mini__desc {
  font-size: 13px;
  color: var(--hx-text-med);
  line-height: 1.4;
}

/* Checklist for Pilot / Transform */
.onboard-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.onboard-check:last-child { margin-bottom: 0; }
.onboard-check__icon {
  color: var(--cap-turquoise-600);
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.4;
}
.onboard-check__text {
  font-size: 14px;
  color: var(--hx-text-med);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta {
  min-height: auto;
  padding: 100px clamp(24px, 5vw, 80px);
  background: rgba(255,255,255,0.03);
  position: relative;
  width: 100%;
}
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-progress);
}
.cta__headline {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--hx-text-high);
}
.cta__subline {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 40px;
}
.cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta__buttons .btn-pill {
  padding: 16px 32px;
  font-size: 15px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer-new {
  min-height: auto;
  padding: 40px clamp(24px, 5vw, 80px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-progress);
}
.footer-new__left {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.footer-new__wordmark {
  font-size: 18px;
  font-weight: 700;
  color: var(--hx-text-high);
}
.footer-new__byline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.footer-new__right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.38);
}
.footer-new__right a {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-new__right a:hover {
  color: rgba(255,255,255,0.7);
}

@media (max-width: 600px) {
  .footer-new {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-new__left {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
}

/* ═══════════════════════════════════════════
   FLOATING CHAT PANEL
   ═══════════════════════════════════════════ */
.chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 7000;
}

/* Minimised pill */
.chat-fab__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.chat-fab__pill:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.chat-fab__pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00D5D0;
  animation: chatPulse 2s ease-in-out infinite;
}
@keyframes chatPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,213,208,0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0,213,208,0); }
}
.chat-fab__pill-icon {
  font-size: 18px;
  line-height: 1;
}

/* Expanded panel */
.chat-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 7000;
  width: 380px;
  max-height: 520px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.chat-panel--open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.chat-panel--closing {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.chat-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-progress);
  border-radius: 16px 16px 0 0;
  z-index: 1;
}

/* Chat header */
.chat-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(135deg, #0058AB, #1DB8F2);
  flex-shrink: 0;
  border-radius: 16px 16px 0 0;
}
.chat-panel__header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.chat-panel__header-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00D5D0;
  animation: chatPulse 2s ease-in-out infinite;
}
.chat-panel__header-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.chat-panel__header-right {
  display: flex;
  gap: 4px;
}
.chat-panel__header-btn {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  font-family: var(--font-body);
  line-height: 1;
}
.chat-panel__header-btn:hover {
  background: rgba(255,255,255,0.25);
}

/* Message thread */
.chat-panel__messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}
.chat-panel__messages::-webkit-scrollbar {
  width: 4px;
}
.chat-panel__messages::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

/* Messages */
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.5;
  animation: chatMsgIn 0.3s ease;
}
@keyframes chatMsgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-msg--ai {
  align-self: flex-start;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-left: 3px solid #00D5D0;
  border-radius: 12px 12px 12px 4px;
  color: var(--hx-text-high);
}
.chat-msg--user {
  align-self: flex-end;
  background: #0058AB;
  color: #fff;
  border-radius: 12px 12px 4px 12px;
}

/* Suggested chips */
.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  animation: chatMsgIn 0.3s ease;
}
.chat-chip {
  padding: 6px 12px;
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--hx-text-high);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.chat-chip:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

/* Typing indicator */
.chat-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 10px 14px;
  align-self: flex-start;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-left: 3px solid #00D5D0;
  border-radius: 12px 12px 12px 4px;
}
.chat-typing__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: typingBounce 1.2s ease-in-out infinite;
}
.chat-typing__dot:nth-child(2) { animation-delay: 0.15s; }
.chat-typing__dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* Input area */
.chat-panel__input {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--glass-border);
  flex-shrink: 0;
}
.chat-panel__input-field {
  flex: 1;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--hx-text-high);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}
.chat-panel__input-field::placeholder {
  color: var(--hx-text-low);
}
.chat-panel__input-field:focus {
  border-color: rgba(255,255,255,0.25);
}
.chat-panel__send {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #0058AB;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  align-self: center;
}
.chat-panel__send:hover {
  background: #00438A;
}
.chat-panel__send:disabled {
  opacity: 0.4;
  cursor: default;
}
.chat-panel__send svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 440px) {
  .chat-panel {
    width: calc(100vw - 16px);
    right: 8px;
    bottom: 8px;
    max-height: calc(100vh - 80px);
  }
}

/* ═══════════════════════════════════════════
   HERO PILLAR ROW
   ═══════════════════════════════════════════ */
.hero__pillars {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  width: 100%;
  max-width: 900px;
}

.hero__pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 24px;
}

a.hero__pillar {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
a.hero__pillar:hover {
  transform: translateY(-2px);
}

.hero__pillar-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--hx-text-high);
  letter-spacing: 0.3px;
}

.hero__pillar-body {
  font-size: 13px;
  font-weight: 400;
  color: var(--hx-text-med);
  line-height: 1.5;
}

/* ── Pillar icons ── */
.hero__pillar-icon {
  display: block;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

/* Platform icon — layer float */
.pillar-icon-layer-top    { animation: pillarLayerTopFloat 4s ease-in-out infinite; }
.pillar-icon-layer-bottom { animation: pillarLayerBotFloat 4s ease-in-out infinite; }

@keyframes pillarLayerTopFloat {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-6px); }
}
@keyframes pillarLayerBotFloat {
  0%, 100% { transform: translateY(0);   }
  50%       { transform: translateY(6px); }
}

/* Atomic org icon — orbit rotation */
.pillar-icon-orb-outer-a { animation: pillarSpinCW  7s  linear infinite; transform-origin: 50% 50%; }
.pillar-icon-orb-outer-b { animation: pillarSpinCCW 9s  linear infinite; transform-origin: 50% 50%; }
.pillar-icon-orb-inner-a { animation: pillarSpinCW  5s  linear infinite; transform-origin: 50% 50%; }
.pillar-icon-orb-inner-b { animation: pillarSpinCCW 11s linear infinite; transform-origin: 50% 50%; }

.pillar-icon-atomic-centre {
  animation: pillarCentrePulse 3.5s ease-in-out infinite;
  transform-origin: 50% 50%;
}

@keyframes pillarSpinCW  { to { transform: rotate(360deg);  } }
@keyframes pillarSpinCCW { to { transform: rotate(-360deg); } }

@keyframes pillarCentrePulse {
  0%, 100% { transform: scale(1);   opacity: 0.8; }
  50%       { transform: scale(1.2); opacity: 1;   }
}

/* MaaS icon — diamond pulse */
.pillar-icon-dm-n { animation: pillarDmPulse 3.6s ease-in-out infinite 0s;    transform-origin: 50% 50%; }
.pillar-icon-dm-e { animation: pillarDmPulse 3.6s ease-in-out infinite 0.55s; transform-origin: 50% 50%; }
.pillar-icon-dm-s { animation: pillarDmPulse 3.6s ease-in-out infinite 1.1s;  transform-origin: 50% 50%; }
.pillar-icon-dm-w { animation: pillarDmPulse 3.6s ease-in-out infinite 1.65s; transform-origin: 50% 50%; }

@keyframes pillarDmPulse {
  0%, 100% { transform: scale(1);    opacity: 0.72; }
  40%       { transform: scale(1.13); opacity: 1;    }
  75%       { transform: scale(0.93); opacity: 0.5;  }
}

@media (max-width: 768px) {
  .hero__pillars {
    flex-direction: column;
    gap: 1px;
  }
}


/* ═══════════════════════════════════════════
   NAV LOGO SPADE
   ═══════════════════════════════════════════ */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-spade {
  height: 24px;
  width: auto;
}


/* ═══════════════════════════════════════════
   PLATFORM SECTION FOOTER (Learn more)
   ═══════════════════════════════════════════ */
.helix-model__footer {
  display: flex;
  justify-content: center;
  padding: 12px 0 24px;
}


/* ═══════════════════════════════════════════
   FOOTER — CAPGEMINI LOGO
   ═══════════════════════════════════════════ */
.footer-new__cap-logo {
  height: 20px;
  width: auto;
  opacity: 0.7;
  margin-top: 8px;
  display: block;
}


/* ═══════════════════════════════════════════
   SECTION: VIDEO PLACEHOLDER
   ═══════════════════════════════════════════ */
.video-section {
  background: radial-gradient(ellipse at 50% 60%, #0D1A2D 0%, #121A38 100%);
}

.video-section__player {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.video-section__placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.video-section__play-icon svg {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.video-section__placeholder:hover .video-section__play-icon svg {
  opacity: 0.9;
}

.video-section__label {
  color: var(--hx-text-low);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.video-section video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  display: block;
}


/* ═══════════════════════════════════════════
   SECTION: MARKETING AS A SERVICE
   ═══════════════════════════════════════════ */
.maas {
  text-align: center;
  gap: 40px;
}

.maas__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.maas__intro {
  max-width: 600px;
  color: var(--hx-text-med);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 16px;
}

.maas__images {
  width: 100%;
  max-width: 960px;
  position: relative;
}

.maas__image-view {
  width: 100%;
}

.maas__image-view--visible {
  display: block;
}

.maas__image-view--hidden {
  display: none;
}

.maas__image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maas__image-placeholder span {
  color: var(--hx-text-low);
  font-size: 13px;
  letter-spacing: 0.5px;
}

.maas__images img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

.maas-toggle {
  margin: 0 auto;
}


/* ═══════════════════════════════════════════
   SUBPAGE — Shared base
   ═══════════════════════════════════════════ */

/* Subpages: nav is always sticky/visible from the top */
.subpage .nav {
  position: sticky;
  top: 0;
}

.nav__link--active {
  color: var(--hx-text-high);
  opacity: 1;
}

/* ─────────────────────────────────────────
   Shared subpage hero
   ───────────────────────────────────────── */

.subpage-hero {
  padding: 100px var(--section-x-pad, 80px) 80px;
  max-width: 900px;
}

.subpage-hero__eyebrow {
  margin-bottom: 16px;
}

.subpage-hero__headline {
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.subpage-hero__body {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 300;
  color: var(--hx-text-med);
  line-height: 1.6;
  max-width: 600px;
}

/* ─────────────────────────────────────────
   Shared placeholder section
   ───────────────────────────────────────── */

.subpage-placeholder {
  padding: 80px var(--section-x-pad, 80px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.subpage-placeholder__box {
  margin-top: 40px;
  height: 320px;
  background: var(--glass-bg);
  border: 1px dashed var(--glass-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--hx-text-low);
  text-align: center;
}

@media (max-width: 767px) {
  .subpage-hero {
    padding: 80px 24px 60px;
  }

  .subpage-placeholder {
    padding: 60px 24px;
  }
}


/* ═══════════════════════════════════════════
   PLATFORM PAGE — Hero
   ═══════════════════════════════════════════ */

.platform-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 120px var(--section-x-pad, 80px) 80px;
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.platform-hero__eyebrow {
  margin-bottom: 16px;
}

.platform-hero__headline {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.platform-hero__body {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  color: var(--hx-text-med);
  line-height: 1.6;
  max-width: 480px;
}

/* Visual side */
.platform-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}

/* Orbital tool icons */
.platform-hero__orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.platform-hero__tool {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 56px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  font-size: 9px;
  font-weight: 500;
  text-align: center;
  color: var(--hx-text-med);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  transform-origin: center;
}

/* Position each tool icon around the laptop (orbit radius ~210px) */
.platform-hero__tool--0 { top: 4%;  left: 50%; transform: translateX(-50%); }          /* top */
.platform-hero__tool--1 { top: 15%; right: 4%; }                                        /* top-right */
.platform-hero__tool--2 { top: 40%; right: 0%;  transform: translateX(8px); }          /* right */
.platform-hero__tool--3 { bottom: 20%; right: 4%; }                                     /* bottom-right */
.platform-hero__tool--4 { bottom: 4%;  left: 50%; transform: translateX(-50%); }       /* bottom */
.platform-hero__tool--5 { bottom: 20%; left: 4%; }                                      /* bottom-left */
.platform-hero__tool--6 { top: 40%; left: 0%;   transform: translateX(-8px);
  background: rgba(0,88,171,0.15);
  border-color: rgba(0,88,171,0.4);
  color: #29BEF4; }                                                                      /* left — Azure accent */

/* Laptop mockup */
.platform-laptop {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.platform-laptop__screen {
  width: 320px;
  height: 200px;
  background: #0D1A2D;
  border: 2px solid var(--glass-border);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.platform-laptop__screen-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.platform-laptop__screen-bar {
  height: 20px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--glass-border);
  flex-shrink: 0;
}

.platform-laptop__screen-content {
  flex: 1;
  display: flex;
  gap: 1px;
  padding: 8px;
}

.platform-laptop__screen-sidebar {
  width: 48px;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
  flex-shrink: 0;
}

.platform-laptop__screen-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

.platform-laptop__screen-row {
  height: 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
}

.platform-laptop__screen-row--wide {
  height: 60px;
  background: linear-gradient(135deg, rgba(0,88,171,0.2), rgba(0,213,208,0.1));
}

.platform-laptop__screen-row--short {
  width: 60%;
}

.platform-laptop__hinge {
  width: 340px;
  height: 6px;
  background: linear-gradient(to bottom, #1a2444, #0f1828);
  border-radius: 0 0 2px 2px;
}

.platform-laptop__base {
  width: 380px;
  height: 16px;
  background: linear-gradient(to bottom, #1a2444, #0f1828);
  border-radius: 0 0 8px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-laptop__notch {
  width: 48px;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}

/* Prompt bubbles */
.platform-hero__prompts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.platform-prompt {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0,88,171,0.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(41,190,244,0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 400;
  color: var(--hx-text-high);
  opacity: 0; /* animated in by JS */
}

.platform-prompt__icon {
  font-size: 13px;
  opacity: 0.8;
}

/* Position each bubble */
.platform-prompt--1 { top: 8%;   left: -8%; max-width: 200px; white-space: normal; }
.platform-prompt--2 { top: 30%;  right: -6%; max-width: 220px; white-space: normal; }
.platform-prompt--3 { bottom: 28%; left: -6%; max-width: 200px; white-space: normal; }
.platform-prompt--4 { bottom: 10%; right: -4%; max-width: 240px; white-space: normal; }


/* ═══════════════════════════════════════════
   PLATFORM PAGE — A Day with Helix
   ═══════════════════════════════════════════ */

.platform-day {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px var(--section-x-pad, 80px);
  display: block;
}

.platform-day__header {
  margin: 0 auto 48px;
  max-width: 700px;
  text-align: center;
}

.platform-day__intro {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--hx-text-med);
  line-height: 1.65;
  margin-top: 20px;
  max-width: 600px;
}

/* ── Interactive day component ── */
.day-interactive {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}

.day-feed {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
}

.day-feed__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.03);
}

.day-feed__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--glass-border);
  flex-shrink: 0;
}

.day-feed__title {
  margin-left: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hx-text-low);
}

.day-feed__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--glass-border);
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-left-color 0.15s;
  color: inherit;
  font-family: inherit;
}

.day-feed__item:last-child {
  border-bottom: none;
}

.day-feed__item:hover {
  background: rgba(255,255,255,0.05);
}

.day-feed__item--active {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--cap-lightblue-400);
}

.day-feed__time {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--hx-text-low);
  white-space: nowrap;
  margin-top: 2px;
  min-width: 34px;
}

.day-feed__name {
  font-size: 13px;
  color: var(--hx-text-med);
  line-height: 1.4;
}

.day-feed__item--active .day-feed__name {
  color: var(--hx-text-high);
}

.day-copy__step {
  display: none;
}

.day-copy__step--active {
  display: block;
}

.day-copy__title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--hx-text-high);
  line-height: 1.3;
  margin-bottom: 20px;
}

.day-copy__prompt {
  margin: 0 0 24px;
  padding: 14px 20px;
  background: rgba(29, 184, 242, 0.08);
  border-left: 2px solid var(--cap-lightblue-400);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  font-style: italic;
  color: var(--hx-text-med);
  line-height: 1.55;
}

.day-copy__body {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--hx-text-med);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .day-interactive {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════
   PLATFORM PAGE — Agentic Workforce
   ═══════════════════════════════════════════ */

.platform-agents {
  padding: 80px var(--section-x-pad, 80px);
  display: block;
}

.platform-agents__copy {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.platform-agents__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  align-items: stretch;
  max-width: 1300px;
  margin: 0 auto;
}

.platform-agents__types {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: end;
}

.platform-agents__intro {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--hx-text-med);
  line-height: 1.65;
  margin-top: 20px;
}

.platform-agents__diagram {
  display: flex;
  justify-content: center;
}

.platform-agents__diagram img {
  max-height: 64vh;
  width: auto;
  height: auto;
  display: block;
}

.platform-agents__diagram-placeholder {
  aspect-ratio: 3 / 4;
  background: var(--glass-bg);
  border: 1px dashed var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  color: var(--hx-text-low);
  line-height: 1.5;
  padding: 20px;
}

.platform-agents__type {
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  text-align: center;
}

.platform-agents__type-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--hx-text-high);
  margin-bottom: 8px;
}

.platform-agents__type-body {
  font-size: 14px;
  color: var(--hx-text-med);
  line-height: 1.6;
}

.platform-agents__always-on {
  padding: 20px;
  background: rgba(0,213,208,0.06);
  border: 1px solid rgba(0,213,208,0.2);
  border-radius: 10px;
  align-self: center;
}

.platform-agents__always-on-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #00D5D0;
  margin-bottom: 6px;
}

.platform-agents__always-on-body {
  font-size: 13px;
  color: var(--hx-text-med);
  line-height: 1.55;
}


/* ═══════════════════════════════════════════
   PLATFORM PAGE — Platform Foundation
   ═══════════════════════════════════════════ */

.platform-foundation {
  padding: 80px var(--section-x-pad, 80px);
}

.platform-foundation__header {
  max-width: 760px;
  margin: 0 auto 56px;
}

.platform-foundation__intro {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--hx-text-med);
  line-height: 1.65;
  margin-top: 20px;
}

.platform-foundation__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 64px;
}

.platform-foundation__point {
  padding: 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

.platform-foundation__point-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--hx-text-high);
  margin-bottom: 12px;
  line-height: 1.35;
}

.platform-foundation__point-body {
  font-size: 14px;
  color: var(--hx-text-med);
  line-height: 1.65;
}

/* Tech stack lockup */
.platform-foundation__stack {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.platform-foundation__stack-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hx-text-low);
  text-align: center;
  margin-bottom: 28px;
}

.platform-foundation__stack-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.platform-stack-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  color: var(--hx-text-med);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.35;
  min-width: 80px;
}

.platform-stack-tile--azure {
  background: rgba(0,88,171,0.12);
  border-color: rgba(0,88,171,0.3);
  color: #29BEF4;
}

/* CTA body text (applies to all pages) */
.cta__body {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--hx-text-med);
  margin: 12px 0 32px;
}


/* ═══════════════════════════════════════════
   PLATFORM PAGE — Responsive
   ═══════════════════════════════════════════ */

@media (max-width: 1023px) {
  .platform-hero {
    grid-template-columns: 1fr;
    padding: 100px 40px 60px;
    min-height: auto;
    gap: 48px;
  }

  .platform-hero__visual {
    height: 400px;
  }

  .platform-laptop__screen { width: 260px; height: 162px; }
  .platform-laptop__hinge  { width: 280px; }
  .platform-laptop__base   { width: 310px; }

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

  .platform-agents__always-on {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .platform-hero {
    padding: 80px 24px 48px;
  }

  .platform-hero__visual {
    height: 360px;
  }

  .platform-laptop__screen { width: 220px; height: 138px; }
  .platform-laptop__hinge  { width: 240px; }
  .platform-laptop__base   { width: 270px; }

  /* Fewer orbital icons on mobile */
  .platform-hero__tool--1,
  .platform-hero__tool--3,
  .platform-hero__tool--5 {
    display: none;
  }

  /* Reposition remaining icons tighter */
  .platform-hero__tool--0 { top: 2%; }
  .platform-hero__tool--2 { top: 38%; right: -2%; }
  .platform-hero__tool--4 { bottom: 2%; }
  .platform-hero__tool--6 { top: 38%; left: -2%; }

  /* Fewer/repositioned prompts on mobile */
  .platform-prompt--3,
  .platform-prompt--4 {
    display: none;
  }

  .platform-prompt--1 { top: 5%; left: 0; max-width: 180px; }
  .platform-prompt--2 { top: 28%; right: 0; max-width: 180px; }

  .platform-day {
    padding: 60px 24px;
  }

  .platform-agents {
    padding: 60px 24px;
  }

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

  .platform-agents__diagram img {
    max-height: 60vh;
  }

  .platform-foundation {
    padding: 60px 24px;
  }

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

  .platform-foundation__stack {
    padding: 24px;
  }
}


/* ═══════════════════════════════════════════
   ATOMIC ORG PAGE — HERO
   ═══════════════════════════════════════════ */

.ao-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 100px var(--section-x-pad, 80px) 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.ao-hero__eyebrow {
  color: var(--cap-turquoise-600);
  margin-bottom: 20px;
}

.ao-hero__headline {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--hx-text-high);
  margin-bottom: 24px;
}

.ao-hero__body {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--hx-text-med);
  line-height: 1.65;
  max-width: 460px;
}

.ao-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated atom diagram */
.ao-atom {
  width: 100%;
  height: auto;
  max-width: 480px;
  overflow: visible;
}

.ao-atom__nucleus-glow {
  /* fill and fill-opacity set inline — soft white halo */
}

.ao-atom__nucleus-label {
  fill: white;
  font-family: Ubuntu, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  dominant-baseline: middle;
}

.ao-atom__electron {
  /* fill and fill-opacity set inline per electron */
}

.ao-atom__electron-label {
  fill: white;
  fill-opacity: 0.5;
  font-family: Ubuntu, sans-serif;
  font-size: 12px;
  font-weight: 400;
  dominant-baseline: middle;
}

/* Diagram placeholder — shared by hero atom + hubs sections */
.ao-diagram-placeholder {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
  background: var(--glass-bg);
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.ao-diagram-placeholder--hubs {
  max-width: 720px;
  aspect-ratio: 16 / 7;
  margin: 48px auto 0;
}

.ao-hubs > img {
  display: block;
  width: 100%;
  height: auto;
  margin: 48px auto 0;
}

.ao-diagram-placeholder__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hx-text-low);
}

.ao-diagram-placeholder__nodes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ao-diagram-placeholder__centre {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,213,208,0.12);
  border: 1.5px solid #00D5D0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: #00D5D0;
}

.ao-diagram-placeholder__orbit {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 320px;
}

.ao-diagram-placeholder__electron {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,213,208,0.08);
  border: 1px solid rgba(0,213,208,0.3);
  font-size: 10px;
  color: rgba(255,255,255,0.6);
}


/* ═══════════════════════════════════════════
   ATOMIC ORG PAGE — SHIFT TABLE
   ═══════════════════════════════════════════ */

.ao-shift {
  padding: 80px var(--section-x-pad, 80px);
  max-width: 900px;
  margin: 0 auto;
}

.ao-shift__header {
  margin-bottom: 48px;
}

.ao-shift__table {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
}

.ao-shift__col-header {
  padding: 12px 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
}

.ao-shift__col-header--from { color: var(--hx-text-low); }
.ao-shift__col-header--to { color: var(--cap-turquoise-600); }

.ao-shift__from {
  padding: 20px;
  color: var(--hx-text-low);
  font-size: 15px;
  line-height: 1.4;
  border-top: 1px solid var(--glass-border);
}

.ao-shift__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hx-text-low);
  border-top: 1px solid var(--glass-border);
  font-size: 16px;
}

.ao-shift__to {
  padding: 20px;
  color: var(--hx-text-high);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  border-top: 1px solid var(--glass-border);
}


/* ═══════════════════════════════════════════
   ATOMIC ORG PAGE — FLIP CARDS
   ═══════════════════════════════════════════ */

.ao-model {
  display: block;
  padding: 80px var(--section-x-pad, 80px);
  max-width: 1100px;
  margin: 0 auto;
}

.ao-model__header {
  margin-bottom: 48px;
  text-align: center;
}
.ao-model__header .section__headline {
  max-width: 700px;
  margin: 0 auto 24px;
}

.ao-model__intro {
  font-size: 15px;
  color: var(--hx-text-med);
  margin-top: 16px;
}

.ao-flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ao-flip-card {
  perspective: 900px;
  height: 240px;
  cursor: pointer;
}

.ao-flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.ao-flip-card--flipped .ao-flip-card__inner {
  transform: rotateY(180deg);
}

.ao-flip-card__front,
.ao-flip-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  backdrop-filter: var(--glass-blur);
  transition: border-color 0.2s;
}

.ao-flip-card:hover .ao-flip-card__front,
.ao-flip-card:focus .ao-flip-card__front {
  border-color: rgba(0,213,208,0.3);
}

.ao-flip-card__back {
  transform: rotateY(180deg);
  align-items: flex-start;
  text-align: left;
  justify-content: center;
}

.ao-flip-card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.ao-flip-card__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--hx-text-high);
  line-height: 1.45;
}

.ao-flip-card__body {
  font-size: 12.5px;
  color: var(--hx-text-med);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════
   ATOMIC ORG PAGE — NEW ROLES
   ═══════════════════════════════════════════ */

.ao-roles {
  padding: 80px var(--section-x-pad, 80px);
  max-width: 1200px;
  margin: 0 auto;
}

.ao-roles__header {
  margin-bottom: 48px;
}

.ao-roles__intro {
  font-size: 15px;
  color: var(--hx-text-med);
  margin-top: 16px;
}

.ao-roles__list {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
}

.ao-role {
  flex: 1;
  min-width: 130px;
  border-right: 1px solid var(--glass-border);
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: background 0.2s;
  outline: none;
}

.ao-role:last-child { border-right: none; }

.ao-role:hover,
.ao-role:focus {
  background: rgba(255,255,255,0.03);
}

.ao-role--brand  { border-left-color: #D1247A; }
.ao-role--outcome { border-left-color: #00D5D0; }
.ao-role--systems { border-left-color: #0058AB; }

.ao-role__row {
  display: grid;
  grid-template-columns: 1fr 24px;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "from chevron"
    "arrow chevron"
    "to chevron";
  row-gap: 5px;
  padding: 18px 20px;
}

.ao-role__from {
  grid-area: from;
  font-size: 13px;
  color: var(--hx-text-low);
  line-height: 1.35;
}

.ao-role__arrow {
  grid-area: arrow;
  color: var(--hx-text-low);
  font-size: 14px;
}

.ao-role__to {
  grid-area: to;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.ao-role--brand  .ao-role__to { color: #D1247A; }
.ao-role--outcome .ao-role__to { color: #00D5D0; }
.ao-role--systems .ao-role__to { color: #4e9fff; }

.ao-role__chevron {
  grid-area: chevron;
  align-self: center;
  justify-self: end;
  color: var(--hx-text-low);
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s ease;
  user-select: none;
}

.ao-role--open .ao-role__chevron {
  transform: rotate(45deg);
}

.ao-role__detail {
  display: none;
  padding: 0 20px 18px 20px;
}

.ao-role--open .ao-role__detail {
  display: block;
}

.ao-role__detail p {
  font-size: 13.5px;
  color: var(--hx-text-med);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════
   ATOMIC ORG PAGE — HUBS
   ═══════════════════════════════════════════ */

.ao-hubs {
  padding: 80px var(--section-x-pad, 80px);
  max-width: 1100px;
  margin: 0 auto;
}

.ao-hubs__header {
  margin-bottom: 0;
}

.ao-hubs__intro {
  font-size: 15px;
  color: var(--hx-text-med);
  margin-top: 16px;
}

/* Hub description cards */
.ao-hub-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
  align-items: start;
}

.ao-hub-card {
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

.ao-hub-card:hover,
.ao-hub-card:focus {
  border-color: rgba(255,255,255,0.2);
}

.ao-hub-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
}

.ao-hub-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ao-hub-card--cmo .ao-hub-card__dot        { background: #00D5D0; }
.ao-hub-card--brand .ao-hub-card__dot      { background: #D1247A; }
.ao-hub-card--acquisition .ao-hub-card__dot,
.ao-hub-card--retention .ao-hub-card__dot  { background: #00D5D0; }
.ao-hub-card--frontier .ao-hub-card__dot   { background: #4e9fff; }

.ao-hub-card__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--hx-text-high);
  flex: 1;
  line-height: 1.35;
}

.ao-hub-card__chevron {
  color: var(--hx-text-low);
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.3s ease;
  user-select: none;
}

.ao-hub-card--open .ao-hub-card__chevron {
  transform: rotate(45deg);
}

.ao-hub-card__body {
  display: none;
  padding: 0 18px 16px 36px;
}

.ao-hub-card--open .ao-hub-card__body {
  display: block;
}

.ao-hub-card__body p {
  font-size: 13px;
  color: var(--hx-text-med);
  line-height: 1.65;
}

/* CMO card — standalone above the diagram, centered */
.ao-hub-card--standalone {
  max-width: 360px;
  margin: 32px auto 0;
}


/* ═══════════════════════════════════════════
   ATOMIC ORG PAGE — RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 767px) {
  .ao-hero {
    grid-template-columns: 1fr;
    padding: 60px 24px 40px;
    gap: 36px;
  }

  .ao-hero__body {
    max-width: 100%;
  }

  .ao-diagram-placeholder {
    max-width: 100%;
    aspect-ratio: 3 / 2;
  }

  .ao-diagram-placeholder--hubs {
    aspect-ratio: 3 / 2;
  }

  .ao-shift  { padding: 60px 24px; }
  .ao-model  { padding: 60px 24px; }
  .ao-roles  { padding: 60px 24px; }
  .ao-hubs   { padding: 60px 24px; }

  .ao-shift__table {
    grid-template-columns: 1fr 28px 1fr;
  }

  .ao-shift__from,
  .ao-shift__to { padding: 14px 12px; font-size: 13px; }

  .ao-flip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ao-flip-card { height: 220px; }

  .ao-role__row {
    grid-template-columns: 1fr 20px;
    row-gap: 4px;
    padding: 14px;
  }

  .ao-hub-cards {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ao-hero {
    padding: 80px 48px 60px;
    gap: 32px;
  }

  .ao-flip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .ao-hub-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ═══════════════════════════════════════════
   MAAS PAGE — HERO
   ═══════════════════════════════════════════ */

.maas-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 100px var(--section-x-pad, 80px) 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.maas-hero__eyebrow {
  color: var(--cap-turquoise-600);
  margin-bottom: 20px;
}

.maas-hero__headline {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--hx-text-high);
  margin-bottom: 24px;
}

.maas-hero__body {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--hx-text-med);
  line-height: 1.65;
  max-width: 460px;
}

.maas-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.maas-hero__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.maas-hero__pillar-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.maas-pillar-pill {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 1px solid;
}

.maas-pillar-pill--sensing       { color: #D1247A; border-color: rgba(209,36,122,0.35); background: rgba(209,36,122,0.08); }
.maas-pillar-pill--generative     { color: #10A284; border-color: rgba(16,162,132,0.35); background: rgba(16,162,132,0.08); }
.maas-pillar-pill--data           { color: #896BED; border-color: rgba(137,107,237,0.35); background: rgba(137,107,237,0.08); }
.maas-pillar-pill--orchestration  { color: #4e9fff; border-color: rgba(0,88,171,0.35);  background: rgba(0,88,171,0.1); }


/* ═══════════════════════════════════════════
   MAAS PAGE — SERVICE CATALOGUE
   ═══════════════════════════════════════════ */

.maas-catalogue {
  padding: 80px var(--section-x-pad, 80px);
  max-width: 900px;
  margin: 0 auto;
}

.maas-catalogue__header {
  margin-bottom: 48px;
}

.maas-catalogue__intro {
  font-size: 15px;
  color: var(--hx-text-med);
  margin-top: 16px;
  max-width: 600px;
}

/* Pillar accordion */
.maas-pillars {
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
}

.maas-pillar {
  border-bottom: 1px solid var(--glass-border);
  border-left: 3px solid transparent;
  cursor: pointer;
  outline: none;
  transition: background 0.2s;
}

.maas-pillar:last-child { border-bottom: none; }

.maas-pillar:hover,
.maas-pillar:focus { background: rgba(255,255,255,0.03); }

.maas-pillar--sensing      { border-left-color: #D1247A; }
.maas-pillar--generative   { border-left-color: #10A284; }
.maas-pillar--data         { border-left-color: #896BED; }
.maas-pillar--orchestration { border-left-color: #0058AB; }

.maas-pillar__header {
  display: grid;
  grid-template-columns: 1fr auto 24px;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
}

.maas-pillar__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.maas-pillar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.maas-pillar--sensing .maas-pillar__dot      { background: #D1247A; }
.maas-pillar--generative .maas-pillar__dot   { background: #10A284; }
.maas-pillar--data .maas-pillar__dot         { background: #896BED; }
.maas-pillar--orchestration .maas-pillar__dot { background: #4e9fff; }

.maas-pillar__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--hx-text-high);
}

.maas-pillar__optimises {
  font-size: 12px;
  color: var(--hx-text-low);
}

.maas-pillar__optimises strong {
  color: var(--hx-text-med);
  font-weight: 400;
}

.maas-pillar__chevron {
  color: var(--hx-text-low);
  font-size: 20px;
  font-weight: 300;
  text-align: right;
  transition: transform 0.3s ease;
  user-select: none;
}

.maas-pillar--open .maas-pillar__chevron { transform: rotate(45deg); }

.maas-pillar__body {
  display: none;
  padding: 0 20px 20px 38px;
}

.maas-pillar--open .maas-pillar__body { display: block; }

.maas-pillar__desc {
  font-size: 13.5px;
  color: var(--hx-text-med);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Service list inside each pillar */
.maas-service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.maas-service-list__item {
  font-size: 13px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.maas-service-list__item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.maas-service-list__item--today {
  color: var(--hx-text-high);
}

.maas-service-list__item--today::before {
  background: #00D5D0;
}

.maas-service-list__item--today::after {
  content: 'Available today';
  font-size: 10px;
  font-weight: 500;
  color: #00D5D0;
  border: 1px solid rgba(0,213,208,0.4);
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: auto;
  white-space: nowrap;
}

.maas-service-list__item--soon {
  color: var(--hx-text-low);
}

.maas-service-list__item--soon::before {
  background: rgba(255,255,255,0.15);
}

/* Always-on callout */
.maas-always-on {
  margin-top: 16px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(0,213,208,0.04);
}

.maas-always-on__inner {
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: baseline;
}

.maas-always-on__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #00D5D0;
  flex-shrink: 0;
}

.maas-always-on__body {
  font-size: 13px;
  color: var(--hx-text-med);
  line-height: 1.55;
  flex: 1;
  min-width: 200px;
}

.maas-always-on__optimises {
  font-size: 12px;
  color: var(--hx-text-low);
  width: 100%;
}

.maas-always-on__optimises strong {
  color: var(--hx-text-med);
  font-weight: 400;
}


/* ═══════════════════════════════════════════
   MAAS PAGE — AVAILABLE TODAY
   ═══════════════════════════════════════════ */

.maas-today {
  padding: 80px var(--section-x-pad, 80px);
  max-width: 1200px;
  margin: 0 auto;
}

.maas-today__header {
  margin-bottom: 48px;
}

.maas-today__intro {
  font-size: 15px;
  color: var(--hx-text-med);
  margin-top: 16px;
  max-width: 600px;
}

.maas-today__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.maas-service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 28px 24px;
  backdrop-filter: var(--glass-blur);
}

.maas-service-card__pillar {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid;
}

.maas-service-card__pillar--sensing {
  color: #D1247A;
  border-color: rgba(209,36,122,0.4);
  background: rgba(209,36,122,0.08);
}

.maas-service-card__pillar--generative {
  color: #10A284;
  border-color: rgba(16,162,132,0.4);
  background: rgba(16,162,132,0.08);
}

.maas-service-card__title {
  font-size: 17px;
  font-weight: 500;
  color: var(--hx-text-high);
  line-height: 1.3;
  margin-bottom: 20px;
}

.maas-service-card__divider {
  height: 1px;
  background: var(--glass-border);
  margin-bottom: 20px;
}

.maas-service-card__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hx-text-low);
  margin-bottom: 8px;
}

.maas-service-card__what,
.maas-service-card__why {
  font-size: 13px;
  color: var(--hx-text-med);
  line-height: 1.65;
  margin-bottom: 20px;
}

.maas-service-card__why {
  margin-bottom: 0;
}


/* ═══════════════════════════════════════════
   MAAS PAGE — RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 767px) {
  .maas-hero {
    grid-template-columns: 1fr;
    padding: 60px 24px 40px;
    gap: 36px;
  }

  .maas-hero__body { max-width: 100%; }

  .maas-catalogue { padding: 60px 24px; }
  .maas-today     { padding: 60px 24px; }

  .maas-pillar__header {
    grid-template-columns: 1fr 20px;
  }

  .maas-pillar__optimises { display: none; }

  .maas-today__cards {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .maas-hero {
    padding: 80px 48px 60px;
    gap: 32px;
  }

  .maas-today__cards {
    grid-template-columns: 1fr 1fr;
  }
}


