/* ═══════════════════════════════════════════════════
   VedNex v11 — Light canvas · Gradient dark sections
   Mobile-first font scale · Feature showcase
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

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

:root {
  /* ── Canvas ── */
  --bg:           #f8f7f4;
  --bg2:          #f2f0ec;
  --bg3:          #eceae5;
  --bg-section:   #f5f3ef;

  /* ── Dark gradient surfaces ── */
  --dark:         #0d0a1a;
  --dark2:        #110d22;
  --dark3:        #16102a;
  --dark4:        #1c1535;

  /* ── Dark gradient — purple to emerald ── */
  --dark-grad: linear-gradient(
    135deg,
    #0d0a1a 0%,
    #130b28 20%,
    #0e1a18 50%,
    #0a1f14 70%,
    #0d1520 100%
  );
  --dark-grad-glow: radial-gradient(
    ellipse 80% 60% at 30% 40%,
    rgba(124,58,237,0.22) 0%,
    transparent 55%
  ),
  radial-gradient(
    ellipse 60% 50% at 80% 70%,
    rgba(22,163,74,0.18) 0%,
    transparent 50%
  ),
  radial-gradient(
    ellipse 50% 40% at 50% 20%,
    rgba(184,134,11,0.12) 0%,
    transparent 45%
  );

  /* ── Accents ── */
  --emerald:      #16a34a;
  --emerald-light:#22c55e;
  --emerald-pale: #dcfce7;
  --emerald-glow: rgba(22,163,74,0.2);

  --gold:         #b8860b;
  --gold-light:   #d4af37;
  --gold-pale:    #fef9c3;
  --gold-glow:    rgba(184,134,11,0.2);

  --purple:       #7c3aed;
  --purple-light: #8b5cf6;
  --purple-pale:  #ede9fe;
  --purple-glow:  rgba(124,58,237,0.2);

  /* ── Text ── */
  --text-heading: #1e3a2f;
  --text-body:    #3d4a5c;
  --text-muted:   #6b7a8d;
  --text-dim:     #9aa5b4;
  --text-gold:    #92640a;
  --text-purple:  #5b21b6;

  /* ── Borders & shadows ── */
  --border:       rgba(61,74,92,0.1);
  --border-mid:   rgba(61,74,92,0.16);
  --border-strong:rgba(61,74,92,0.24);
  --shadow-sm:    0 1px 3px rgba(30,40,60,0.06), 0 1px 2px rgba(30,40,60,0.04);
  --shadow-md:    0 4px 16px rgba(30,40,60,0.08), 0 2px 6px rgba(30,40,60,0.05);
  --shadow-lg:    0 12px 40px rgba(30,40,60,0.1), 0 4px 12px rgba(30,40,60,0.06);
  --shadow-glow-e:0 8px 32px rgba(22,163,74,0.18);
  --shadow-glow-g:0 8px 32px rgba(184,134,11,0.18);
  --shadow-glow-p:0 8px 32px rgba(124,58,237,0.18);

  --radius:       16px;
  --radius-sm:    10px;
  --radius-pill:  100px;

  /* ── Typography ── */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ══ BASE ══ */
html {
  overflow-x: hidden;
  /* Prevent iOS text size adjustment after orientation change */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Ensure text doesn't get crushed on mobile */
  text-rendering: optimizeLegibility;
}
/* Mobile base bump — the key fix */
@media (max-width: 480px) {
  html { font-size: 17px; }
  body {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.01em;
  }
  p, li, span:not(.section-tag):not(.eyebrow):not(.badge-live):not(.badge-q3):not(.badge-q4):not(.badge-horizon) {
    font-size: inherit;
    line-height: 1.8;
  }
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

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

#scroll-container { position: relative; overflow: visible; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

/* ══ SCROLLBAR ══ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: rgba(22,163,74,0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(22,163,74,0.5); }

/* ═══════════════════════════════════════════════════
   BACKGROUND SYSTEM — light canvas with depth
═══════════════════════════════════════════════════ */
.bg-mesh {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  background: var(--bg);
}

/* Warm colour wash — stronger orbs */
.bg-mesh::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 3%   0%,   rgba(22,163,74,0.10)  0%, transparent 60%),
    radial-gradient(ellipse 65% 55% at 97%  8%,   rgba(124,58,237,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 97%  97%,  rgba(184,134,11,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 50%  50%,  rgba(22,163,74,0.05)  0%, transparent 60%);
  animation: mesh-breathe 18s ease-in-out infinite alternate;
}
@keyframes mesh-breathe {
  0%   { opacity: 0.65; }
  100% { opacity: 1; }
}

/* Grid — visible, warm gold-slate tint, no excessive masking */
.bg-mesh::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,134,11,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,134,11,0.09) 1px, transparent 1px),
    linear-gradient(rgba(61,74,92,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,74,92,0.04) 1px, transparent 1px);
  background-size: 64px 64px, 64px 64px, 16px 16px, 16px 16px;
  mask-image: radial-gradient(ellipse 100% 90% at 50% 40%, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 100% 90% at 50% 40%, black 40%, transparent 85%);
  animation: grid-pulse 20s ease-in-out infinite alternate;
}
@keyframes grid-pulse {
  0%   { opacity: 0.7; }
  100% { opacity: 1; }
}

#noise-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0.012; mix-blend-mode: multiply;
  image-rendering: pixelated;
}

#particle-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* ═══════════════════════════════════════════════════
   FLOATING SACRED CARDS — system elements
═══════════════════════════════════════════════════ */
.float-cards {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1; overflow: hidden;
}
.float-card {
  position: absolute;
  opacity: 0;
  transform: translateY(40px) rotate(-6deg);
  transition: opacity 1.8s var(--ease-out), transform 1.8s var(--ease-out);
  /* Glass border — they look like real floating UI elements */
  border-radius: 16px;
  box-shadow:
    0 8px 32px rgba(30,40,60,0.12),
    0 2px 8px rgba(30,40,60,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.5);
}
.float-card.in-view {
  opacity: 1;
  transform: translateY(0) rotate(-2deg);
}
.float-card img {
  width: 140px;
  border-radius: 15px;
  display: block;
}

/* Each card has its own tint — visible on light background */
.tint-emerald { box-shadow: 0 8px 32px rgba(22,163,74,0.2), 0 2px 8px rgba(30,40,60,0.08), inset 0 1px 0 rgba(255,255,255,0.6); border-color: rgba(22,163,74,0.2); }
.tint-gold    { box-shadow: 0 8px 32px rgba(184,134,11,0.2), 0 2px 8px rgba(30,40,60,0.08), inset 0 1px 0 rgba(255,255,255,0.6); border-color: rgba(184,134,11,0.2); }
.tint-purple  { box-shadow: 0 8px 32px rgba(124,58,237,0.18), 0 2px 8px rgba(30,40,60,0.08), inset 0 1px 0 rgba(255,255,255,0.6); border-color: rgba(124,58,237,0.18); }

.tint-emerald img { filter: hue-rotate(0deg)   saturate(1.0) brightness(1.05); opacity: 0.75; }
.tint-gold    img { filter: hue-rotate(50deg)  saturate(1.1) brightness(1.02); opacity: 0.7; }
.tint-purple  img { filter: hue-rotate(190deg) saturate(1.0) brightness(1.0);  opacity: 0.68; }

/* Positions — pulled slightly inward so they're actually visible */
.fc-1 { top: 8%;  left: 18px;  animation: drift-1 44s ease-in-out infinite;      animation-play-state: paused; }
.fc-2 { top: 44%; right: 14px; animation: drift-2 52s ease-in-out infinite -14s; animation-play-state: paused; }
.fc-3 { top: 22%; left: 28px;  animation: drift-3 60s ease-in-out infinite -7s;  animation-play-state: paused; }
.fc-4 { bottom:12%; right: 18px; animation: drift-4 48s ease-in-out infinite -22s; animation-play-state: paused; }
.fc-5 { bottom:36%; left: 12px; animation: drift-5 56s ease-in-out infinite -5s;  animation-play-state: paused; }
.fc-1.in-view,.fc-2.in-view,.fc-3.in-view,.fc-4.in-view,.fc-5.in-view { animation-play-state: running; }

@keyframes drift-1 {
  0%,100% { transform: translateY(0)    rotate(-2deg); }
  30%     { transform: translateY(-22px) rotate(0deg); }
  65%     { transform: translateY(-10px) rotate(-3deg); }
}
@keyframes drift-2 {
  0%,100% { transform: translateY(0)    rotate(2.5deg); }
  40%     { transform: translateY(-26px) rotate(-1deg); }
  70%     { transform: translateY(-8px)  rotate(3deg); }
}
@keyframes drift-3 {
  0%,100% { transform: translateY(0)    rotate(-1.5deg); }
  25%     { transform: translateY(-18px) rotate(2deg); }
  55%     { transform: translateY(-30px) rotate(-2deg); }
  80%     { transform: translateY(-12px) rotate(1deg); }
}
@keyframes drift-4 {
  0%,100% { transform: translateY(0)    rotate(3deg); }
  35%     { transform: translateY(-20px) rotate(0deg); }
  60%     { transform: translateY(-28px) rotate(2deg); }
}
@keyframes drift-5 {
  0%,100% { transform: translateY(0)    rotate(-3deg); }
  45%     { transform: translateY(-24px) rotate(-1deg); }
  75%     { transform: translateY(-14px) rotate(-4deg); }
}

/* ═══════════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════════ */
@media (pointer: fine) { * { cursor: none !important; } }

.cursor-dot {
  position: fixed; width: 6px; height: 6px;
  background: var(--emerald); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
  will-change: transform;
}
.cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1.5px solid rgba(22,163,74,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease-out), height .3s var(--ease-out), border-color .3s;
  will-change: transform;
}
.cursor-dot.is-hovering { width:10px; height:10px; background:var(--gold); }
.cursor-ring.is-hovering { width:52px; height:52px; border-color:rgba(184,134,11,0.5); }
.cursor-dot.is-clicking { width:4px; height:4px; opacity:.6; }
.cursor-ring.is-clicking { width:24px; height:24px; }

/* ═══════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%;
  padding: 1rem clamp(1.5rem, 5vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
  z-index: 999;
}
.site-header.scrolled {
  background: rgba(248,247,244,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════════════
   LOGO SYSTEM — mark + wordmark + tagline
   Mark is inline animated SVG. Text is HTML.
═══════════════════════════════════════════════════ */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

/* ── Animated mark container ── */
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}
.logo-mark svg,
.logo-mark img {
  width: 44px;
  height: 44px;
  display: block;
  flex-shrink: 0;
}

/* ── Text stack ── */
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

/* VedNex — the name. Cormorant, deep forest green, authoritative */
.logo-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-heading);
  line-height: 1;
  display: block;
}

/* Vedanta Nexus — the meaning. Italic, muted, a whisper */
.logo-tagline {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}
.logo-tagline-text {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  line-height: 1;
  display: block;
  white-space: nowrap;
}

/* ── Pulse dots flanking tagline ── */
.logo-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  width: 8px;
  height: 8px;
}
.logo-dot::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  width: 8px; height: 8px;
  animation: logo-dot-pulse 3s ease-out infinite;
}
.logo-dot::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  width: 3px; height: 3px;
}
/* Emerald dot — left */
.logo-dot-em::before { background: #22c55e; opacity: 0; }
.logo-dot-em::after  { background: #22c55e; opacity: 0.85; box-shadow: 0 0 4px rgba(34,197,94,0.6); }
@keyframes logo-dot-pulse {
  0%   { transform: scale(0.3); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0;   }
}
/* Gold dot — right, offset timing */
.logo-dot-gd::before { background: #d4af37; opacity: 0; animation-delay: 1.5s; }
.logo-dot-gd::after  { background: #d4af37; opacity: 0.8; box-shadow: 0 0 4px rgba(212,175,55,0.55); }

/* ── Footer logo — slightly smaller ── */
.footer-brand .logo-mark { width: 38px; height: 38px; }
.footer-brand .logo-mark svg,
.footer-brand .logo-mark img { width: 38px; height: 38px; }
.footer-brand .logo-name { font-size: 1.3rem; letter-spacing: 0.1em; }
.footer-brand .logo-tagline-text { font-size: 0.58rem; letter-spacing: 0.12em; }
.footer-brand .logo-dot { width: 7px; height: 7px; }

/* ── Logo on scrolled/dark headers ── */
.site-header.scrolled .logo-name { color: var(--text-heading); }

/* ── Hover — mark lifts slightly ── */
.logo:hover .logo-mark svg { transform: translateY(-1px); transition: transform 0.35s var(--ease-out); }
.logo .logo-mark svg { transition: transform 0.35s var(--ease-out); }

/* ── Mobile sizes ── */
@media (max-width: 768px) {
  .logo-mark { width: 38px; height: 38px; }
  .logo-mark svg, .logo-mark img { width: 38px; height: 38px; }
  .logo-name { font-size: 1.35rem; }
  .logo-tagline-text { font-size: 0.58rem; }
}
@media (max-width: 480px) {
  .logo { gap: 0.6rem; }
  .logo-mark { width: 34px; height: 34px; }
  .logo-mark svg, .logo-mark img { width: 34px; height: 34px; }
  .logo-name { font-size: 1.25rem; letter-spacing: 0.08em; }
  .logo-tagline-text { font-size: 0.55rem; }
  .logo-dot { width: 6px; height: 6px; }
}

.nav ul { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--emerald);
  transition: width 0.3s var(--ease);
  border-radius: 2px;
}
.nav-link:hover { color: var(--text-heading); }
.nav-link:hover::after { width: 100%; }

.nav-link.nav-cta {
  padding: 0.55rem 1.2rem;
  border: 1.5px solid rgba(124,58,237,0.35);
  border-radius: var(--radius-pill);
  color: var(--purple);
  font-size: 13px; font-weight: 500;
  transition: all 0.3s;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover {
  background: var(--purple-pale);
  border-color: var(--purple);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text-muted); display: block; transition: all 0.3s;
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease);
  cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-lg { padding: 1rem 2.2rem; font-size: 15px; }

.btn-primary {
  background: var(--emerald);
  color: #fff;
  border: 2px solid var(--emerald);
  box-shadow: var(--shadow-glow-e);
}
.btn-primary:hover {
  background: #15803d;
  border-color: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(22,163,74,0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--text-body);
  border: 2px solid var(--border-mid);
}
.btn-ghost:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  background: var(--emerald-pale);
}

.btn-outline-gold {
  display: inline-flex; align-items: center;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--gold);
  border: 2px solid rgba(184,134,11,0.35);
  transition: all 0.3s; cursor: pointer;
}
.btn-outline-gold:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
}

.btn-arrow { transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════════ */
.eyebrow, .section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 0.9rem;
}

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1;
  color: var(--text-heading);
}
.section-header h2 em { font-style: italic; color: var(--emerald); }
.section-sub {
  margin-top: 1.1rem;
  color: var(--text-muted);
  font-size: 16px; line-height: 1.75;
  max-width: 540px; margin-left: auto; margin-right: auto;
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: clamp(6rem,12vw,9rem) clamp(1.5rem,5vw,3rem) clamp(4rem,8vw,6rem);
  z-index: 1;
}

.hero-mandala {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: min(900px, 115vw);
  pointer-events: none;
  animation: spin-slow 150s linear infinite;
  opacity: 0.22; z-index: 0;
  /* Warm golden tint on the mandala */
  filter: sepia(0.3) hue-rotate(10deg) saturate(1.4);
}
@keyframes spin-slow { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* Multiple bloom layers — the nexus effect */
.hero-bloom {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  width: 800px; height: 500px;
  pointer-events: none; z-index: 1;
  animation: bloom-pulse 10s ease-in-out infinite alternate;
}
.hero-bloom::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%,
    rgba(212,175,55,0.18) 0%,
    rgba(22,163,74,0.10) 40%,
    transparent 75%
  );
  filter: blur(50px);
}
.hero-bloom::after {
  content: '';
  position: absolute; inset: 20%;
  background: radial-gradient(ellipse 80% 70% at 50% 50%,
    rgba(255,255,255,0.55) 0%,
    rgba(212,175,55,0.12) 45%,
    transparent 70%
  );
  filter: blur(28px);
}
@keyframes bloom-pulse {
  0%   { opacity: 0.55; transform: translate(-50%,-52%) scale(0.92); }
  100% { opacity: 1;    transform: translate(-50%,-52%) scale(1.08); }
}

.hero-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); }
/* Emerald — top right, generous */
.orb-1 { width: 560px; height: 460px; background: radial-gradient(circle, rgba(22,163,74,0.14), transparent 70%); top: -10%; right: -6%; animation: orb-float-1 20s ease-in-out infinite alternate; }
/* Purple — bottom left */
.orb-2 { width: 480px; height: 380px; background: radial-gradient(circle, rgba(124,58,237,0.12), transparent 70%); bottom: 4%; left: -7%; animation: orb-float-2 25s ease-in-out infinite alternate; }
/* Gold — mid, the warm centre */
.orb-3 { width: 380px; height: 320px; background: radial-gradient(circle, rgba(184,134,11,0.13), transparent 70%); top: 35%; left: 8%; animation: orb-float-3 17s ease-in-out infinite alternate; }
/* Soft white-gold centre glow */
.orb-4 { width: 300px; height: 260px; background: radial-gradient(circle, rgba(212,175,55,0.1), transparent 70%); bottom: 20%; right: 10%; animation: orb-float-4 28s ease-in-out infinite alternate; }
@keyframes orb-float-1 { 0%{transform:translate(0,0)} 100%{transform:translate(-30px,24px)} }
@keyframes orb-float-2 { 0%{transform:translate(0,0)} 100%{transform:translate(24px,-20px)} }
@keyframes orb-float-3 { 0%{transform:translate(0,0)} 100%{transform:translate(16px,30px)} }
@keyframes orb-float-4 { 0%{transform:translate(0,0)} 100%{transform:translate(-20px,-16px)} }

.hero-content { position:relative; z-index:2; max-width:760px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--emerald);
  background: var(--emerald-pale);
  border: 1px solid rgba(22,163,74,0.25);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.8rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 300; line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--text-heading);
}
.hero h1 em { font-style: italic; color: var(--emerald); }

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--text-muted);
  line-height: 1.75; margin-bottom: 2.5rem;
  max-width: 520px; margin-left: auto; margin-right: auto;
}

.hero-ctas { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

.hero-scroll-hint { position:absolute; bottom:2rem; left:50%; transform:translateX(-50%); z-index:2; }
.scroll-line { display:block; width:1px; height:44px; background:linear-gradient(to bottom,transparent,var(--emerald),transparent); animation:scroll-pulse 2.4s ease-in-out infinite; border-radius:2px; }
@keyframes scroll-pulse { 0%,100%{opacity:.2;transform:scaleY(.7)} 50%{opacity:.8;transform:scaleY(1)} }

/* Typewriter cursor */
.typewriter { display:inline-block; position:relative; }
.typewriter::after { content:'|'; color:var(--emerald); animation:blink-cursor .85s step-end infinite; margin-left:2px; font-style:normal; }
@keyframes blink-cursor { 0%,100%{opacity:1} 50%{opacity:0} }

/* ═══════════════════════════════════════════════════
   SIX INSTRUMENTS — gradient dark bg + sticky scroll
═══════════════════════════════════════════════════ */
.instruments-section {
  position: relative;
  z-index: 2;
  background: var(--dark-grad);
}

/* Glow overlay on top of gradient */
.instruments-section::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--dark-grad-glow);
  pointer-events: none; z-index: 0;
  animation: dark-glow-breathe 12s ease-in-out infinite alternate;
}
@keyframes dark-glow-breathe {
  0%   { opacity: 0.7; }
  100% { opacity: 1; }
}

/* Fine grid on dark section */
.instruments-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}

.instruments-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  max-width: 1160px; margin: 0 auto; gap: 4rem;
}

.instruments-left { flex-shrink:0; width:clamp(220px,28vw,320px); display:flex; flex-direction:column; gap:2.5rem; }
.instruments-label .section-tag { color:var(--emerald-light); margin-bottom:.7rem; }
.instruments-label h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem,3.5vw,3.6rem); font-weight:300; line-height:1.08;
  color: #f0f4ff; margin-bottom:.9rem;
}
.instruments-label h2 em { font-style:italic; color:var(--emerald-light); }
.instruments-label p { font-family:var(--font-body); font-size:14px; color:#8892b0; line-height:1.7; }

.instrument-dots { display:flex; flex-direction:column; gap:10px; }
.idot { display:block; width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,0.15); transition:all .4s var(--ease-out); cursor:pointer; }
.idot.active { background:var(--emerald-light); box-shadow:0 0 8px rgba(34,197,94,0.7); transform:scale(1.5); }

.instruments-right { flex:1; position:relative; height:100vh; display:flex; align-items:center; justify-content:center; }
.icard-stack { position:relative; width:100%; max-width:560px; height:min(620px,80vh); }

.icard {
  position:absolute; inset:0; border-radius:20px;
  overflow:visible; opacity:0;
  transform:translateX(80px) scale(0.96);
  will-change:transform,opacity;
}

.icard-glow {
  position:absolute; inset:-40px;
  background:radial-gradient(ellipse 60% 50% at 50% 50%, rgba(var(--glow),.18) 0%, transparent 70%);
  pointer-events:none; z-index:0;
  animation:icard-glow-pulse 4s ease-in-out infinite alternate;
}
@keyframes icard-glow-pulse { 0%{opacity:.5;transform:scale(.94)} 100%{opacity:1;transform:scale(1.06)} }

.icard-inner {
  position: relative; z-index: 1; height: 100%;
  background: rgba(13,10,26,0.75);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(var(--glow), 0.25);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.8rem, 3vw, 2.8rem);
  display: flex; flex-direction: column;
  transition: border-color .4s, box-shadow .4s, transform .35s var(--ease-out);
  overflow: hidden;
}
.icard:hover .icard-inner {
  border-color: rgba(var(--glow), 0.55);
  box-shadow: 0 0 60px rgba(var(--glow), 0.16), 0 30px 60px rgba(0,0,0,.5);
  transform: translateY(-4px);
}

.icard-top { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:1.4rem; }
.icard-icon img { width:44px; height:44px; filter:drop-shadow(0 0 10px rgba(var(--glow),.45)); transition:filter .3s; }
.icard:hover .icard-icon img { filter:drop-shadow(0 0 18px rgba(var(--glow),.75)); }

.icard-name { font-family:var(--font-display); font-size:clamp(2rem,3.5vw,2.8rem); font-weight:300; color:#f0f4ff; line-height:1; margin-bottom:.3rem; }
.icard-number { font-family:var(--font-mono); font-size:9px; letter-spacing:.2em; color:rgba(var(--glow),.65); margin-bottom:1rem; }
.icard-desc { font-family:var(--font-body); font-size:14px; color:#a8b4cc; line-height:1.7; margin-bottom:1.2rem; flex:1; }

.icard-features { display:flex; flex-direction:column; gap:.45rem; margin-bottom:1.6rem; }
.icard-features li { font-size:12px; color:#6b7a8d; letter-spacing:.03em; padding-left:1rem; position:relative; }
.icard-features li::before { content:'—'; position:absolute; left:0; color:rgba(var(--glow),.55); font-size:10px; }

.icard-footer { display:flex; align-items:center; justify-content:space-between; margin-top:auto; }

.icard-cta { font-family:var(--font-body); font-size:12px; font-weight:600; letter-spacing:.04em; padding:.65rem 1.3rem; border-radius:var(--radius-pill); transition:all .3s; cursor:pointer; }
.icard-cta-live { background:rgba(34,197,94,.14); color:#22c55e; border:1px solid rgba(34,197,94,.3); text-decoration:none; }
.icard-cta-live:hover { background:rgba(34,197,94,.24); box-shadow:0 0 20px rgba(34,197,94,.2); }
.icard-cta-soon, .icard-cta-horizon { color:#4a5568; font-size:11px; border:1px solid rgba(255,255,255,.07); }

.icard-pulse { width:10px; height:10px; border-radius:50%; background:rgba(var(--pulse-color),.85); box-shadow:0 0 0 0 rgba(var(--pulse-color),.4); animation:pulse-ring 2.8s ease-out infinite; }
@keyframes pulse-ring { 0%{box-shadow:0 0 0 0 rgba(var(--pulse-color),.4)} 70%{box-shadow:0 0 0 10px rgba(var(--pulse-color),0)} 100%{box-shadow:0 0 0 0 rgba(var(--pulse-color),0)} }

/* Card badges in dark section */
.card-badge { display:inline-block; font-family:var(--font-body); font-size:9px; font-weight:600; letter-spacing:.18em; text-transform:uppercase; padding:.28rem .7rem; border-radius:var(--radius-pill); }
.badge-live    { background:rgba(34,197,94,.15);  color:#22c55e; border:1px solid rgba(34,197,94,.3); }
.badge-q3      { background:rgba(212,175,55,.12); color:#d4af37; border:1px solid rgba(212,175,55,.25); }
.badge-q4      { background:rgba(139,92,246,.12); color:#a78bfa; border:1px solid rgba(139,92,246,.25); }
.badge-horizon { background:rgba(255,255,255,.05);color:rgba(255,255,255,.35);border:1px solid rgba(255,255,255,.1); }

/* ═══════════════════════════════════════════════════
   PHILOSOPHY
═══════════════════════════════════════════════════ */
.philosophy-section { position:relative; z-index:2; padding:clamp(5rem,10vw,9rem) 0; background:var(--bg-section); }

.philosophy-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(3rem,6vw,6rem); align-items:start; }

.philosophy-left h2 {
  font-family:var(--font-display); font-size:clamp(2.2rem,4vw,3.6rem);
  font-weight:300; line-height:1.1; color:var(--text-heading); margin-bottom:1.3rem;
}
.philosophy-left h2 em { font-style:italic; color:var(--gold); }
.philosophy-left p { color:var(--text-body); font-size:16px; line-height:1.8; margin-bottom:.9rem; }
.philosophy-left .btn-outline-gold { margin-top:1.5rem; }

.philosophy-right { display:flex; flex-direction:column; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-md); border:1px solid var(--border); }

.principle-card {
  display:flex; align-items:flex-start; gap:1.1rem;
  padding:1.6rem 1.8rem;
  border-bottom:1px solid var(--border);
  background:white;
  transition:background .3s, transform .3s var(--ease-out);
}
.principle-card:last-child { border-bottom:none; }
.principle-card:hover { background:var(--emerald-pale); transform:translateX(4px); }
.principle-icon { flex-shrink:0; margin-top:2px; }
.principle-card h4 { font-family:var(--font-body); font-size:15px; font-weight:600; color:var(--text-heading); margin-bottom:.35rem; }
.principle-card p { color:var(--text-muted); font-size:14px; line-height:1.7; }

/* ═══════════════════════════════════════════════════
   BENTO FEATURES
═══════════════════════════════════════════════════ */
.bento-section { position:relative; z-index:2; padding:clamp(5rem,10vw,9rem) 0; }

.bento-grid {
  display:grid; grid-template-columns:1fr 1fr 1fr;
  grid-template-rows:auto; gap:16px;
}

.bento-card {
  position:relative; background:white;
  border:1px solid var(--border); border-radius:var(--radius);
  padding:clamp(1.4rem,2.5vw,2rem); overflow:hidden;
  transition:all .35s var(--ease-out);
  display:flex; flex-direction:column; gap:1.2rem;
  box-shadow:var(--shadow-sm);
}
.bento-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:var(--border-mid); }

.bento-wide { grid-column:span 2; flex-direction:row; align-items:center; gap:2.5rem; }
.bento-tall { grid-row:span 2; grid-column:3; grid-row-start:1; }

.bento-tag { display:inline-block; font-family:var(--font-body); font-size:9px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; padding:.25rem .65rem; border-radius:var(--radius-pill); margin-bottom:.4rem; }
.emerald-tag { background:var(--emerald-pale); color:var(--emerald); border:1px solid rgba(22,163,74,.2); }
.gold-tag    { background:var(--gold-pale);    color:var(--gold);    border:1px solid rgba(184,134,11,.2); }
.purple-tag  { background:var(--purple-pale);  color:var(--purple);  border:1px solid rgba(124,58,237,.2); }

.bento-content { flex-shrink:0; max-width:240px; }
.bento-content h3 { font-family:var(--font-display); font-size:clamp(1.3rem,2vw,1.55rem); font-weight:400; line-height:1.2; color:var(--text-heading); margin-bottom:.6rem; }
.bento-content p { font-size:13px; color:var(--text-muted); line-height:1.7; }

.bento-mockup { flex:1; }

.mock-calendar { background:var(--bg2); border:1px solid var(--border); border-radius:10px; padding:.9rem; max-width:260px; }
.mock-cal-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:.7rem; }
.mock-month { font-size:10px; letter-spacing:.1em; color:var(--text-muted); text-transform:uppercase; font-weight:600; }
.mock-nav { display:flex; gap:.4rem; font-size:11px; color:var(--text-dim); }
.mock-cal-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:3px; margin-bottom:.7rem; }
.mock-day-label { font-size:8px; text-align:center; color:var(--text-dim); text-transform:uppercase; padding:2px 0; font-weight:600; }
.mock-day { font-size:10px; text-align:center; padding:5px 3px; border-radius:5px; color:var(--text-muted); }
.mock-day.booked { background:var(--emerald-pale); color:var(--emerald); font-weight:600; }
.mock-day.active { background:var(--emerald); color:white; font-weight:600; }
.mock-booking-pill { display:flex; align-items:center; gap:.5rem; background:white; border:1px solid var(--border); border-radius:6px; padding:.45rem .65rem; font-size:9px; color:var(--text-muted); margin-bottom:4px; font-weight:500; }
.mock-dot { width:6px; height:6px; border-radius:50%; flex-shrink:0; }
.emerald-dot { background:var(--emerald); }
.gold-dot { background:var(--gold-light); }

.bento-flow { display:flex; flex-direction:column; padding:.3rem 0; }
.flow-step { display:flex; align-items:center; gap:.75rem; padding:.65rem .9rem; border-radius:8px; font-size:12px; color:var(--text-dim); transition:all .3s; font-weight:500; }
.flow-step.flow-active { background:var(--emerald-pale); color:var(--emerald); border:1px solid rgba(22,163,74,.2); }
.flow-icon { font-size:10px; opacity:.7; flex-shrink:0; }
.flow-line { width:1px; height:16px; background:linear-gradient(to bottom,var(--border-mid),transparent); margin-left:1.4rem; }

.bento-metric { display:flex; flex-direction:column; align-items:center; gap:.6rem; }
.metric-ring svg { width:90px; height:90px; }
.metric-label { font-size:9px; letter-spacing:.12em; text-transform:uppercase; color:var(--text-dim); text-align:center; font-weight:600; }

/* ═══════════════════════════════════════════════════
   PARALLAX BAND
═══════════════════════════════════════════════════ */
.parallax-band {
  position: relative; height: clamp(140px,18vw,200px);
  overflow: hidden; z-index: 2;
  background: var(--dark-grad);
  border-top: 1px solid rgba(139,92,246,0.15);
  border-bottom: 1px solid rgba(22,163,74,0.15);
}
.parallax-band::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--dark-grad-glow);
  pointer-events: none; z-index: 0; opacity: 0.6;
}
.para-layer { position:absolute; inset:0; will-change:transform; }
.para-back { display:flex; align-items:center; justify-content:center; opacity:.05; }
.para-back img { width:300px; height:300px; animation:spin-slow 120s linear infinite; }
.para-mid { background:linear-gradient(135deg,rgba(22,163,74,.04) 0%,transparent 50%,rgba(124,58,237,.03) 100%); }
.para-front { display:flex; align-items:center; justify-content:center; overflow:hidden; }
.para-text { display:flex; align-items:center; gap:2.5rem; white-space:nowrap; animation:marquee-scroll 22s linear infinite; }
.para-text span { font-family:var(--font-display); font-size:clamp(1.6rem,3vw,2.6rem); font-weight:300; color:rgba(255,255,255,.08); letter-spacing:.1em; text-transform:uppercase; transition:color .4s; }
.para-text span:hover { color:rgba(255,255,255,.22); }
.para-dot { font-size:.75rem !important; color:rgba(22,163,74,.25) !important; }
@keyframes marquee-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
.about-section { position:relative; z-index:2; padding:clamp(5rem,10vw,8rem) 0; background:var(--bg-section); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.about-inner { display:grid; grid-template-columns:240px 1fr; gap:5rem; align-items:center; }
.about-mandala { opacity:.15; animation:spin-slow 200s linear infinite; }
.about-mandala img { width:100%; }
.about-content .section-tag { margin-bottom:.7rem; }
.about-content h2 { font-family:var(--font-display); font-size:clamp(2rem,3.5vw,3.2rem); font-weight:300; line-height:1.1; color:var(--text-heading); margin-bottom:1.4rem; }
.about-content p { color:var(--text-body); font-size:16px; line-height:1.85; margin-bottom:.9rem; }

.about-stats { display:flex; gap:clamp(1.5rem,4vw,3rem); margin-top:2.5rem; padding-top:2rem; border-top:1px solid var(--border); flex-wrap:wrap; }
.stat { display:flex; flex-direction:column; gap:.3rem; }
.stat-num { font-family:var(--font-display); font-size:clamp(2rem,4vw,3rem); font-weight:300; color:var(--gold); line-height:1; }
.stat-num.counting { color:var(--emerald); }
.stat-num.done { color:var(--gold); }
.stat-label { font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:var(--text-dim); font-weight:600; }

/* ═══════════════════════════════════════════════════
   TIERED CTA
═══════════════════════════════════════════════════ */
.tiered-cta-section { position:relative; z-index:2; padding:clamp(5rem,10vw,9rem) 0; overflow:hidden; }
.tiered-cta-section .cta-bg-mandala { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); pointer-events:none; animation:spin-slow 200s linear infinite; opacity:.06; z-index:0; }

.tiers-grid { display:grid; grid-template-columns:1fr 1.1fr 1fr; gap:0; border-radius:var(--radius); overflow:visible; position:relative; z-index:2; margin-top:1rem; }

.tier-card { position:relative; padding:clamp(1.8rem,3vw,2.5rem) clamp(1.4rem,2.5vw,2rem); background:white; border:1px solid var(--border); display:flex; flex-direction:column; box-shadow:var(--shadow-sm); }
.tier-card:first-child { border-radius:var(--radius) 0 0 var(--radius); border-right:none; }
.tier-card:last-child  { border-radius:0 var(--radius) var(--radius) 0; border-left:none; }

.tier-featured {
  background:var(--dark);
  border:2px solid rgba(22,163,74,.3) !important;
  border-radius:var(--radius) !important;
  margin:-18px 0; padding:clamp(2.2rem,4vw,3rem) clamp(1.6rem,3vw,2.2rem);
  z-index:3;
  box-shadow:0 0 60px rgba(22,163,74,.1), var(--shadow-lg);
}
.tier-glow { position:absolute; top:-1px; left:0; right:0; height:1px; background:linear-gradient(to right,transparent,var(--emerald-light),transparent); }
.tier-popular { display:inline-block; font-family:var(--font-body); font-size:9px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--emerald-light); background:rgba(34,197,94,.12); border:1px solid rgba(34,197,94,.25); border-radius:var(--radius-pill); padding:.28rem .85rem; margin-bottom:1.1rem; width:fit-content; }

.tier-header { margin-bottom:1.6rem; }
.tier-name { display:block; font-family:var(--font-body); font-size:11px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--text-dim); margin-bottom:.7rem; }
.tier-featured .tier-name { color:rgba(255,255,255,.4); }
.tier-price { display:flex; align-items:baseline; gap:.4rem; }
.price-num { font-family:var(--font-display); font-size:clamp(2.2rem,4vw,3rem); font-weight:300; color:var(--text-heading); line-height:1; }
.tier-featured .price-num { color:#f0f4ff; }
.price-period { font-size:12px; color:var(--text-dim); letter-spacing:.06em; }
.tier-featured .price-period { color:rgba(255,255,255,.35); }

.tier-features { display:flex; flex-direction:column; gap:.7rem; margin-bottom:1.8rem; flex:1; }
.tier-features li { font-size:13px; color:var(--text-muted); display:flex; align-items:center; gap:.6rem; }
.tier-featured .tier-features li { color:#8892b0; }
.tier-check { font-size:11px; flex-shrink:0; }
.tier-check.emerald { color:var(--emerald); }
.tier-check.purple  { color:var(--purple-light); }
.tier-check.dim     { color:var(--text-dim); }

.tier-btn { display:block; text-align:center; font-family:var(--font-body); font-size:13px; font-weight:600; letter-spacing:.02em; padding:.85rem 1.4rem; border-radius:var(--radius-pill); transition:all .3s; cursor:pointer; margin-top:auto; }
.tier-btn-primary { background:var(--emerald); color:white; border:2px solid var(--emerald); }
.tier-btn-primary:hover { background:#15803d; transform:translateY(-1px); box-shadow:var(--shadow-glow-e); }
.tier-btn-ghost { background:transparent; color:var(--text-muted); border:2px solid var(--border-mid); }
.tier-btn-ghost:hover { border-color:var(--purple); color:var(--purple); }
.tier-featured .tier-btn-ghost { border-color:rgba(255,255,255,.15); color:rgba(255,255,255,.5); }
.tier-featured .tier-btn-ghost:hover { border-color:rgba(139,92,246,.5); color:#a78bfa; }
.tier-note { text-align:center; font-size:11px; color:var(--text-dim); margin-top:.65rem; }
.tier-featured .tier-note { color:rgba(255,255,255,.2); }
.tier-horizon .price-num { color:var(--purple); font-size:2rem; }

/* ═══════════════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════════════ */
.newsletter-section { position:relative; z-index:2; padding:clamp(4rem,8vw,7rem) 0; border-top:1px solid var(--border); background:var(--bg-section); }
.newsletter-inner { max-width:480px; }
.newsletter-inner h3 { font-family:var(--font-display); font-size:clamp(1.8rem,3vw,2.6rem); font-weight:300; color:var(--text-heading); margin-bottom:.6rem; }
.newsletter-inner p { color:var(--text-muted); font-size:15px; line-height:1.75; margin-bottom:1.6rem; }

.form-row { display:flex; border:2px solid var(--border-mid); border-radius:var(--radius-pill); overflow:hidden; transition:border-color .3s; background:white; }
.form-row:focus-within { border-color:var(--emerald); box-shadow:0 0 0 4px rgba(22,163,74,.1); }
#email-input { flex:1; padding:.85rem 1.3rem; background:transparent; border:none; outline:none; color:var(--text-body); font-family:var(--font-body); font-size:14px; }
#email-input::placeholder { color:var(--text-dim); }
#newsletter-form button { padding:.85rem 1.5rem; background:var(--emerald); border:none; color:white; font-family:var(--font-body); font-size:13px; font-weight:600; cursor:pointer; transition:background .3s; white-space:nowrap; }
#newsletter-form button:hover { background:#15803d; }
#form-message { margin-top:.7rem; font-size:13px; min-height:18px; padding-left:.3rem; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer { position:relative; z-index:2; padding:2.5rem 0; border-top:1px solid var(--border); background:var(--bg); }
.footer-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:1.8rem; flex-wrap:wrap; gap:1rem; }
.footer-brand { display:flex; align-items:center; gap:.55rem; }
.footer-nav { display:flex; gap:1.8rem; flex-wrap:wrap; }
.footer-nav a { font-size:13px; font-weight:500; color:var(--text-dim); transition:color .3s; }
.footer-nav a:hover { color:var(--emerald); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:.5rem; padding-top:1.5rem; border-top:1px solid var(--border); }
.footer-copy,.footer-tagline { font-size:12px; color:var(--text-dim); letter-spacing:.06em; }

/* ═══════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════ */
.reveal-on-scroll { opacity:0; transform:translateY(24px); transition:opacity .9s var(--ease), transform .9s var(--ease); transition-delay:var(--delay,0s); }
.reveal-on-scroll.is-visible { opacity:1; transform:translateY(0); }

/* ═══════════════════════════════════════════════════
   PRODUCT CARD SPOTLIGHT (bento + tier)
═══════════════════════════════════════════════════ */
.bento-card, .tier-card { --mx:50%; --my:50%; }
.bento-card::after, .tier-card::after { content:''; position:absolute; inset:0; background:radial-gradient(180px circle at var(--mx) var(--my),rgba(22,163,74,.05) 0%,transparent 70%); opacity:0; transition:opacity .4s; pointer-events:none; border-radius:inherit; }
.bento-card:hover::after, .tier-card:hover::after { opacity:1; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE SYSTEM — properly designed, not shrunk
   Breakpoints:
   • 1200px  large laptop
   • 1024px  small laptop / large tablet landscape
   •  900px  tablet portrait (iPad)
   •  768px  tablet small / large phone landscape
   •  480px  phone portrait
   •  375px  small phone (iPhone SE)
═══════════════════════════════════════════════════ */

/* ── 1200px — large laptop tweaks ── */
@media (max-width: 1200px) {
  .instruments-sticky { gap: 2.5rem; }
  .instruments-left { width: 260px; }
  .icard-stack { max-width: 480px; min-height: 580px; }
}

/* ── 1024px — small laptop / tablet landscape ── */
@media (max-width: 1024px) {

  /* HERO */
  .hero { padding: 7rem 2rem 4rem; }
  .hero h1 { font-size: clamp(3.2rem, 8vw, 5.5rem); }
  .hero-sub { font-size: 16px; }
  .hero-bloom { width: 600px; height: 380px; }

  /* INSTRUMENTS — keep sticky but adjust sizing */
  .instruments-sticky { gap: 2rem; padding: 0 2rem; }
  .instruments-left { width: 240px; }
  .instruments-label h2 { font-size: 2.4rem; }
  .icard-stack { max-width: 440px; height: min(580px, 75vh); }
  .icard-name { font-size: 2.2rem; }

  /* BENTO */
  .bento-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bento-wide { grid-column: span 2; flex-direction: column; gap: 1.5rem; }
  .bento-tall { grid-column: span 1; grid-row: span 1; }
  .bento-content { max-width: 100%; }

  /* PHILOSOPHY */
  .philosophy-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .philosophy-left h2 { font-size: 2.8rem; }

  /* ABOUT */
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-mandala { display: none; }
  .about-content h2 { font-size: 2.6rem; }

  /* TIERS */
  .tiers-grid { grid-template-columns: 1fr; gap: 14px; max-width: 480px; margin-left: auto; margin-right: auto; }
  .tier-card:first-child, .tier-card:last-child { border-radius: var(--radius); border: 1px solid var(--border); }
  .tier-featured { margin: 0; }
}

/* ── 900px — tablet portrait (iPad Pro / iPad Air) ── */
@media (max-width: 900px) {

  /* HIDE floating cards on tablet — too cramped */
  .float-cards { display: none; }

  /* HEADER */
  .site-header { padding: 1rem 1.8rem; }

  /* HERO — properly designed for tablet */
  .hero {
    padding: 8rem 2.5rem 5rem;
    min-height: 90vh;
  }
  .hero h1 { font-size: clamp(3rem, 9vw, 5rem); line-height: 1; }
  .hero-sub { font-size: 17px; max-width: 500px; }
  .hero-eyebrow { font-size: 11px; }
  .hero-ctas { gap: 0.85rem; }
  .hero-mandala { width: min(700px, 95vw); opacity: 0.18; }
  .hero-bloom { width: 500px; height: 320px; }
  .orb-1 { width: 380px; height: 300px; }
  .orb-2 { width: 320px; height: 260px; }
  .orb-3 { width: 240px; height: 200px; }
  .orb-4 { width: 180px; height: 160px; }

  /* INSTRUMENTS — Stack cards on tablet, still dark bg, looks great */
  .instruments-section { background: var(--dark); padding: 4rem 0 5rem; }
  .instruments-sticky {
    position: relative;
    height: auto;
    flex-direction: column;
    padding: 0 2rem;
    gap: 2.5rem;
    align-items: flex-start;
  }
  .instruments-left {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .instruments-label { flex: 1; min-width: 260px; }
  .instruments-label h2 { font-size: 2.6rem; }
  .instruments-label p { font-size: 15px; }
  .instrument-dots {
    flex-direction: row;
    gap: 8px;
    align-self: flex-end;
    padding-bottom: 0.5rem;
  }
  .instruments-right { width: 100%; height: auto; }
  /* Tablet: horizontal scroll of cards — feels native */
  .icard-stack {
    position: relative;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 100%;
  }
  .icard {
    position: relative;
    opacity: 1 !important;
    transform: none !important;
    height: auto;
    min-height: 420px;
  }
  .icard-inner {
    height: 100%;
    padding: 1.6rem;
    border-radius: 16px;
  }
  .icard-name { font-size: 1.8rem; }
  .icard-desc { font-size: 13px; }
  .icard-glow { display: none; } /* too much on tablet */

  /* Only show first 3 on tablet, rest in second row */
  .icard-3, .icard-4, .icard-5 { display: flex; }

  /* BENTO */
  .bento-section { padding: 4rem 0; }
  .bento-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bento-wide { grid-column: span 2; flex-direction: row; gap: 2rem; }
  .bento-content { max-width: 220px; flex-shrink: 0; }
  .bento-card { padding: 1.6rem; }
  .bento-content h3 { font-size: 1.25rem; }

  /* PHILOSOPHY */
  .philosophy-section { padding: 4rem 0; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .philosophy-left h2 { font-size: 2.8rem; }
  .philosophy-left p { font-size: 15px; }
  .principle-card { padding: 1.4rem 1.6rem; }

  /* PARALLAX BAND */
  .parallax-band { height: 130px; }

  /* ABOUT */
  .about-section { padding: 4rem 0; }
  .about-stats { gap: 2rem; }

  /* TIERS */
  .tiered-cta-section { padding: 4rem 0 5rem; }
  .tiers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 100%;
  }
  .tier-card:first-child { border-radius: var(--radius); border: 1px solid var(--border); }
  .tier-card:last-child  { border-radius: var(--radius); border: 1px solid var(--border); }
  .tier-featured {
    grid-column: span 2;
    margin: 0;
    border-radius: var(--radius) !important;
  }

  /* SECTION HEADERS */
  .section-header { margin-bottom: 2.8rem; }
  .section-header h2 { font-size: clamp(2rem, 5vw, 3rem); }
  .section-sub { font-size: 15px; }
}

/* ── 768px — large phone landscape / small tablet ── */
@media (max-width: 768px) {

  /* HEADER */
  .site-header { padding: 0.9rem 1.4rem; }
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: rgba(248,247,244,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1.5rem 2rem 2rem;
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 0;
  }
  .nav.open { display: flex; }
  .nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    width: 100%;
  }
  .nav ul li { border-bottom: 1px solid var(--border); }
  .nav ul li:last-child { border-bottom: none; }
  .nav-link {
    display: block;
    font-size: 17px;
    font-weight: 500;
    padding: 1rem 0;
    color: var(--text-body);
    letter-spacing: 0;
  }
  .nav-link.nav-cta {
    display: inline-flex;
    margin-top: 1rem;
    padding: 0.85rem 1.5rem;
    font-size: 15px;
  }
  .nav-link::after { display: none; }
  .nav-toggle { display: flex; }

  /* INSTRUMENTS — single column scroll on phone landscape */
  .icard-stack {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .icard-inner { padding: 1.4rem; }
  .icard-name { font-size: 1.6rem; }

  /* BENTO */
  .bento-grid { grid-template-columns: 1fr; gap: 12px; }
  .bento-wide { grid-column: span 1; flex-direction: column; }
  .bento-content { max-width: 100%; }
  .bento-tall { grid-column: span 1; }

  /* TIERS */
  .tiers-grid { grid-template-columns: 1fr; gap: 12px; }
  .tier-featured { grid-column: span 1; }

  /* FOOTER */
  .footer-top { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; }
}

/* ── 480px — phone portrait ── */
@media (max-width: 480px) {

  /* BASE — html root 17px means all rem units scale up automatically */
  html { font-size: 17px; }
  body {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.01em;
  }
  .container { padding: 0 1.25rem; }

  /* HEADER */
  .site-header { padding: 0.85rem 1.25rem; }

  /* HERO */
  .hero {
    padding: 6.5rem 1.25rem 4rem;
    min-height: 100svh;
    text-align: center;
  }
  .hero-eyebrow { font-size: 12px; padding: 0.4rem 1rem; letter-spacing: 0.14em; }
  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 3.8rem);
    line-height: 1.0;
    margin-bottom: 1.2rem;
  }
  .hero-sub {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 100%;
  }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 0.75rem; max-width: 320px; margin: 0 auto; }
  .hero-ctas .btn { width: 100%; justify-content: center; font-size: 17px; padding: 1rem 1.5rem; }
  .hero-mandala { width: 100vw; opacity: 0.15; }
  .hero-bloom { width: 320px; height: 220px; }
  .orb-1 { width: 260px; height: 220px; filter: blur(50px); }
  .orb-2 { width: 220px; height: 180px; filter: blur(50px); }
  .orb-3 { width: 180px; height: 150px; filter: blur(40px); }
  .orb-4 { display: none; }

  /* SECTION HEADERS */
  .section-header { margin-bottom: 2.2rem; }
  .section-header h2 { font-size: clamp(2rem, 9vw, 2.8rem); line-height: 1.1; }
  .section-sub { font-size: 17px; line-height: 1.75; font-weight: 400; }
  .eyebrow, .section-tag { font-size: 12px; letter-spacing: 0.14em; }

  /* INSTRUMENTS */
  .instruments-section { padding: 3.5rem 0 4.5rem; }
  .instruments-sticky { padding: 0 1.25rem; gap: 2rem; }
  .instruments-left { gap: 1.4rem; }
  .instruments-label h2 { font-size: 2.4rem; }
  .instruments-label p { font-size: 17px; line-height: 1.75; font-weight: 400; }
  .icard-stack { grid-template-columns: 1fr; gap: 14px; }
  .icard-inner { padding: 1.5rem 1.25rem; border-radius: 14px; }
  .icard-name { font-size: 2rem; }
  .icard-number { font-size: 11px; }
  .icard-desc { font-size: 17px; line-height: 1.7; font-weight: 400; }
  .icard-features li { font-size: 15px; line-height: 1.65; }
  .icard-cta { font-size: 14px; padding: 0.7rem 1.2rem; }
  .icard-top { margin-bottom: 1.1rem; }
  .icard-icon img { width: 40px; height: 40px; }

  /* BENTO */
  .bento-section { padding: 3rem 0; }
  .bento-grid { grid-template-columns: 1fr; gap: 12px; }
  .bento-wide { grid-column: span 1; flex-direction: column; }
  .bento-tall { grid-column: span 1; }
  .bento-card { padding: 1.4rem 1.25rem; }
  .bento-content { max-width: 100%; }
  .bento-content h3 { font-size: 1.35rem; }
  .bento-content p { font-size: 16px; line-height: 1.7; }
  .bento-tag { font-size: 11px; }
  .mock-calendar { padding: 0.85rem; max-width: 100%; }
  .mock-day { font-size: 12px; padding: 4px 2px; }
  .mock-booking-pill { font-size: 13px; padding: 0.5rem 0.65rem; }
  .flow-step { font-size: 15px; padding: 0.65rem 0.85rem; }
  .metric-ring svg { width: 80px; height: 80px; }
  .metric-label { font-size: 12px; }

  /* FEATURE SHOWCASE */
  .feature-showcase { padding: 3rem 0; }
  .showcase-grid { grid-template-columns: 1fr; gap: 14px; }
  .showcase-card { padding: 1.5rem 1.25rem; }
  .showcase-featured { grid-column: span 1; margin: 0; padding: 1.6rem 1.25rem; }
  .feature-list-cols { grid-template-columns: 1fr; gap: 0.45rem; }
  .feature-item { font-size: 15px; line-height: 1.6; }
  .fi-check { font-size: 13px; }
  .feature-group-label { font-size: 12px; }
  .showcase-name { font-size: 2rem; }
  .showcase-desc { font-size: 15px; }
  .showcase-soon-list { grid-template-columns: 1fr; gap: 0.65rem; }
  .showcase-soon-list strong { font-size: 16px; }
  .showcase-soon-list span { font-size: 13px; }
  .showcase-side-header h3 { font-size: 1.6rem; }
  .showcase-side-header p { font-size: 16px; line-height: 1.75; }
  .showcase-principles strong { font-size: 16px; }
  .showcase-principles span { font-size: 13px; }
  .btn.btn-lg { font-size: 17px; padding: 1rem 1.5rem; min-height: 52px; }

  /* PHILOSOPHY */
  .philosophy-section { padding: 3rem 0; }
  .philosophy-grid { gap: 2rem; }
  .philosophy-left h2 { font-size: 2.4rem; }
  .philosophy-left p { font-size: 17px; line-height: 1.8; }
  .principle-card { padding: 1.2rem 1.25rem; gap: 0.9rem; }
  .principle-card h4 { font-size: 17px; font-weight: 600; }
  .principle-card p { font-size: 15px; line-height: 1.75; }
  .principle-icon svg { width: 22px; height: 22px; }

  /* PARALLAX BAND */
  .parallax-band { height: 90px; }
  .para-text { gap: 1.5rem; }
  .para-text span { font-size: 1.2rem; }

  /* ABOUT */
  .about-section { padding: 3rem 0; }
  .about-content h2 { font-size: 2.4rem; }
  .about-content p { font-size: 17px; line-height: 1.8; }
  .about-stats { gap: 1.5rem; padding-top: 1.5rem; flex-wrap: wrap; }
  .stat { min-width: calc(50% - 0.75rem); }
  .stat-num { font-size: 2.4rem; }
  .stat-label { font-size: 12px; letter-spacing: 0.15em; }

  /* NEWSLETTER */
  .newsletter-section { padding: 3rem 0; }
  .newsletter-inner h3 { font-size: 2.2rem; }
  .newsletter-inner p { font-size: 17px; line-height: 1.75; }
  .form-row {
    flex-direction: column;
    border-radius: var(--radius);
    overflow: visible;
    background: transparent;
    border: none;
    gap: 0.75rem;
  }
  #email-input {
    border: 2px solid var(--border-mid);
    border-radius: var(--radius-pill);
    padding: 1rem 1.3rem;
    background: white;
    font-size: 17px;
  }
  #newsletter-form button {
    border-radius: var(--radius-pill);
    padding: 1rem;
    font-size: 17px;
    font-weight: 600;
    width: 100%;
  }
  #form-message { font-size: 15px; }

  /* FOOTER */
  .site-footer { padding: 2rem 0; }
  .footer-top { flex-direction: column; gap: 1.2rem; }
  .footer-nav { gap: 1.2rem; flex-wrap: wrap; }
  .footer-nav a { font-size: 17px; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; }
  .footer-copy, .footer-tagline { font-size: 13px; }

  /* BUTTONS — generous touch targets */
  .btn { min-height: 52px; font-size: 17px; padding: 0.95rem 1.6rem; }
  .btn-lg { font-size: 18px; padding: 1rem 2rem; }
  .tier-btn { font-size: 17px; min-height: 50px; }

  /* HIDE cursor on touch */
  .cursor-dot, .cursor-ring { display: none !important; }

  /* PERFORMANCE */
  #noise-canvas { opacity: 0.006; }
  .icard-glow { display: none; }
  .hero-bloom::before { filter: blur(35px); }
  .hero-bloom::after  { filter: blur(20px); }
}

/* ── 375px — small phone (iPhone SE, Galaxy A) ── */
@media (max-width: 375px) {
  html { font-size: 16px; }
  body { font-size: 16px; line-height: 1.8; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 3rem); }
  .hero-sub { font-size: 17px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 0.12em; }
  .icard-name { font-size: 1.8rem; }
  .icard-desc { font-size: 16px; }
  .icard-features li { font-size: 14px; }
  .section-header h2 { font-size: clamp(1.8rem, 10vw, 2.4rem); }
  .instruments-label h2 { font-size: 2rem; }
  .about-content p { font-size: 16px; }
  .philosophy-left p { font-size: 16px; }
  .principle-card p { font-size: 14px; }
  .about-stats { flex-wrap: wrap; gap: 1rem; }
  .stat { min-width: calc(50% - 0.5rem); }
  .stat-num { font-size: 2.2rem; }
  .feature-item { font-size: 14px; }
  .showcase-side-header p { font-size: 15px; }
  .newsletter-inner p { font-size: 16px; }
  #email-input { font-size: 16px; }
  #newsletter-form button { font-size: 16px; }
}

/* ── Touch device optimisations ── */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects that don't work on touch */
  .bento-card:hover { transform: none; box-shadow: var(--shadow-sm); }
  .principle-card:hover { transform: none; background: white; }
  .btn-primary:hover { transform: none; }
  .btn-ghost:hover { transform: none; }
  .icard:hover .icard-inner { transform: none; border-color: rgba(var(--glow), 0.22); box-shadow: none; }

  /* Larger tap targets */
  .nav-link { padding: 0.75rem 0; }
  .idot { width: 10px; height: 10px; }
  .product-link { padding: 0.5rem 0; }

  /* Remove cursor entirely */
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero-mandala, .about-mandala { animation: none; }
  .float-card { animation: none; }
  .orb-1, .orb-2, .orb-3, .orb-4 { animation: none; }
  .hero-bloom { animation: none; }
  .scroll-line { animation: none; }
}

/* ── Safe area for notched phones (iPhone X+) ── */
@supports (padding: max(0px)) {
  .site-header { padding-left: max(1.25rem, env(safe-area-inset-left)); padding-right: max(1.25rem, env(safe-area-inset-right)); }
  .site-footer { padding-bottom: max(2rem, env(safe-area-inset-bottom)); }
  .container { padding-left: max(1.25rem, env(safe-area-inset-left)); padding-right: max(1.25rem, env(safe-area-inset-right)); }
}

/* ═══════════════════════════════════════════════════
   FEATURE SHOWCASE — Schedules centred
═══════════════════════════════════════════════════ */
.feature-showcase {
  position: relative; z-index: 2;
  padding: clamp(5rem,10vw,9rem) 0;
  overflow: hidden;
  background: var(--bg-section);
}

.showcase-bg-mandala {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  animation: spin-slow 200s linear infinite;
  opacity: 0.05; z-index: 0;
}
.showcase-bg-mandala img { width: 700px; height: 700px; }

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 16px;
  position: relative; z-index: 2;
  align-items: start;
}

/* ── All cards ── */
.showcase-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: white;
  padding: clamp(1.6rem, 2.5vw, 2.2rem);
  display: flex; flex-direction: column; gap: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
  height: 100%;
}

/* ── Side cards ── */
.showcase-side { background: white; }

.showcase-eyebrow {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--emerald); margin-bottom: 0.5rem;
}

.showcase-side-header h3 {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 300; line-height: 1.15;
  color: var(--text-heading); margin-bottom: 0.7rem;
}
.showcase-side-header p {
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}

/* Soon list */
.showcase-soon-list {
  display: flex; flex-direction: column; gap: 0.8rem;
  flex: 1;
}
.showcase-soon-list li {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: background 0.25s, border-color 0.25s;
}
.showcase-soon-list li:hover { background: var(--bg2); border-color: var(--border-mid); }
.soon-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(var(--c),0.1);
  border: 1px solid rgba(var(--c),0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.soon-icon img { width: 18px; height: 18px; opacity: 0.8; }
.showcase-soon-list strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-heading); }
.showcase-soon-list span { display: block; font-size: 12px; color: var(--text-dim); margin-top: 1px; }

/* Principles list */
.showcase-principles {
  display: flex; flex-direction: column; gap: 0.85rem; flex: 1;
}
.showcase-principles li {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: background 0.25s;
}
.showcase-principles li:hover { background: var(--bg2); }
.principle-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0; margin-top: 5px;
}
.purple-dot { background: var(--purple-light); }
.showcase-principles strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-heading); }
.showcase-principles span { display: block; font-size: 12px; color: var(--text-dim); margin-top: 1px; }

/* ── Featured centre card ── */
.showcase-featured {
  position: relative;
  background: var(--dark);
  border: 2px solid rgba(22,163,74,0.3);
  box-shadow: 0 0 80px rgba(22,163,74,0.1), 0 0 40px rgba(124,58,237,0.08), var(--shadow-lg);
  margin: -20px 0;
  padding: clamp(1.8rem,3vw,2.5rem);
  overflow: hidden;
}
.showcase-featured .showcase-eyebrow { color: var(--emerald-light); }

/* Multi-colour glow behind featured card */
.showcase-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(22,163,74,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(124,58,237,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 90% 90%, rgba(184,134,11,0.1) 0%, transparent 50%);
  animation: showcase-glow-breathe 8s ease-in-out infinite alternate;
}
@keyframes showcase-glow-breathe {
  0%   { opacity: 0.7; }
  100% { opacity: 1; }
}

/* Live badge */
.showcase-live-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--emerald-light);
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  width: fit-content;
  position: relative; z-index: 1;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald-light);
  animation: pulse-ring 2.5s ease-out infinite;
  --pulse-color: 34,197,94;
}

/* Card header */
.showcase-header {
  display: flex; align-items: center; gap: 1rem;
  position: relative; z-index: 1;
}
.showcase-header img { filter: drop-shadow(0 0 10px rgba(34,197,94,0.5)); }
.showcase-name {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 300; line-height: 1;
  color: #f0f4ff;
}
.showcase-desc { font-size: 13px; color: #8892b0; margin-top: 0.2rem; }

/* Feature groups */
.feature-group {
  position: relative; z-index: 1;
}
.feature-group-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.feature-list-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 0.75rem;
}
.feature-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 13px; color: #a8b4cc; line-height: 1.4;
  font-weight: 400;
}
.fi-check { font-size: 12px; flex-shrink: 0; }

/* CTA area */
.showcase-actions {
  display: flex; flex-direction: column; gap: 0.6rem;
  position: relative; z-index: 1; margin-top: 0.5rem;
}
.showcase-note {
  font-size: 11px; color: rgba(255,255,255,0.2);
  text-align: center; letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .showcase-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .showcase-side:last-child { grid-column: span 2; }
  .showcase-principles { flex-direction: row; flex-wrap: wrap; gap: 0.7rem; }
  .showcase-principles li { flex: 1; min-width: 200px; }
  .showcase-featured { margin: 0; }
}

@media (max-width: 768px) {
  .showcase-grid { grid-template-columns: 1fr; gap: 14px; }
  .showcase-side:last-child { grid-column: span 1; }
  .showcase-featured { margin: 0; }
  .feature-list-cols { grid-template-columns: 1fr 1fr; }
  .showcase-soon-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
}

@media (max-width: 480px) {
  .showcase-grid { gap: 12px; }
  .showcase-card { padding: 1.4rem 1.25rem; }
  .showcase-featured { padding: 1.6rem 1.25rem; }
  .showcase-name { font-size: 1.9rem; }
  .showcase-desc { font-size: 14px; }
  .feature-list-cols { grid-template-columns: 1fr; gap: 0.4rem; }
  .feature-item { font-size: 14px; }
  .feature-group-label { font-size: 11px; }
  .showcase-soon-list { grid-template-columns: 1fr; }
  .showcase-side-header h3 { font-size: 1.5rem; }
  .showcase-side-header p { font-size: 14px; }
  .btn.btn-lg { font-size: 16px; padding: 1rem 1.5rem; min-height: 50px; }
}
