/* ============================================================
   my.SOLIS — style.css
   The lotus journey: dark to light
   ============================================================ */

:root {
  --gold:         #F5B942;
  --gold-dim:     #C9923A;
  --gold-glow:    rgba(245,185,66,0.18);
  --blue:         #5B9DC9;
  --blue-glow:    rgba(91,157,201,0.18);
  --indigo:       #7B8FD4;
  --teal:         #5BBFB5;
  --teal-glow:    rgba(91,191,181,0.18);

  /* Dark scale */
  --d900: #0A0C1A;
  --d800: #0F121A;
  --d700: #151922;
  --d600: #1C2230;
  --d500: #232B3C;

  /* Light scale */
  --l100: #FDFAF4;
  --l200: #F6EFE2;
  --l300: #EDE5D4;

  /* Text */
  --tw:   rgba(255,255,255,0.93);
  --tm:   rgba(255,255,255,0.65);
  --ts:   rgba(255,255,255,0.52);
  --tdk:  #1A1F2B;
  --tmd:  #4A5568;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --r:     14px;
  --max:   1100px;
}

/* ============================================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--d900);
  color: var(--tw);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
em { font-style: italic; }

/* ============================================================ NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2.5rem;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 0.5px solid transparent;
}
.nav.scrolled {
  background: rgba(10,12,18,0.88);
  backdrop-filter: blur(16px);
  border-color: rgba(255,255,255,0.06);
}
.nav-logo-img { height: 34px; width: auto; }
.nav-links { display: flex; gap: 2rem; font-size: 15px; font-weight: 300; color: var(--tm); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--tw); }
.btn-nav {
  font-family: var(--sans); font-size: 14px; font-weight: 400;
  padding: 9px 24px; border-radius: 100px;
  border: 1px solid rgba(245,185,66,0.45);
  color: var(--gold);
  transition: background 0.2s, color 0.2s;
}
.btn-nav:hover { background: var(--gold); color: var(--d900); }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; z-index: 210;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--tw); border-radius: 2px;
  position: absolute; left: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.hamburger span:nth-child(1) { top: 2px; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(10,12,18,0.96);
  backdrop-filter: blur(24px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu-inner {
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
  text-align: center;
}
.mobile-menu-link {
  font-family: var(--serif); font-size: 28px; font-weight: 300;
  color: var(--tw); transition: color 0.2s;
}
.mobile-menu-link:hover { color: var(--gold); }
.mobile-menu-cta { margin-top: 1rem; }

/* ============================================================ HERO */
.hero {
  position: relative; min-height: 100vh;
  background: #0A0C1A;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 9rem 2rem 5rem;
  text-align: center; overflow: hidden;
}

/* Scattered ambient dots */
.scattered-dots { position: absolute; inset: 0; pointer-events: none; }
.s-dot {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  animation: sDrift 7s ease-in-out infinite;
}
.s-dot.gold { background: var(--gold); opacity: 0.45; }
@keyframes sDrift {
  0%,100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-18px); opacity: 0.55; }
}

/* The DOT character */
.hero-dot-system {
  position: relative; width: 88px; height: 88px;
  margin: 0 auto 2.75rem;
  animation: heroFloat 4.5s ease-in-out infinite;
  will-change: transform;
}
.hd-core {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold);
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 24px var(--gold-glow), 0 0 48px rgba(245,185,66,0.08);
}
.hd-orbit {
  position: absolute; border-radius: 50%;
  border: 1px solid var(--gold);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.hd-orbit-1 { width: 40px; height: 40px; opacity: 0.45; animation: orbitPulse 3s ease-in-out infinite 0s; }
.hd-orbit-2 { width: 64px; height: 64px; opacity: 0.2; animation: orbitPulse 3s ease-in-out infinite 0.5s; }
.hd-orbit-3 { width: 88px; height: 88px; opacity: 0.08; animation: orbitPulse 3s ease-in-out infinite 1s; }

@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes orbitPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-50%) scale(1.06); }
}

/* Hero DOT idle pulse — always breathing */
.hero-dot-system.idle-pulse .hd-core {
  animation: hdIdlePulse 3s ease-in-out infinite;
}
.hero-dot-system.idle-pulse .hd-orbit-1 {
  animation: hdOrbitBreathe 3s ease-in-out infinite;
}
@keyframes hdIdlePulse {
  0%,100% { transform: translate(-50%,-50%) scale(1.0); }
  50%     { transform: translate(-50%,-50%) scale(1.12); }
}
@keyframes hdOrbitBreathe {
  0%,100% { opacity: 0.45; transform: translate(-50%,-50%) scale(1); }
  50%     { opacity: 0.5;  transform: translate(-50%,-50%) scale(1.06); }
}

/* Hero DOT fast pulse when mouse moving */
.hero-dot-system.moving .hd-core {
  animation: hdIdlePulse 1.5s ease-in-out infinite;
}

/* Hero DOT mouse-follow transition */
.hero-dot-system.mouse-follow {
  transition: transform 0.15s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}

/* Mobile bounce keyframes */
@keyframes hdBounce1 {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(30px); }
  100% { transform: translateY(0); }
}
@keyframes hdBounce2 {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(18px); }
  100% { transform: translateY(0); }
}
@keyframes hdBounce3 {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(8px); }
  100% { transform: translateY(0); }
}
@keyframes hdSettlePulse {
  0%   { transform: scale(1.0); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1.0); }
}

/* Hero copy */
.hero-content { position: relative; z-index: 2; max-width: 760px; width: 100%; }

.hero-eyebrow {
  font-size: 11px; font-weight: 300; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); opacity: 0.75;
  margin-bottom: 1.75rem;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 300; line-height: 1.08;
  color: var(--tw); letter-spacing: -0.5px;
  margin-bottom: 0.15em;
}
.hero-typewriter-line { color: var(--gold); margin-bottom: 1.5rem; min-height: 1.1em; }
.tw-cursor {
  display: inline-block; color: var(--gold);
  animation: blink 0.85s step-end infinite;
  margin-left: 3px; font-weight: 300;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(17px, 2.4vw, 23px);
  color: var(--tm); margin-bottom: 1.5rem;
}
.hero-body {
  font-size: 18px; font-weight: 300; line-height: 1.75;
  color: var(--tm); max-width: 540px; margin: 0 auto 2.75rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ts);
}
.scroll-line {
  width: 1px; height: 40px; background: var(--ts);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.1%{ transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================ BUTTONS */
.btn-gold {
  display: inline-block; font-family: var(--sans);
  font-size: 14px; font-weight: 500;
  padding: 13px 32px; border-radius: 100px;
  background: var(--gold); color: var(--d900);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,185,66,0.32); }

.btn-outline-light {
  display: inline-block; font-family: var(--sans);
  font-size: 14px; font-weight: 400;
  padding: 13px 32px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--tw);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

.btn-gold-dark {
  display: inline-block; font-family: var(--sans);
  font-size: 14px; font-weight: 500;
  padding: 13px 32px; border-radius: 100px;
  background: var(--d700); color: var(--tw);
  border: 1px solid rgba(245,185,66,0.35);
  transition: background 0.2s, border-color 0.2s;
}
.btn-gold-dark:hover { background: var(--d600); border-color: var(--gold); }

.btn-outline-dark {
  display: inline-block; font-family: var(--sans);
  font-size: 14px; font-weight: 400;
  padding: 13px 32px; border-radius: 100px;
  border: 1px solid rgba(26,31,43,0.3); color: var(--tdk);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-dark:hover { background: rgba(26,31,43,0.05); border-color: rgba(26,31,43,0.5); }

/* ============================================================ FADE-UP ON LOAD */
.fade-up {
  opacity: 0; transform: translateY(22px);
  animation: fadeUp 0.9s var(--ease) forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================ SCROLL REVEAL */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================ CONTAINER */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 680px; margin: 0 auto; padding: 0 2rem; }

/* ============================================================ SECTION SHARED */
.section-header { text-align: center; margin-bottom: 4.5rem; }
.section-eyebrow {
  font-size: 11px; font-weight: 400; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); opacity: 0.75;
  margin-bottom: 1rem;
}
.brand-preserve { text-transform: none; }
.doors-hint {
  font-size: 13px; font-weight: 300; color: var(--ts);
  margin-top: 0.75rem; letter-spacing: 0.01em;
}
.section-h2 {
  font-family: var(--serif); font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.3px;
  margin-bottom: 1.25rem;
}
.section-h2-dark { color: var(--tdk); }
.section-sub {
  font-size: 18px; font-weight: 300; line-height: 1.7;
  color: var(--tm); max-width: 520px; margin: 0 auto;
}
.section-sub-dark { color: var(--tmd); }

/* ============================================================ PROBLEM & SOLUTION */
.section-problem {
  background: linear-gradient(to bottom, var(--d900) 0%, var(--d800) 100%);
  padding: 8rem 2rem;
  text-align: center;
}
.problem-inner { max-width: 600px; margin: 0 auto; }
.problem-dots {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 3rem;
}
.p-dot {
  border-radius: 50%; background: var(--gold);
  animation: pDotDrift 3s ease-in-out infinite;
}
.p-dot-1 { width: 6px; height: 6px; opacity: 0.2; animation-delay: 0s; }
.p-dot-2 { width: 8px; height: 8px; opacity: 0.35; animation-delay: 0.4s; }
.p-dot-3 { width: 5px; height: 5px; opacity: 0.15; animation-delay: 0.8s; }
.p-dot-4 { width: 7px; height: 7px; opacity: 0.3; animation-delay: 1.2s; }
.p-dot-5 { width: 4px; height: 4px; opacity: 0.1; animation-delay: 1.6s; }

@keyframes pDotDrift {
  0%,100% { transform: translate(0, 0); }
  25% { transform: translate(8px, -6px); }
  50% { transform: translate(-4px, 4px); }
  75% { transform: translate(6px, 2px); }
}

.problem-h2 {
  font-family: var(--serif); font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 300; line-height: 1.2; color: var(--tw);
  margin-bottom: 1.5rem;
}
.problem-body {
  font-size: 18px; font-weight: 300; line-height: 1.8;
  color: var(--tm); margin-bottom: 1rem;
}
.problem-emphasis {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--gold); opacity: 0.85;
  margin-top: 1.5rem;
}

.section-solution {
  background: linear-gradient(to bottom, var(--d800) 0%, var(--d700) 100%);
  padding: 7rem 2rem 8rem;
  text-align: center;
}
.solution-inner { max-width: 600px; margin: 0 auto; }

.solution-dot-anim {
  position: relative; width: 120px; height: 120px;
  margin: 0 auto 3rem;
}
.sol-core {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  box-shadow: 0 0 20px var(--gold-glow);
}
.sol-inner-ring {
  position: absolute; width: 60px; height: 60px;
  border-radius: 50%; border: 1px solid rgba(245,185,66,0.2);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.sol-outer-ring {
  position: absolute; width: 100px; height: 100px;
  border-radius: 50%; border: 1px solid rgba(91,157,201,0.15);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: solRingSpin 20s linear infinite;
}
@keyframes solRingSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.sol-team-dot {
  position: absolute; width: 8px; height: 8px;
  border-radius: 50%; background: var(--blue);
  top: 50%; left: 50%;
  transform: rotate(var(--angle)) translateY(-50px) translate(-50%,-50%);
  box-shadow: 0 0 8px var(--blue-glow);
  animation: solTeamPulse 2.5s ease-in-out infinite;
}
@keyframes solTeamPulse {
  0%,100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.solution-h2 {
  font-family: var(--serif); font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 300; line-height: 1.2; color: var(--tw);
  margin-bottom: 1.5rem;
}
.solution-body {
  font-size: 18px; font-weight: 300; line-height: 1.8;
  color: var(--tm);
}

/* ============================================================ DOORS */
.section-doors {
  background: linear-gradient(to bottom, #0A0C1A 0%, #0F1E35 100%);
  padding: 8rem 2rem 7rem;
}
.doors-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem;
}
.door {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.035);
  border: 0.5px solid rgba(255,255,255,0.09);
  border-radius: var(--r);
  padding: 2.25rem 1.75rem;
  cursor: pointer;
  transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s;
}
.door:hover { transform: translateY(-7px); }
.door.door-featured { border-color: rgba(91,157,201,0.2); background: rgba(91,157,201,0.04); }
.door-glow {
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  top: -80px; left: -60px; filter: blur(60px); pointer-events: none; opacity: 0;
  transition: opacity 0.4s;
}
.door:hover .door-glow { opacity: 1; }
.glow-gold { background: rgba(245,185,66,0.12); }
.glow-blue { background: rgba(91,157,201,0.12); }
.glow-indigo { background: rgba(123,143,212,0.12); }
.glow-teal { background: rgba(91,191,181,0.12); }

.door-dot-wrap {
  position: relative; width: 38px; height: 38px; margin-bottom: 1.75rem;
}
.dd-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
}
.dd-core {
  width: 14px; height: 14px; border-radius: 50%;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  transition: transform 0.3s var(--ease);
}
.door:hover .dd-core { transform: translate(-50%,-50%) scale(1.4); }
.dd-gold { background: var(--gold); box-shadow: 0 0 12px var(--gold-glow); }
.dd-blue { background: var(--blue); box-shadow: 0 0 12px var(--blue-glow); }
.dd-indigo { background: var(--indigo); }
.dd-teal { background: var(--teal); box-shadow: 0 0 12px var(--teal-glow); }

.door h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  line-height: 1.3; color: var(--tw); margin-bottom: 0.85rem;
}
.door p { font-size: 15px; font-weight: 300; line-height: 1.65; color: var(--tm); margin-bottom: 1.25rem; }
.door-list { list-style: none; margin-bottom: 1.75rem; }
.door-list li {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.72);
  padding: 5px 0; border-bottom: 0.5px solid rgba(255,255,255,0.05);
}
.door-list li::before { content: "·  "; color: var(--gold); }
.door-link { font-size: 13px; color: var(--gold); letter-spacing: 0.02em; }

/* Door selection states */
.door.door-selected {
  transform: translateY(-7px);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.door.door-selected .door-glow { opacity: 1; }
.door.door-selected .dd-core { transform: translate(-50%,-50%) scale(1.4); }
.door.door-dimmed { opacity: 0.45; pointer-events: auto; background: rgba(255,255,255,0.02); border-color: rgba(255,255,255,0.06); }
.door.door-dimmed:hover { opacity: 0.65; transform: translateY(-4px); }

.door.door-selected[data-door="0"] { border: 1px solid rgba(245,185,66,0.35); background: rgba(245,185,66,0.08); }
.door.door-selected[data-door="1"] { border: 1px solid rgba(91,157,201,0.35); background: rgba(91,157,201,0.08); }
.door.door-selected[data-door="2"] { border: 1px solid rgba(123,143,212,0.35); background: rgba(123,143,212,0.08); }
.door.door-selected[data-door="3"] { border: 1px solid rgba(45,212,191,0.35); background: rgba(45,212,191,0.08); }

/* Demo frosted glass container */
.demo-glass {
  border-radius: 20px; padding: 3rem;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.demo-glass-0 { background: rgba(245,185,66,0.06); border-color: rgba(245,185,66,0.2); }
.demo-glass-1 { background: rgba(91,157,201,0.06); border-color: rgba(91,157,201,0.2); }
.demo-glass-2 { background: rgba(123,143,212,0.06); border-color: rgba(123,143,212,0.2); }
.demo-glass-3 { background: rgba(45,212,191,0.06); border-color: rgba(45,212,191,0.2); }

/* Demo view dot */
.demo-view-dot {
  width: 8px; height: 8px; border-radius: 50%;
  display: inline-block; margin-right: 8px; vertical-align: middle;
  background: #F5B942; transition: background 0.3s;
}
.demo-view-label {
  border-left: 3px solid rgba(245,185,66,0.6);
  padding-left: 12px; transition: border-color 0.3s;
}

/* ============================================================ DEMO SECTION */
.demo-section {
  margin-top: 5rem;
}
.demo-header {
  text-align: center; margin-bottom: 3rem;
}
.demo-card {
  position: relative;
  min-height: 300px;
}
.demo-state {
  display: none;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.demo-state-active {
  display: grid;
  opacity: 1;
}
.demo-state-fading {
  opacity: 0;
}

/* Demo left column */
.demo-left {
  padding-top: 1rem;
}
.demo-view-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ts); display: block; margin-bottom: 0.35rem;
}
.demo-audience {
  font-family: var(--serif); font-size: 24px; font-weight: 400;
  color: var(--tw); display: block; margin-bottom: 1rem;
}
.demo-desc {
  font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--tm);
}

/* Demo right column — card variants */
.demo-right .ui-card { margin: 0; }

.ui-demo-box {
  padding: 0.85rem 1rem; border-radius: 8px; margin-bottom: 0.5rem;
}
.ui-demo-box .ui-msg-label { margin-bottom: 0.4rem; }
.ui-demo-box p { font-size: 13px; font-weight: 300; line-height: 1.55; color: var(--tm); }

/* Standard demo container colours — left border accent + matching label */
.demo-box-filtered { background: rgba(255,255,255,0.03); border: none; border-left: 4px solid var(--blue); }
.demo-box-filtered .ui-msg-label { color: var(--blue); }
.demo-box-coaching { background: rgba(255,255,255,0.03); border: none; border-left: 4px solid #F5B942; }
.demo-box-coaching .ui-msg-label { color: #F5B942; }
.demo-box-raw { background: rgba(255,255,255,0.03); border: none; border-left: 4px solid #888888; }
.demo-box-raw .ui-msg-label { color: #888888; }

/* Demo team list */
.demo-team-list { margin-top: 0.4rem; }
.demo-team-row {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.05);
  font-size: 13px; font-weight: 300;
}
.demo-team-name { color: var(--tw); min-width: 80px; }
.demo-team-role { color: var(--ts); flex: 1; }

/* Demo activity row */
.demo-activity-row { padding: 0.75rem 0 0.5rem; }
.demo-activity-text { font-size: 12px; font-weight: 300; color: var(--ts); margin-top: 0.25rem; }

/* Demo card note */
.demo-card-note {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55);
  margin-top: 0.75rem; padding-top: 0.75rem;
  border-top: 0.5px solid rgba(255,255,255,0.05);
  line-height: 1.5;
}

/* Chat messages (Door 3) */
.demo-chat { margin-bottom: 0.5rem; }
.demo-chat-msg {
  padding: 0.85rem 1rem; border-radius: 8px; margin-bottom: 0.35rem;
}
.demo-chat-sent { background: rgba(255,255,255,0.03); border: none; border-left: 4px solid var(--blue); }
.demo-chat-sent .demo-chat-label { color: var(--blue); }
.demo-chat-received { background: rgba(255,255,255,0.03); border: none; border-left: 4px solid #888888; }
.demo-chat-received .demo-chat-label { color: #888888; }
.demo-chat-label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); font-weight: 500; display: block; margin-bottom: 0.4rem;
}
.demo-chat-msg p { font-size: 13px; font-weight: 300; line-height: 1.55; color: var(--tm); }
.demo-chat-coaching {
  font-size: 11px; font-weight: 300; color: var(--ts);
  padding: 0.3rem 0 0.5rem; font-style: italic;
}

/* Teal pulse (Door 4) */
.ui-status-dot.indigo { background: var(--indigo); }
.ui-status-dot.teal { background: #2DD4BF; }
.teal-pulse { animation: tealPulse 2s ease infinite; }
@keyframes tealPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45,212,191,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(45,212,191,0); }
}

.demo-timestamp {
  font-size: 11px; font-weight: 300; color: var(--ts);
  display: block; margin-top: 0.5rem;
}
.demo-respond-btn {
  display: inline-block; margin-top: 0.75rem;
  padding: 0.5rem 1.2rem; border-radius: 8px;
  background: rgba(45,212,191,0.12); border: 0.5px solid rgba(45,212,191,0.3);
  color: #2DD4BF; font-family: var(--sans); font-size: 12px; font-weight: 400;
  cursor: default; transition: background 0.2s;
}

/* Original message shown state */
.demo-original-revealed {
  padding: 0.85rem 1rem; border-radius: 8px; margin-top: 0.5rem;
  background: rgba(255,255,255,0.03); border: none; border-left: 4px solid #888888;
}
.demo-original-revealed .ui-msg-label { margin-bottom: 0.4rem; color: #888888; }
.demo-original-revealed p { font-size: 13px; font-weight: 300; line-height: 1.55; color: var(--tm); }

/* ============================================================ MODAL */
.original-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,12,18,0.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.original-modal-overlay.modal-open {
  opacity: 1; visibility: visible;
}
.original-modal {
  background: var(--d700);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 2.5rem; max-width: 440px; width: 90%;
  text-align: center;
  transform: scale(0.95);
  transition: transform 0.25s var(--ease);
}
.original-modal-overlay.modal-open .original-modal {
  transform: scale(1);
}
.original-modal-icon {
  font-size: 32px; display: block; margin-bottom: 1rem;
  color: var(--gold);
}
.original-modal-heading {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--tw); margin-bottom: 0.75rem;
}
.original-modal-body {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: var(--tm); line-height: 1.65; margin-bottom: 1.75rem;
}
.original-modal-actions {
  display: flex; flex-direction: column; gap: 0.75rem; align-items: center;
}
.original-modal-actions .btn-gold,
.original-modal-actions .btn-outline-light {
  width: 100%; max-width: 280px; text-align: center;
}
.original-modal-actions .btn-outline-light {
  color: var(--d700);
}

/* ============================================================ FEATURES */
.section-features {
  background: linear-gradient(to bottom, #0F1E35 0%, #1E4A70 100%);
  padding: 8rem 2rem;
}
.section-features .section-h2 { color: var(--tw); }

.feature-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  margin-bottom: 7rem;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-flip { direction: rtl; }
.feature-flip > * { direction: ltr; }

.feature-pill {
  display: inline-block; font-family: var(--sans);
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue);
  background: rgba(91,157,201,0.1);
  border: 0.5px solid rgba(91,157,201,0.2);
  border-radius: 100px; padding: 4px 14px;
  margin-bottom: 1.25rem;
}
.feature-pill-gold { color: var(--gold); background: rgba(245,185,66,0.1); border-color: rgba(245,185,66,0.2); }

.feature-h3 {
  font-family: var(--serif); font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 300; line-height: 1.2; color: var(--tw);
  margin-bottom: 1.25rem;
}
.feature-p { font-size: 17px; font-weight: 300; line-height: 1.8; color: var(--tm); margin-bottom: 1rem; }
.feature-supporting { font-size: 14px; font-weight: 300; color: var(--ts); margin-top: 0.25rem; margin-bottom: 1rem; }
.feature-link { font-size: 13px; color: var(--gold); display: inline-block; margin-top: 0.5rem; }
.feature-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* UI Cards — placeholder until real screenshots */
.ui-card {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: var(--r); padding: 1.75rem;
}
.ui-card-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 1.25rem;
}
.ui-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.ui-status-dot.red   { background: #FC8181; }
.ui-status-dot.gold  { background: var(--gold); }
.ui-status-dot.blue  { background: var(--blue); }
.ui-card-label { font-size: 12px; color: var(--ts); letter-spacing: 0.06em; }

.ui-msg {
  border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 0.75rem;
}
.ui-msg.raw   { background: rgba(255,255,255,0.03); border: none; border-left: 4px solid #888888; }
.ui-msg.raw .ui-msg-label { color: #888888; }
.ui-msg.filtered { background: rgba(255,255,255,0.03); border: none; border-left: 4px solid var(--blue); }
.ui-msg.filtered .ui-msg-label { color: var(--blue); }
.ui-msg-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75); font-weight: 500; display: block; margin-bottom: 0.5rem; }
.ui-msg p { font-size: 13px; font-weight: 300; line-height: 1.55; color: var(--tm); }
.ui-arrow-row { font-size: 12px; color: var(--blue); text-align: center; margin: 0.5rem 0; opacity: 0.6; }
.ui-coaching-note { padding: 0.75rem 1rem; margin-top: 0.5rem; border-radius: 8px; background: rgba(255,255,255,0.03); border: none; border-left: 4px solid #F5B942; }
.ui-coaching-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #F5B942; font-weight: 500; display: block; margin-bottom: 0.4rem; }
.ui-coaching-note p { font-size: 12px; font-weight: 300; line-height: 1.55; color: var(--tm); }
.ui-view-original {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  color: rgba(91,157,201,0.85); margin-top: 0.75rem; padding: 0;
  text-decoration: underline; text-underline-offset: 3px;
  opacity: 1; transition: color 0.2s;
  display: inline-block; position: relative; z-index: 10;
  pointer-events: auto;
}
.ui-view-original:hover { color: var(--blue); }

/* my.TEAM orbit visual */
.team-orbit {
  position: relative; width: 380px; height: 380px; margin: 0 auto 1rem;
}

/* Ring guide circles */
.team-ring-guide {
  position: absolute; top: 50%; left: 50%; border-radius: 50%;
  transform: translate(-50%, -50%); pointer-events: none;
}
.team-ring-guide--inner {
  width: 180px; height: 180px;
  border: 1px solid rgba(255,255,255,0.05);
}
.team-ring-guide--outer {
  width: 310px; height: 310px;
  border: 1px solid rgba(255,255,255,0.03);
}

/* Connecting lines SVG */
.team-lines-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  animation: orbitCW 30s linear infinite;
}

/* Centre */
.team-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px; z-index: 3;
}
.team-you-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold-glow);
  animation: teamPulse 3s ease-in-out infinite;
}
.team-center span {
  font-size: 11px; color: var(--gold); letter-spacing: 0.08em;
}

@keyframes teamPulse {
  0%, 100% { box-shadow: 0 0 18px var(--gold-glow); }
  50%      { box-shadow: 0 0 30px var(--gold-glow), 0 0 50px rgba(245,185,66,0.15); }
}

/* Inner ring group */
.team-inner-ring {
  position: absolute; inset: 0;
  animation: orbitCW 30s linear infinite;
  z-index: 2;
}
@keyframes orbitCW {
  to { transform: rotate(360deg); }
}

.team-member-inner {
  position: absolute; top: 50%; left: 50%;
  transform-origin: 0 0;
  transform: rotate(var(--a)) translateY(-90px);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.team-m-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: #5B9DC9; box-shadow: 0 0 10px var(--blue-glow);
}
.team-member-inner span {
  font-size: 13px; color: rgba(255,255,255,0.72);
  white-space: nowrap;
  /* counter-rotate: undo ring spin + undo own placement angle */
  animation: counterCW 30s linear infinite;
  transform: rotate(calc(-1 * var(--a)));
}
@keyframes counterCW {
  to { transform: rotate(calc(-1 * var(--a) - 360deg)); }
}

/* Outer ring group */
.team-outer-ring {
  position: absolute; inset: 0;
  animation: orbitCCW 50s linear infinite;
  z-index: 1;
}
@keyframes orbitCCW {
  to { transform: rotate(-360deg); }
}

.team-member-outer {
  position: absolute; top: 50%; left: 50%;
  transform-origin: 0 0;
  transform: rotate(var(--a)) translateY(-155px);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.team-m-dot-outer {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(45,212,191,0.7);
  box-shadow: 0 0 8px rgba(45,212,191,0.25);
}
.team-member-outer span {
  font-size: 11px; color: rgba(255,255,255,0.5);
  white-space: nowrap;
  opacity: 1;
  animation: counterCCW 50s linear infinite;
  transform: rotate(calc(-1 * var(--a)));
}
@keyframes counterCCW {
  to { transform: rotate(calc(-1 * var(--a) + 360deg)); }
}

/* Mobile sizing */
@media (max-width: 768px) {
  .team-orbit { width: 300px; height: 300px; }
  .team-ring-guide--inner { width: 144px; height: 144px; }
  .team-ring-guide--outer { width: 248px; height: 248px; }
  .team-member-inner { transform: rotate(var(--a)) translateY(-72px); }
  .team-member-outer { transform: rotate(var(--a)) translateY(-124px); }
}

/* my.VAULT */
.vault-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 0.75rem; }
.vault-row {
  background: rgba(255,255,255,0.03); border-radius: 9px;
  border: 0.5px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.vault-row.vault-open { border-color: rgba(255,255,255,0.10); }
.vault-row-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 0.9rem;
  cursor: pointer; user-select: none;
}
.vault-row-header:hover { background: rgba(255,255,255,0.02); }
.vault-row-left { display: flex; flex-direction: column; gap: 2px; }
.vault-row-right { display: flex; align-items: center; gap: 0.6rem; }
.vault-date { font-size: 12.5px; font-weight: 300; color: var(--tm); }
.vault-type {
  font-size: 11px; font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.06em; color: rgba(245,185,66,0.70);
}
.vault-tag { font-size: 11px; padding: 3px 10px; border-radius: 100px; }
.vault-tag.stored { background: rgba(91,157,201,0.1); color: var(--blue); border: 0.5px solid rgba(91,157,201,0.2); }
.vault-tag.flagged { background: rgba(245,185,66,0.1); color: var(--gold); border: 0.5px solid rgba(245,185,66,0.2); }

/* Chevron */
.vault-chevron {
  font-size: 13px; color: var(--ts);
  display: inline-block;
  transition: transform 0.3s ease;
}
.vault-open .vault-chevron { transform: rotate(90deg); }

/* Expandable body */
.vault-row-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.vault-open .vault-row-body { max-height: 320px; }
.vault-row-content { padding: 0 0.9rem 0.8rem; }

/* Labels & detail text */
.vault-label {
  display: block;
  font-size: 11px; font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.06em; color: rgba(245,185,66,0.70);
  margin-bottom: 3px; margin-top: 0.55rem;
}
.vault-label:first-child { margin-top: 0; }
.vault-detail {
  font-size: 13px; font-weight: 300; color: var(--tm);
  line-height: 1.55; margin: 0;
}
.vault-detail em { font-style: italic; color: var(--blue); }
.vault-muted {
  font-size: 12px; font-weight: 300; color: var(--ts);
  margin: 0.35rem 0 0;
}

/* File pills */
.vault-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 2px; }
.vault-pill {
  font-size: 11.5px; font-weight: 400; color: var(--tm);
  background: rgba(91,157,201,0.08);
  border: 0.5px solid rgba(91,157,201,0.20);
  border-radius: 100px; padding: 3px 11px;
}

/* Photo placeholder */
.vault-photo-placeholder {
  width: 200px; height: 120px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(91,157,201,0.08);
  border: 0.5px dashed rgba(91,157,201,0.30);
  font-size: 13px; color: var(--tm);
}

/* Footer */
.vault-footer-note { font-size: 12px; color: rgba(255,255,255,0.55); text-align: center; letter-spacing: 0.05em; margin-top: 0.5rem; margin-bottom: 0.15rem; }
.vault-footer-own {
  font-size: 12px; font-weight: 300; color: var(--tm);
  text-align: center; letter-spacing: 0.02em; margin: 0;
}

/* my.INSIGHT -- dashboard card */
.insight-dash {
  background: #F8F5EF !important;
  border: 0.5px solid rgba(0,0,0,0.08) !important;
  border-radius: var(--r) !important;
  padding: 1.1rem 1.2rem 1rem !important;
}
.id-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.65rem;
}
.id-brand {
  font-family: var(--sans); font-size: 14px; font-weight: 400;
  color: #4A5568; letter-spacing: 0.01em;
}
.id-brand strong { color: var(--gold); font-weight: 700; }
.id-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(91,157,201,0.15); border: 0.5px solid rgba(91,157,201,0.25);
  font-size: 11px; color: var(--blue); font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.id-tabs {
  display: flex; gap: 1rem; border-bottom: 0.5px solid rgba(0,0,0,0.08);
  padding-bottom: 0.5rem; margin-bottom: 0.85rem;
}
.id-tab {
  font-family: var(--sans); font-size: 11.5px; color: rgba(26,31,43,0.45);
  cursor: default; padding-bottom: 4px; border-bottom: 2px solid transparent;
  letter-spacing: 0.02em;
}
.id-tab--active {
  color: #1A1F2B; font-weight: 600;
  border-bottom-color: var(--gold);
}
.id-greeting {
  font-family: var(--serif); font-size: 18px; color: #1A1F2B;
  margin-bottom: 0.85rem; font-weight: 500;
}
.id-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem;
  margin-bottom: 0.75rem;
}
.id-mini {
  background: #fff; border: 0.5px solid rgba(0,0,0,0.07);
  border-radius: 10px; padding: 0.65rem 0.75rem;
}
.id-mini-icon {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  margin-bottom: 0.35rem;
}
.id-mini-title {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  color: #1A1F2B; margin-bottom: 2px;
}
.id-mini-sub {
  font-family: var(--sans); font-size: 11px; color: #4A5568;
}
.id-event {
  display: flex; align-items: center; gap: 8px;
  padding: 0.55rem 0.75rem; margin-bottom: 0.6rem;
  background: rgba(91,157,201,0.08); border-radius: 8px;
}
.id-event-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
}
.id-event-text {
  font-family: var(--sans); font-size: 12px; color: #1A1F2B;
}
.id-note {
  font-size: 11px; color: rgba(26,31,43,0.45);
  text-align: center; letter-spacing: 0.04em;
}

.placeholder-note {
  font-size: 11px; color: rgba(245,185,66,0.4);
  text-align: center; margin-top: 1.25rem;
  border-top: 0.5px dashed rgba(245,185,66,0.15);
  padding-top: 0.75rem; letter-spacing: 0.04em;
}

/* ============================================================ AI SECTION */
.section-ai {
  background: linear-gradient(to bottom, #1E4A70, #2A5F8A);
  padding: 5rem 2rem;
}
.ai-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  background: rgba(255,255,255,0.025);
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: var(--r); padding: 3rem;
  align-items: center;
}
.ai-levels { display: flex; flex-direction: column; gap: 0.75rem; }
.ai-level {
  display: grid; grid-template-columns: 10px 24px 90px 1fr;
  align-items: center; gap: 12px;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.02); border-radius: 9px;
  border: 0.5px solid rgba(255,255,255,0.05);
}
.ai-dot { width: 10px; height: 10px; border-radius: 50%; }
.ai-num { font-size: 12px; color: var(--ts); font-weight: 500; }
.ai-lbl { font-size: 13px; color: var(--tw); font-weight: 400; }
.ai-desc { font-size: 12px; color: var(--ts); font-weight: 300; }

/* AI Chat Conversations */
.ai-chat-wrapper {
  position: relative;
  margin-top: 1.5rem;
  min-height: 180px;
}
.ai-chat-state {
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ai-chat-state.ai-chat-active {
  display: flex;
  opacity: 1;
}
.ai-chat-state.ai-chat-fading {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.ai-chat-ts {
  font-size: 11px;
  color: var(--ts);
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}
.ai-bubble {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  max-width: 88%;
}
.ai-bubble-user {
  align-self: flex-end;
  background: rgba(245,185,66,0.08);
  color: var(--tw);
  border: 0.5px solid rgba(245,185,66,0.12);
}
.ai-bubble-ai {
  align-self: flex-start;
  background: rgba(255,255,255,0.05);
  color: var(--tw);
  border: 0.5px solid rgba(255,255,255,0.06);
}
.ai-bubble-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--ts);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.15rem;
}
.ai-chat-note {
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: var(--ts);
  margin-top: 1.25rem;
}

/* ============================================================ QUOTE */
.section-quote {
  background:
    radial-gradient(ellipse at 50% 55%, rgba(221,184,122,0.15) 0%, transparent 60%),
    linear-gradient(to bottom, #2A5F8A 0%, #4A7FA0 20%, #8B9EB5 45%, #C4A882 65%, #DDB87A 80%, #EDD49A 100%);
  padding: 9rem 2rem;
}
.quote-wrap { text-align: center; }
.quote-dots {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 2.5rem;
}
.quote-dots span {
  display: block; border-radius: 50%; background: var(--gold);
}
blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(21px, 3.5vw, 34px); font-weight: 300;
  line-height: 1.55; color: #2D1F0E;
  margin-bottom: 1.75rem; max-width: 660px; margin-left: auto; margin-right: auto;
}
cite { font-size: 13px; color: rgba(45,31,14,0.6); font-style: normal; letter-spacing: 0.05em; }

/* ============================================================ CTA DOORS (per-audience) */
.section-cta-doors {
  background: linear-gradient(to bottom, #EDD49A, #FDF6E9);
  padding: 6rem 2rem;
}
.cta-doors-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem;
}
.cta-door {
  background: var(--l100);
  border: 0.5px solid rgba(0,0,0,0.08);
  border-radius: var(--r);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.cta-door:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.cta-door h4 {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--tdk); margin-bottom: 0.75rem;
}
.cta-door p {
  font-size: 14px; font-weight: 300; line-height: 1.65;
  color: var(--tmd); margin-bottom: 1.5rem;
}

/* ============================================================ CTA */
.section-cta {
  background: #FDF6E9; padding: 8rem 2rem;
  text-align: center;
}
.cta-inner { display: flex; flex-direction: column; align-items: center; }

.cta-h2 {
  font-family: var(--serif); font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 300; line-height: 1.1; color: var(--tdk);
  margin-bottom: 1.25rem; letter-spacing: -0.3px;
}
.cta-body {
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: var(--tmd); margin-bottom: 2.5rem; max-width: 500px;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.cta-mission {
  font-size: 14px; font-weight: 300; line-height: 1.75;
  color: var(--tmd); opacity: 0.7; text-align: center;
  max-width: 480px; border-top: 0.5px solid rgba(0,0,0,0.1);
  padding-top: 2rem;
}

/* ============================================================ FOOTER */
.footer { background: #0A0C1A; padding: 5rem 2rem 2.5rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3rem; margin-bottom: 3.5rem;
  padding-bottom: 3rem; border-bottom: 0.5px solid rgba(255,255,255,0.06);
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-logo { height: 28px; width: auto; opacity: 0.6; }
.footer-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; font-weight: 300; line-height: 1.7;
  color: var(--ts);
}
.footer-nav { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-col-title {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); opacity: 0.65; margin-bottom: 0.25rem;
}
.footer-col a { font-size: 13px; font-weight: 300; color: var(--ts); transition: color 0.2s; }
.footer-col a:hover { color: var(--tw); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 12px; font-weight: 300; color: var(--ts); opacity: 0.45;
}

/* ============================================================ LOTUS ICON (CTA) */
.lotus-icon {
  width: 120px;
  height: 120px;
  display: block;
  margin: 0 auto 2rem;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.lotus-icon.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================ RESPONSIVE */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .btn-nav-desktop { display: none; }
  .hamburger { display: block; }

  .doors-grid { grid-template-columns: 1fr 1fr; max-width: 680px; margin: 0 auto; }
  .cta-doors-grid { grid-template-columns: 1fr 1fr; max-width: 680px; margin: 0 auto; }
  .feature-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-flip { direction: ltr; }
  .ai-card { grid-template-columns: 1fr; gap: 2rem; }
  .demo-state { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 600px) {
  .nav { padding: 1rem 1.5rem; }
  .hero { padding: 8rem 1.5rem 5rem; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: center; }
  .section-doors, .section-features, .section-cta,
  .section-problem, .section-solution,
  .section-cta-doors { padding-left: 1.5rem; padding-right: 1.5rem; }
  .doors-grid { grid-template-columns: 1fr; max-width: 480px; }
  .cta-doors-grid { grid-template-columns: 1fr; max-width: 480px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}

/* ============================================================ FOR ORGANISATIONS SECTION (index.html) */
.section-orgs {
  background: #0D1121;
  padding: 6rem 2rem;
  text-align: center;
  margin: 0;
}
.section-orgs-inner {
  max-width: 640px;
  margin: 0 auto;
}
.orgs-heading {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin: 0 0 2.5rem;
}
.orgs-benefits {
  list-style: none;
  padding: 0;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 480px;
}
.orgs-benefits li {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}
.orgs-benefits li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.orgs-cta {
  display: inline-block;
  padding: 13px 32px;
  background: var(--gold);
  color: #0A0C1A;
  border: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.orgs-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,185,66,0.3);
}

/* ============================================================ TESTIMONIAL CAROUSEL (index.html) */
.testimonial-section {
  background: linear-gradient(to bottom, #EDD49A, #FAEFD0);
  padding: 7rem 2rem;
  text-align: center;
  margin: 0;
}
.testimonial-carousel {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.testimonial-slides {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 26px);
  color: #1A1F2B;
  line-height: 1.6;
  margin: 0 auto 1.5rem;
  max-width: 640px;
}
.testimonial-attribution {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  color: rgba(26,31,43,0.55);
  letter-spacing: 0.02em;
  margin: 0;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 3rem;
}
.testimonial-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(26,31,43,0.18);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.testimonial-dot.active {
  background: #F5B942;
  transform: scale(1.25);
}
.testimonial-dot:hover { background: rgba(245,185,66,0.7); }

@media (max-width: 600px) {
  .section-orgs { padding: 4rem 1.5rem; }
  .testimonial-section { padding: 5rem 1.5rem; }
}

/* ============================================================ REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
