/* home-v2.css — Premium 3D edition. Builds on home.css via cascade. */

:root {
  --depth-shadow: 0 30px 80px -20px rgba(0,0,0,0.55), 0 60px 120px -40px rgba(0,0,0,0.4);
  --glow: 0 0 60px rgba(var(--acc-rgb), 0.15), 0 0 120px rgba(var(--acc-rgb), 0.08);
}

/* ═══ GLOBAL 3D CONTEXT ═══ */
body { perspective: 2000px; }

/* Animated gradient mesh background (global) */
.mesh-bg {
  position: fixed; inset: 0; z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.mesh-bg::before, .mesh-bg::after {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: meshFloat 28s ease-in-out infinite;
}
.mesh-bg::before {
  background: radial-gradient(circle, rgba(var(--acc-rgb), 0.6), transparent 60%);
  top: -200px; left: -200px;
}
.mesh-bg::after {
  background: radial-gradient(circle, rgba(80, 150, 255, 0.35), transparent 60%);
  bottom: -200px; right: -200px;
  animation-delay: -14s;
}
@keyframes meshFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(200px, 150px) scale(1.1); }
  66% { transform: translate(-100px, 200px) scale(0.9); }
}

.noise-layer {
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* ═══ HERO 3D SCENE ═══ */
.hero { min-height: 100vh; padding-top: 180px; }
.hero-inner { transform-style: preserve-3d; grid-template-columns: 1.1fr 1fr !important; gap: 72px !important; }
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr !important; }
}

/* Glow orbs behind title */
.hero-left { position: relative; }
.hero-orb {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--acc-rgb), 0.18), transparent 55%);
  top: -100px; left: -200px;
  filter: blur(40px);
  z-index: -1;
  animation: orbPulse 6s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero-title {
  font-size: clamp(48px, 6vw, 84px) !important;
  font-weight: 500 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.02 !important;
  text-wrap: balance;
}
.hero-title em {
  background: linear-gradient(135deg, var(--acc) 0%, #7dd3fc 50%, #c084fc 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
  font-style: italic;
}
.hero-title em .w {
  background: inherit;
  background-size: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ═══ HERO DASH — floating 3D card with tilt ═══ */
.hero-right {
  perspective: 1400px;
  transform-style: preserve-3d;
}
.dash {
  transform-style: preserve-3d;
  transform: rotateY(-6deg) rotateX(4deg);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
  box-shadow:
    var(--depth-shadow),
    var(--glow),
    0 0 0 1px rgba(var(--acc-rgb), 0.15) inset;
  background: linear-gradient(180deg,
    rgba(15, 26, 44, 0.9),
    rgba(5, 11, 20, 0.95));
  backdrop-filter: blur(20px);
}
.hero-right:hover .dash {
  transform: rotateY(-2deg) rotateX(2deg) translateY(-4px);
}
.dash::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg,
    rgba(var(--acc-rgb), 0.35),
    transparent 30%,
    transparent 70%,
    rgba(var(--acc-rgb), 0.18));
  z-index: -1;
  filter: blur(2px);
}

/* Floating decorative chips around dash */
.hero-right { position: relative; }
.float-chip {
  position: absolute;
  padding: 10px 16px;
  background: rgba(10, 18, 32, 0.8);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(var(--acc-rgb), 0.2);
  border-radius: 12px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.5);
  z-index: 2;
  font-size: 12px;
  color: var(--fg-2);
  animation: chipFloat 6s ease-in-out infinite;
}
.float-chip .chip-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  background: color-mix(in oklab, var(--acc) 15%, transparent);
  color: var(--acc);
  display: flex; align-items: center; justify-content: center;
}
.float-chip strong { color: var(--fg); font-weight: 500; }
.float-chip .chip-val { font-family: var(--f-mono); color: var(--acc); font-weight: 500; }

.float-chip.fc-1 {
  top: -28px; right: 20px;
  animation-delay: 0s;
}
.float-chip.fc-2 {
  bottom: -24px; left: 30px;
  animation-delay: -3s;
}
.float-chip.fc-3 {
  top: 40%; right: -68px;
  animation-delay: -1.5s;
}

@keyframes chipFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@media (max-width: 1200px) {
  .float-chip.fc-3 { display: none; }
}
@media (max-width: 1024px) {
  .float-chip { display: none; }
  .dash { transform: none; }
}

/* ═══ BENTO / 3D CARD GRID FOR SOLUTIONS ═══ */
.sol-grid { perspective: 1600px; background: transparent !important; border: none !important; gap: 16px !important; }
.sol-card {
  transform-style: preserve-3d;
  background: linear-gradient(180deg,
    rgba(15, 26, 44, 0.7),
    rgba(10, 18, 32, 0.8)) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-lg) !important;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), border-color 0.3s, box-shadow 0.3s !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.sol-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: rgba(var(--acc-rgb), 0.3) !important;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(var(--acc-rgb), 0.15) inset;
}
.sol-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 200px at var(--mx, 50%) var(--my, 50%), rgba(var(--acc-rgb), 0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: inherit;
}
.sol-card:hover::after { opacity: 1; }

.sol-icon {
  width: 52px !important; height: 52px !important;
  background: linear-gradient(135deg,
    rgba(var(--acc-rgb), 0.18),
    rgba(var(--acc-rgb), 0.05)) !important;
  border: 1px solid rgba(var(--acc-rgb), 0.25) !important;
  box-shadow: 0 8px 20px -8px rgba(var(--acc-rgb), 0.3), 0 0 0 1px rgba(255,255,255,0.05) inset;
  transform: translateZ(30px);
}
.sol-icon svg { width: 24px; height: 24px; }

/* ═══ 3D GLOBE VISUAL ═══ */
.globe-section {
  position: relative;
  padding: 128px var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  overflow: visible;
}
@media (max-width: 900px) { .globe-section { grid-template-columns: 1fr; } }

.globe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 560px;
  margin: 0 auto;
  perspective: 1400px;
}
.globe {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: globeRotate 40s linear infinite;
}
@keyframes globeRotate {
  from { transform: rotateY(0deg) rotateX(-8deg); }
  to { transform: rotateY(360deg) rotateX(-8deg); }
}
.globe-ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(var(--acc-rgb), 0.18);
  border-radius: 50%;
  transform-style: preserve-3d;
}
.globe-ring:nth-child(1) { transform: rotateY(0deg); border-style: solid; border-color: rgba(var(--acc-rgb), 0.22); }
.globe-ring:nth-child(2) { transform: rotateY(30deg); }
.globe-ring:nth-child(3) { transform: rotateY(60deg); }
.globe-ring:nth-child(4) { transform: rotateY(90deg); border-style: solid; border-color: rgba(var(--acc-rgb), 0.22); }
.globe-ring:nth-child(5) { transform: rotateY(120deg); }
.globe-ring:nth-child(6) { transform: rotateY(150deg); }
.globe-ring.horiz:nth-child(7)  { transform: rotateX(90deg) rotateZ(0deg); border-style: solid; border-color: rgba(var(--acc-rgb), 0.25); }
.globe-ring.horiz:nth-child(8)  { transform: rotateX(90deg) scale(0.95); }
.globe-ring.horiz:nth-child(9)  { transform: rotateX(90deg) scale(0.75); }
.globe-ring.horiz:nth-child(10) { transform: rotateX(90deg) scale(0.5); border-color: rgba(var(--acc-rgb), 0.35); }

.globe-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 80px; height: 80px;
  margin: -40px 0 0 -40px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 0%, var(--acc) 25%, transparent 70%);
  filter: blur(2px);
  opacity: 0.95;
  animation: corePulse 3s ease-in-out infinite;
  box-shadow:
    0 0 60px rgba(var(--acc-rgb), 0.6),
    0 0 120px rgba(var(--acc-rgb), 0.3);
}
.globe-core::after {
  content: '';
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--acc-rgb), 0.4), transparent 65%);
  filter: blur(20px);
  animation: corePulse 3s ease-in-out infinite reverse;
}
@keyframes corePulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Brand mark at globe center — sits in front of core on the wrap (not rotating with globe) */
.globe-brand {
  position: absolute;
  top: 50%; left: 50%;
  width: 84px; height: 84px;
  margin: -42px 0 0 -42px;
  z-index: 5;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(10,18,32,0.85) 0%, rgba(10,18,32,0.4) 65%, transparent 100%);
  backdrop-filter: blur(4px);
}
.globe-brand::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(var(--acc-rgb), 0.35);
  box-shadow:
    0 0 20px rgba(var(--acc-rgb), 0.35) inset,
    0 0 30px rgba(var(--acc-rgb), 0.2);
  animation: brandRingPulse 3s ease-in-out infinite;
}
.globe-brand svg,
.globe-brand img {
  width: 56px; height: 56px;
  color: #fff;
  position: relative;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(var(--acc-rgb), 0.95))
    drop-shadow(0 0 22px rgba(var(--acc-rgb), 0.55))
    drop-shadow(0 2px 3px rgba(0,0,0,0.7));
  animation: brandPulse 3s ease-in-out infinite;
}
@keyframes brandPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes brandRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* Connection lines from core to nodes */
.globe-line {
  position: absolute;
  top: 50%; left: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--acc-rgb), 0.5), transparent);
  transform-origin: 0 0;
  opacity: 0.4;
  pointer-events: none;
}

/* Orbiting particle */
.globe-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 12px #fff, 0 0 24px var(--acc);
  transform-style: preserve-3d;
}

.globe-node {
  position: absolute;
  top: 50%; left: 50%;
  width: 48px; height: 48px;
  margin: -24px 0 0 -24px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(20, 32, 50, 0.95), rgba(8, 14, 24, 0.98));
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--node-c, var(--acc));
  box-shadow:
    0 10px 24px -6px rgba(0,0,0,0.6),
    0 0 24px -4px var(--node-c, var(--acc)),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transform-style: preserve-3d;
  transform: translate3d(var(--x, 0px), var(--y, 0px), var(--z, 0px));
  backdrop-filter: blur(8px);
}
.globe-node::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%, var(--node-c, var(--acc)), transparent 60%);
  opacity: 0.18;
  pointer-events: none;
}
.globe-node svg { position: relative; z-index: 1; filter: drop-shadow(0 0 6px currentColor); }

.globe-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(var(--acc-rgb), 0.15), transparent 55%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}

.globe-copy .section-eyebrow { color: var(--acc); }
.globe-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.gm-card {
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(15,26,44,0.6), rgba(5,11,20,0.8));
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 0.25s, border-color 0.25s;
}
.gm-card:hover { transform: translateY(-3px); border-color: rgba(var(--acc-rgb), 0.3); }
.gm-val {
  font-family: var(--f-mono);
  font-size: 26px;
  font-weight: 500;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.gm-label { font-size: 12px; color: var(--fg-4); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ═══ PROCESS — 3D STEP CARDS ═══ */
.proc-steps { perspective: 1400px; }
.proc-step {
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), background 0.3s;
  border-radius: 12px;
  padding: 24px 24px 24px 64px !important;
  margin-bottom: 4px;
  border-top: none !important;
}
.proc-step:last-child { border-bottom: none !important; }
.proc-step::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s, border-color 0.3s;
}
.proc-step:hover { transform: translateX(8px); background: rgba(15,26,44,0.4); }
.proc-step:hover::before { opacity: 1; border-color: rgba(var(--acc-rgb), 0.25); }
.proc-step .proc-num { left: 24px !important; }

/* ═══ IMPACT — layered 3D cards ═══ */
.impact { perspective: 1600px; background: transparent !important; padding: 96px var(--pad-x) !important; }
.impact-item {
  position: relative;
  padding: 48px 36px;
  background: linear-gradient(180deg, rgba(15,26,44,0.6), rgba(5,11,20,0.85));
  border: 1px solid var(--line);
  border-radius: 18px;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.4);
  overflow: hidden;
}
.impact-item:hover {
  transform: translateY(-10px) rotateX(4deg);
}
.impact-item::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 60%;
  background: linear-gradient(90deg, transparent, rgba(var(--acc-rgb), 0.08), transparent);
  transform: rotate(25deg);
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%) rotate(25deg); opacity: 0; }
  50% { transform: translateX(100%) rotate(25deg); opacity: 1; }
}
.impact-val {
  background: linear-gradient(135deg, var(--fg) 0%, var(--acc) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(72px, 10vw, 120px) !important;
}

/* ═══ TESTIMONIAL — depth ═══ */
.testimonial {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(15,26,44,0.3));
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 40px; left: var(--pad-x);
  font-family: var(--f-serif);
  font-size: 240px;
  line-height: 0.7;
  color: var(--acc);
  opacity: 0.1;
  pointer-events: none;
}
.testi-quote {
  font-size: clamp(32px, 4vw, 48px) !important;
  line-height: 1.2 !important;
}

/* ═══ WHY — 3D glass cards ═══ */
.why-grid { perspective: 1400px; gap: 16px !important; background: transparent !important; border: none !important; }
.why-card {
  background: linear-gradient(180deg, rgba(15,26,44,0.55), rgba(10,18,32,0.75)) !important;
  border: 1px solid var(--line);
  border-radius: 14px;
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  border-color: rgba(var(--acc-rgb), 0.3);
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--acc), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 44px !important; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(var(--acc-rgb), 0.18), rgba(var(--acc-rgb), 0.05));
  border: 1px solid rgba(var(--acc-rgb), 0.25);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -8px rgba(var(--acc-rgb), 0.3);
  margin-bottom: 24px;
  color: var(--acc);
}
.why-icon svg { width: 22px; height: 22px; }

/* ═══ CTA — premium spotlight ═══ */
.cta {
  position: relative;
  overflow: hidden;
}
.cta-bg {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(var(--acc-rgb), 0.15), transparent 70%),
    radial-gradient(ellipse 40% 30% at 30% 40%, rgba(120, 100, 255, 0.08), transparent 70%),
    radial-gradient(ellipse 40% 30% at 70% 60%, rgba(var(--acc-rgb), 0.1), transparent 70%) !important;
  animation: ctaPulse 10s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  margin: -400px 0 0 -400px;
  border-radius: 50%;
  border: 1px solid rgba(var(--acc-rgb), 0.08);
  animation: ringExpand 6s ease-out infinite;
  pointer-events: none;
}
.cta::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 500px; height: 500px;
  margin: -250px 0 0 -250px;
  border-radius: 50%;
  border: 1px solid rgba(var(--acc-rgb), 0.15);
  animation: ringExpand 6s ease-out infinite 2s;
  pointer-events: none;
}
@keyframes ringExpand {
  0% { transform: scale(0.3); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.cta-title {
  font-size: clamp(56px, 7vw, 92px) !important;
}
.cta-title em {
  background: linear-gradient(135deg, var(--acc), #7dd3fc, #c084fc);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}

/* Premium button */
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--acc), color-mix(in oklab, var(--acc) 80%, #c084fc));
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2) inset,
    0 10px 30px -10px rgba(var(--acc-rgb), 0.5),
    0 0 0 1px rgba(var(--acc-rgb), 0.4);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover::before { transform: translateX(100%); }

/* Nav glass premium */
.nav {
  background: color-mix(in oklab, var(--bg) 50%, transparent);
  backdrop-filter: blur(20px) saturate(150%);
}
.nav.stuck {
  background: color-mix(in oklab, var(--bg) 85%, transparent);
}

/* Section title — serif/sans swap with gradient on italic */
.section-title em {
  background: linear-gradient(135deg, var(--acc), #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Tilt-reactive surfaces ambient light */
.tilt {
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(.22,1,.36,1);
}

/* ═══ HERO FX CANVAS — bid-stream particle bg ═══ */
.hero-fx-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.85;
  mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}
.hero { position: relative; overflow: hidden; }
.hero-inner { position: relative; z-index: 1; }

/* ═══ DASH UPGRADE — glass reflection + inner glow ═══ */
.dash {
  position: relative;
  overflow: hidden;
}
.dash::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(var(--acc-rgb), 0.6),
    rgba(255,255,255,0.4),
    rgba(var(--acc-rgb), 0.6),
    transparent);
  opacity: 0.8;
  z-index: 2;
  pointer-events: none;
}
.dash-sheen {
  position: absolute;
  top: -50%; left: -50%;
  width: 70%; height: 200%;
  background: linear-gradient(100deg,
    transparent 0%,
    transparent 40%,
    rgba(var(--acc-rgb), 0.08) 48%,
    rgba(255,255,255,0.12) 50%,
    rgba(var(--acc-rgb), 0.08) 52%,
    transparent 60%,
    transparent 100%);
  transform: translateX(-100%) rotate(12deg);
  animation: dashSheen 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}
@keyframes dashSheen {
  0%, 100% { transform: translateX(-120%) rotate(12deg); }
  50% { transform: translateX(220%) rotate(12deg); }
}

/* Inner corner accent glows */
.dash::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 0% 0%, rgba(var(--acc-rgb), 0.35), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(192, 132, 252, 0.2), transparent 30%),
    linear-gradient(135deg,
      rgba(var(--acc-rgb), 0.35),
      transparent 30%,
      transparent 70%,
      rgba(var(--acc-rgb), 0.18));
  z-index: -1;
  filter: blur(2px);
}

/* Floating chips: add inner ring and premium polish */
.float-chip {
  position: absolute;
  padding: 11px 16px 11px 12px;
  background: linear-gradient(180deg, rgba(18, 30, 48, 0.92), rgba(10, 18, 32, 0.95));
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(var(--acc-rgb), 0.25);
  border-radius: 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow:
    0 20px 50px -15px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 1px 0 rgba(255,255,255,0.08) inset;
  z-index: 2;
  font-size: 12px;
  color: var(--fg-2);
  animation: chipFloat 6s ease-in-out infinite;
}
.float-chip::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 0%, rgba(var(--acc-rgb), 0.15), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}
.float-chip .chip-icon {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(var(--acc-rgb), 0.25), rgba(var(--acc-rgb), 0.08));
  border: 1px solid rgba(var(--acc-rgb), 0.35);
  color: var(--acc);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px -2px rgba(var(--acc-rgb), 0.4);
}
.float-chip strong { color: var(--fg); font-weight: 500; display: block; font-size: 11px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--fg-3); }
.float-chip .chip-val { font-family: var(--f-mono); color: var(--acc); font-weight: 500; font-size: 14px; margin-top: 1px; }

/* Hero orb more premium — layered glows */
.hero-orb {
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(var(--acc-rgb), 0.22), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(192, 132, 252, 0.12), transparent 60%);
  top: -140px; left: -240px;
  filter: blur(50px);
  z-index: 0;
  animation: orbPulse 7s ease-in-out infinite, orbDrift 20s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}

/* Dash hover: lift + stronger glow */
.hero-right:hover .dash {
  box-shadow:
    var(--depth-shadow),
    0 0 80px rgba(var(--acc-rgb), 0.25),
    0 0 160px rgba(var(--acc-rgb), 0.12),
    0 0 0 1px rgba(var(--acc-rgb), 0.3) inset;
}

/* Premium button — magnetic-ready */
.btn-primary {
  will-change: transform;
  transition: box-shadow 0.3s;
}
.btn-primary:hover {
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 16px 40px -12px rgba(var(--acc-rgb), 0.7),
    0 0 0 1px rgba(var(--acc-rgb), 0.5),
    0 0 60px rgba(var(--acc-rgb), 0.3);
}

/* Accent RGB variable needed for various effects */
body[data-accent="teal"] { --acc-rgb: 94, 234, 212; }
body[data-accent="amber"] { --acc-rgb: 245, 166, 35; }
body[data-accent="neutral"] { --acc-rgb: 226, 232, 240; }
