:root {
  /* 色彩系统 - 电影级调色板 */
  --intent-ivory: #fbf8f3;
  --intent-ivory-light: #fffbf7;
  --intent-aqua: #aee3e9;
  --intent-aqua-deep: #7dd3db;
  --intent-aqua-bright: #c4f1f5;
  --intent-aqua-glow: rgba(126, 209, 184, 0.6);
  --intent-lilac: #e8d7f8;
  --intent-lilac-deep: #d4b5f2;
  --intent-lilac-bright: #f3e7fc;
  --intent-lilac-glow: rgba(216, 184, 255, 0.6);
  --intent-gold: #ead8b1;
  --intent-gold-deep: #dfc48e;
  --intent-gold-bright: #f5e8cf;
  --intent-gold-glow: rgba(234, 216, 177, 0.6);
  --intent-deep: #1e1b2f;
  --intent-deep-light: #2d2a42;
  --intent-muted: rgba(30, 27, 47, 0.68);
  --intent-subtle: rgba(30, 27, 47, 0.45);
  --intent-ghost: rgba(30, 27, 47, 0.22);
  
  /* 景深层次 */
  --z-background: 0;
  --z-base: 1;
  --z-elevated: 10;
  --z-floating: 20;
  --z-modal: 30;
  --z-overlay: 40;
  --z-top: 50;
  
  /* 玻璃态效果 */
  --glass: rgba(255, 255, 255, 0.22);
  --glass-strong: rgba(255, 255, 255, 0.42);
  --glass-ultra: rgba(255, 255, 255, 0.68);
  --glass-border: rgba(255, 255, 255, 0.75);
  
  /* 阴影系统 - 电影级多层次深度 */
  --shadow-xs: 0 2px 8px rgba(30, 27, 47, 0.04);
  --shadow-sm: 0 8px 20px rgba(30, 27, 47, 0.08);
  --shadow-md: 0 16px 32px rgba(30, 27, 47, 0.12);
  --shadow-lg: 0 28px 56px rgba(30, 27, 47, 0.16);
  --shadow-xl: 0 40px 80px rgba(30, 27, 47, 0.20);
  --shadow-2xl: 0 50px 100px rgba(30, 27, 47, 0.24);
  --shadow-3xl: 0 60px 140px rgba(30, 27, 47, 0.28);
  --shadow-inner: inset 0 2px 12px rgba(255, 255, 255, 0.6);
  --shadow-inner-strong: inset 0 4px 20px rgba(255, 255, 255, 0.8);
  
  /* 光效系统 */
  --glow-aqua: 0 0 40px var(--intent-aqua-glow);
  --glow-lilac: 0 0 40px var(--intent-lilac-glow);
  --glow-gold: 0 0 40px var(--intent-gold-glow);
  --glow-soft: 0 0 60px rgba(255, 255, 255, 0.4);
  --glow-strong: 0 0 80px rgba(255, 255, 255, 0.6);
  
  /* 渐变系统 */
  --gradient-aurora: linear-gradient(135deg, 
    rgba(174, 227, 233, 0.95) 0%, 
    rgba(232, 215, 248, 0.95) 50%, 
    rgba(234, 216, 177, 0.95) 100%);
  --gradient-sky: linear-gradient(180deg, 
    rgba(174, 227, 233, 0.15) 0%, 
    rgba(232, 215, 248, 0.08) 100%);
  --gradient-radial-glow: radial-gradient(circle at 50% 0%, 
    rgba(255, 255, 255, 0.8), 
    transparent 70%);
  
  /* 间距系统 */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  
  /* 圆角系统 */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 40px;
  --radius-full: 999px;
  
  /* 过渡系统 - 专业级缓动曲线 */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-elastic: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth-out: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth-in: 0.3s cubic-bezier(0.4, 0, 1, 1);
  
  /* 模糊效果 */
  --blur-sm: 8px;
  --blur-md: 16px;
  --blur-lg: 24px;
  --blur-xl: 40px;
}

/* 全局平滑滚动 */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--intent-ivory);
  color: var(--intent-deep);
  min-height: 100vh;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Inter", sans-serif;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.01em;
  line-height: 1.6;
}

/* 优化选择文本样式 */
::selection {
  background: var(--intent-aqua-bright);
  color: var(--intent-deep);
}

::-moz-selection {
  background: var(--intent-aqua-bright);
  color: var(--intent-deep);
}

/* 优化焦点样式 */
:focus-visible {
  outline: 2px solid var(--intent-aqua);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* 减少动画对于偏好减少动效的用户 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.intent-journey-frame[data-stage="intent"] .journey-background {
  background: radial-gradient(circle at 18% 20%, rgba(174, 227, 233, 0.45), transparent 62%),
    radial-gradient(circle at 75% 15%, rgba(232, 215, 248, 0.35), transparent 68%),
    radial-gradient(circle at 50% 80%, rgba(234, 216, 177, 0.28), transparent 70%);
}

.intent-journey-frame[data-stage="question"] .journey-background {
  background: radial-gradient(circle at 20% 30%, rgba(234, 216, 177, 0.35), transparent 65%),
    radial-gradient(circle at 70% 65%, rgba(232, 215, 248, 0.4), transparent 70%),
    radial-gradient(circle at 50% 85%, rgba(174, 227, 233, 0.32), transparent 75%);
}

.intent-journey-frame[data-stage="timespace"] .journey-background {
  background: radial-gradient(circle at 18% 25%, rgba(174, 227, 233, 0.4), transparent 60%),
    radial-gradient(circle at 68% 35%, rgba(125, 211, 255, 0.38), transparent 72%),
    radial-gradient(circle at 45% 80%, rgba(232, 215, 248, 0.32), transparent 75%);
}

.intent-journey-frame[data-stage="calculation"] .journey-background {
  background: radial-gradient(circle at 25% 25%, rgba(174, 227, 233, 0.45), transparent 55%),
    radial-gradient(circle at 70% 40%, rgba(232, 215, 248, 0.6), transparent 70%),
    radial-gradient(circle at 50% 85%, rgba(255, 255, 255, 0.35), transparent 75%);
}

.intent-journey-frame[data-stage="result"] .journey-background {
  background: radial-gradient(circle at 22% 28%, rgba(255, 217, 125, 0.35), transparent 65%),
    radial-gradient(circle at 72% 32%, rgba(232, 215, 248, 0.45), transparent 70%),
    radial-gradient(circle at 50% 82%, rgba(174, 227, 233, 0.35), transparent 75%);
}

.intent-journey-frame[data-stage="followup"] .journey-background {
  background: radial-gradient(circle at 20% 20%, rgba(144, 238, 144, 0.32), transparent 62%),
    radial-gradient(circle at 72% 30%, rgba(125, 211, 255, 0.32), transparent 70%),
    radial-gradient(circle at 50% 85%, rgba(232, 215, 248, 0.28), transparent 75%);
}

.site-header,
.site-footer {
  display: none;
}

.intent-journey-frame {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 80px;
}

.journey-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(174, 227, 233, 0.32), transparent 70%),
    radial-gradient(circle at 50% 70%, rgba(232, 215, 248, 0.35), transparent 65%);
}

.journey-background::before,
.journey-background::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(174, 227, 233, 0.25), transparent 70%);
  filter: blur(80px);
  animation: backgroundDrift 26s ease-in-out infinite;
  opacity: 0.65;
}

.journey-background::after {
  background: radial-gradient(circle, rgba(232, 215, 248, 0.28), transparent 70%);
  animation-duration: 34s;
  animation-direction: reverse;
}

.aurora-layer {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 55%);
  filter: blur(60px);
  animation: auroraFloat 22s ease-in-out infinite;
}

.aurora-layer--two {
  animation-delay: 6s;
  background: radial-gradient(circle, rgba(174, 227, 233, 0.28), transparent 55%);
}

.aurora-layer--three {
  animation-delay: 12s;
  background: radial-gradient(circle, rgba(232, 215, 248, 0.25), transparent 60%);
}

@keyframes auroraFloat {
  0% { transform: translate3d(-6%, -4%, 0) scale(1); }
  50% { transform: translate3d(6%, 5%, 0) scale(1.08); }
  100% { transform: translate3d(-6%, -4%, 0) scale(1); }
}

/* Home canvas */
.home-canvas {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  padding: clamp(40px, 6vw, 140px) 20px clamp(80px, 10vw, 200px);
}

.hero-shell {
  position: relative;
  width: min(1200px, 100%);
  display: grid;
  gap: 40px;
  padding: clamp(28px, 4vw, 46px);
  border-radius: clamp(28px, 4vw, 40px);
  background: linear-gradient(160deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.75) 100%);
  border: 1.5px solid var(--glass-border);
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    var(--shadow-2xl),
    0 0 80px rgba(174, 227, 233, 0.15);
  backdrop-filter: blur(var(--blur-lg)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur-lg)) saturate(180%);
  overflow: hidden;
  isolation: isolate;
  justify-items: stretch;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hero-shell:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.6) inset,
    0 60px 120px rgba(30, 27, 47, 0.22),
    0 0 100px rgba(174, 227, 233, 0.2);
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  inset: -40% -30% auto;
  height: 120%;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}

.hero-shell::before {
  background: radial-gradient(circle, rgba(174, 227, 233, 0.35), transparent 70%);
  animation: shellGlow 18s ease-in-out infinite;
}

.hero-shell::after {
  inset: auto -30% -50% -40%;
  background: radial-gradient(circle, rgba(232, 215, 248, 0.35), transparent 70%);
  animation: shellGlow 22s ease-in-out infinite reverse;
}

.hero-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.82) 100%);
  box-shadow: 
    var(--shadow-md),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
  transition: all var(--transition-smooth);
}

.hero-topbar:hover {
  box-shadow: 
    var(--shadow-lg),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.hero-topbar__status {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.hero-topbar__badge {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: linear-gradient(120deg, 
    var(--intent-aqua-bright) 0%, 
    var(--intent-lilac-bright) 100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--intent-muted);
  box-shadow: 
    0 4px 12px rgba(174, 227, 233, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset;
  transition: all var(--transition-base);
  cursor: default;
}

.hero-topbar__badge:hover {
  transform: translateY(-1px);
  box-shadow: 
    0 6px 16px rgba(174, 227, 233, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.hero-topbar__clock {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(30, 27, 47, 0.55);
}

.hero-topbar__clock-time {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(30, 27, 47, 0.82);
}

.hero-topbar__resume {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(30, 27, 47, 0.14);
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-topbar__resume span:first-child { font-size: 16px; }
.hero-topbar__resume.hidden { display: none; }
.hero-topbar__resume:hover { transform: translateY(-2px); box-shadow: 0 18px 30px rgba(30, 27, 47, 0.15); }

.hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 5vw, 48px);
  width: 100%;
}

@media (min-width: 992px) {
  .hero-stage {
    grid-template-columns: 1.06fr 0.94fr;
    align-items: center;
  }
}

.hero-stage__primary {
  display: grid;
  gap: clamp(22px, 3vw, 32px);
  align-content: start;
  position: relative;
  z-index: 1;
}

.hero-intro {
  display: grid;
  gap: 18px;
  text-align: left;
}

.hero-pill {
  justify-self: flex-start;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(30, 27, 47, 0.6);
}

.hero-intro h1 {
  margin: 0;
  font-family: "DM Serif Display", "Georgia", serif;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.12;
  font-weight: 500;
  color: rgba(30, 27, 47, 0.96);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, 
    rgba(30, 27, 47, 0.96) 0%,
    rgba(30, 27, 47, 0.78) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 12px rgba(174, 227, 233, 0.15);
  animation: titleFloat 6s ease-in-out infinite;
}

@keyframes titleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.hero-intro p {
  margin: 0;
  font-size: clamp(15px, 2.3vw, 18px);
  line-height: 1.7;
  color: rgba(30, 27, 47, 0.65);
}

.hero-highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.hero-highlights li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.88) 0%,
    rgba(174, 227, 233, 0.28) 50%,
    rgba(232, 215, 248, 0.32) 100%);
  border: 1px solid var(--glass-border);
  box-shadow: 
    var(--shadow-md),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset;
  color: rgba(30, 27, 47, 0.82);
  backdrop-filter: blur(var(--blur-sm));
  -webkit-backdrop-filter: blur(var(--blur-sm));
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.hero-highlights li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    var(--intent-aqua) 0%,
    var(--intent-lilac) 50%,
    var(--intent-gold) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.hero-highlights li:hover {
  transform: translateY(-4px);
  box-shadow: 
    var(--shadow-lg),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset,
    0 0 30px rgba(174, 227, 233, 0.2);
}

.hero-highlights li:hover::before {
  opacity: 1;
}

.hero-highlights li span {
  font-size: 15px;
  font-weight: 600;
}

.hero-highlights li small {
  font-size: 12px;
  color: rgba(30, 27, 47, 0.55);
  letter-spacing: 0.02em;
}

.hero-intents {
  position: relative;
  padding: 6px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 24px 46px rgba(30, 27, 47, 0.12);
}

.intent-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 72%);
  gap: 18px;
  padding: 12px 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.intent-carousel::before,
.intent-carousel::after {
  content: "";
  position: sticky;
  top: 0;
  width: 24px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), transparent);
  z-index: 1;
}

.intent-carousel::before { left: 0; }
.intent-carousel::after {
  right: 0;
  transform: rotate(180deg);
}

.intent-carousel::-webkit-scrollbar { display: none; }

.hero-stage__visual {
  position: relative;
  display: grid;
  gap: 28px;
  justify-items: center;
  z-index: 1;
  max-width: 420px;
  width: 100%;
  min-height: 300px;
}

.hero-focus {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
}

.hero-focus__orb {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  width: clamp(280px, 36vw, 400px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  cursor: pointer;
  overflow: visible;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform var(--transition-elastic), box-shadow var(--transition-elastic);
  box-shadow: 
    0 50px 120px rgba(30, 27, 47, 0.32),
    0 20px 60px rgba(174, 227, 233, 0.25),
    var(--glow-aqua),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset,
    var(--shadow-inner-strong);
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), 
    rgba(255, 255, 255, 0.98) 0%, 
    rgba(255, 255, 255, 0.92) 30%,
    rgba(174, 227, 233, 0.6) 60%,
    rgba(232, 215, 248, 0.5) 85%,
    rgba(234, 216, 177, 0.4) 100%);
  animation: orbBreath 10s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(174, 227, 233, 0.3));
}

@keyframes orbBreath {
  0%, 100% { 
    box-shadow: 
      0 50px 120px rgba(30, 27, 47, 0.32),
      0 20px 60px rgba(174, 227, 233, 0.25),
      var(--glow-aqua),
      0 0 0 1px rgba(255, 255, 255, 0.4) inset,
      var(--shadow-inner-strong);
    transform: scale(1) translateZ(0);
  }
  33% {
    box-shadow: 
      0 55px 130px rgba(30, 27, 47, 0.34),
      0 25px 70px rgba(232, 215, 248, 0.3),
      var(--glow-lilac),
      0 0 0 1px rgba(255, 255, 255, 0.5) inset,
      var(--shadow-inner-strong);
    transform: scale(1.02) translateZ(0);
  }
  66% {
    box-shadow: 
      0 52px 125px rgba(30, 27, 47, 0.33),
      0 22px 65px rgba(234, 216, 177, 0.28),
      var(--glow-gold),
      0 0 0 1px rgba(255, 255, 255, 0.45) inset,
      var(--shadow-inner-strong);
    transform: scale(1.01) translateZ(0);
  }
}

.hero-focus__orb:hover {
  transform: scale(1.08) translateY(-6px) translateZ(10px);
  box-shadow: 
    0 60px 140px rgba(30, 27, 47, 0.36),
    0 30px 80px rgba(174, 227, 233, 0.35),
    var(--glow-strong),
    0 0 0 2px rgba(255, 255, 255, 0.6) inset,
    var(--shadow-inner-strong);
  filter: drop-shadow(0 0 60px rgba(174, 227, 233, 0.5)) brightness(1.05);
}

.hero-focus__orb:active {
  transform: scale(0.96) translateY(-2px);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 35px 90px rgba(30, 27, 47, 0.3),
    0 15px 50px rgba(174, 227, 233, 0.2),
    var(--glow-aqua),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

.hero-focus__orb::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.9), rgba(174, 227, 233, 0.25) 55%, rgba(232, 215, 248, 0.15) 75%);
  filter: blur(12px);
  opacity: 0.9;
  transition: opacity 0.5s ease;
}

.hero-focus__orb[data-touched="true"]::after { opacity: 0.35; }

.hero-focus__pulse {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 227, 233, 0.18), transparent 70%);
  animation: heroPulse 6s ease-in-out infinite;
  filter: blur(30px);
}

.hero-focus__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.98), rgba(174, 227, 233, 0.6) 58%, rgba(232, 215, 248, 0.62) 80%);
  mix-blend-mode: screen;
  opacity: 0.92;
}

.hero-focus__halo {
  position: absolute;
  inset: -18%;
  border-radius: inherit;
  background: conic-gradient(from 90deg, rgba(232, 215, 248, 0.35), rgba(174, 227, 233, 0.18), rgba(232, 215, 248, 0.35));
  filter: blur(36px);
  animation: heroHalo 8s linear infinite;
}

.hero-focus__core {
  position: absolute;
  inset: 26%;
  border-radius: 50%;
  background: radial-gradient(circle at calc(var(--pointer-x)) calc(var(--pointer-y)), rgba(255, 255, 255, 0.85), rgba(174, 227, 233, 0.45));
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
}

.hero-focus__hint {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 14px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(30, 27, 47, 0.56);
  opacity: 0;
  animation: hintPulse 4s ease-in-out infinite;
}

[data-sphere][data-touched="false"] .hero-focus__hint { opacity: 1; }

.hero-focus:hover { --pointer-x: 52%; --pointer-y: 52%; }

.hero-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(30, 27, 47, 0.55);
}

.hero-floater {
  position: absolute;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 36px rgba(30, 27, 47, 0.1);
  backdrop-filter: blur(10px);
  animation: floaterDrift 12s ease-in-out infinite;
}

.hero-floater--north { top: -38px; left: 14%; animation-delay: 0s; }
.hero-floater--east { right: -24px; top: 36%; animation-delay: 3.2s; }
.hero-floater--south { left: 6%; bottom: -32px; animation-delay: 5.5s; }

@keyframes heroPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.45; }
  50% { transform: scale(1.06); opacity: 0.9; }
}

@keyframes heroHalo {
  to { transform: rotate(360deg); }
}

@keyframes shellGlow {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.3; }
  50% { transform: rotate(18deg) scale(1.08); opacity: 0.55; }
}

@keyframes floaterDrift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0) scale(1.02); }
}

@keyframes backgroundDrift {
  0% { transform: translate3d(-4%, -2%, 0) scale(1); }
  50% { transform: translate3d(5%, 6%, 0) scale(1.05); }
  100% { transform: translate3d(-4%, -2%, 0) scale(1); }
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.65; }
}

@keyframes anthemGlow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.55; }
  50% { transform: translate3d(6%, -4%, 0) scale(1.06); opacity: 0.85; }
}

@keyframes crestPulse {
  0%, 100% { transform: scale(0.96) rotate(-4deg); opacity: 0.65; }
  50% { transform: scale(1.08) rotate(4deg); opacity: 1; }
}

@keyframes oracleCurrent {
  0% { transform: translate3d(-6%, -8%, 0) scale(1); }
  50% { transform: translate3d(8%, 6%, 0) scale(1.04); }
  100% { transform: translate3d(-6%, -8%, 0) scale(1); }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes meterBreath {
  0%, 100% { opacity: 0.35; transform: scale(0.94); }
  50% { opacity: 0.75; transform: scale(1.06); }
}

@keyframes ctaBreath {
  0%, 100% { box-shadow: 0 28px 70px rgba(30,27,47,0.24); }
  50% { box-shadow: 0 34px 90px rgba(30,27,47,0.3); }
}

@keyframes auraGlow {
  0%, 100% { box-shadow: 0 0 32px rgba(234,216,177,0.22); }
  33% { box-shadow: 0 0 36px rgba(174,227,233,0.24); }
  66% { box-shadow: 0 0 36px rgba(232,215,248,0.24); }
}

.hero-digest {
  display: grid;
  gap: 16px;
}

.hero-digest--floating {
  display: grid;
  gap: 16px;
  width: min(320px, 100%);
  margin: 0 auto;
}

.hero-digest--floating .digest-card {
  position: relative;
  overflow: hidden;
  animation: digestFloat 10s ease-in-out infinite;
}

.hero-digest--floating .digest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), transparent 65%);
  pointer-events: none;
}

.hero-digest--floating .digest-card:nth-child(2) {
  animation-delay: 2.6s;
}

@keyframes digestFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.hero-actions {
  margin-top: 4px;
}

.hero-actions--inline {
  width: 100%;
}

.digest-card {
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--glass-border);
  background: linear-gradient(145deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.88) 100%);
  box-shadow: 
    var(--shadow-md),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
  padding: 22px;
  display: grid;
  gap: 12px;
  transition: all var(--transition-smooth);
}

.digest-card:hover {
  transform: translateY(-2px);
  box-shadow: 
    var(--shadow-lg),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.digest-card__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(30,27,47,0.5);
}

.digest-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

.digest-card__caption {
  margin: 0;
  font-size: 14px;
  color: var(--intent-muted);
}

.digest-card--mini {
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 14px;
}

.digest-card__media {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(30,27,47,0.08);
  background-size: cover;
  background-position: center;
}

.digest-card__meta {
  display: grid;
  gap: 4px;
}

.digest-card__meta strong { font-size: 15px; }
.digest-card__meta span { font-size: 12px; color: rgba(30,27,47,0.6); }
.digest-card__meta small { font-size: 11px; color: rgba(30,27,47,0.45); }


.intent-carousel {
  scrollbar-width: none;
}

.intent-carousel::-webkit-scrollbar { display: none; }


.intent-chip {
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--glass-border);
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.92) 0%,
    rgba(174, 227, 233, 0.38) 50%,
    rgba(232, 215, 248, 0.42) 100%);
  box-shadow: 
    var(--shadow-md),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.intent-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(174, 227, 233, 0.15) 0%,
    rgba(232, 215, 248, 0.15) 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.intent-chip:hover::before {
  opacity: 1;
}

.intent-chip__emoji { font-size: 28px; }
.intent-chip__body { display: grid; gap: 4px; text-align: left; }
.intent-chip__body strong { font-size: 16px; }
.intent-chip__body small { font-size: 12px; color: rgba(30,27,47,0.6); }
.intent-chip__cta { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(30,27,47,0.45); }

.intent-chip:hover,
.intent-chip:focus-visible {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 
    var(--shadow-xl),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 0 40px rgba(174, 227, 233, 0.3);
  border-color: rgba(255, 255, 255, 0.85);
}

.intent-chip:active {
  transform: translateY(-2px) scale(0.99);
  transition: transform 0.1s ease;
}

.hero-actions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-actions__item {
  display: grid;
  gap: 8px;
  padding: 18px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.92) 0%,
    rgba(174, 227, 233, 0.35) 100%);
  text-align: left;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.5;
  box-shadow: 
    var(--shadow-sm),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset;
  backdrop-filter: blur(var(--blur-sm));
  -webkit-backdrop-filter: blur(var(--blur-sm));
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.hero-actions__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, 
    rgba(174, 227, 233, 0.2) 0%,
    rgba(232, 215, 248, 0.2) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.hero-actions__item:hover::before {
  opacity: 1;
}

.hero-actions__item span:first-child { font-size: 18px; }
.hero-actions__item strong { display: block; font-size: 13px; }
.hero-actions__item small { color: rgba(30,27,47,0.55); font-size: 11px; }

.hero-actions__item:hover,
.hero-actions__item:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    var(--shadow-lg),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset,
    0 0 30px rgba(174, 227, 233, 0.25);
}

.hero-actions__item:active {
  transform: translateY(-1px) scale(0.98);
  transition: transform 0.1s ease;
}

.journey-fab {
  position: sticky;
  bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  background: var(--gradient-aurora);
  box-shadow: 
    var(--shadow-xl),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset,
    0 0 60px rgba(174, 227, 233, 0.4);
  color: rgba(30, 27, 47, 0.96);
  cursor: pointer;
  transition: all var(--transition-smooth);
  align-self: center;
  margin: 0 auto;
  animation: fabPulse 4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

@keyframes fabPulse {
  0%, 100% {
    box-shadow: 
      var(--shadow-xl),
      0 0 0 1px rgba(255, 255, 255, 0.4) inset,
      0 0 60px rgba(174, 227, 233, 0.4);
  }
  50% {
    box-shadow: 
      var(--shadow-2xl),
      0 0 0 1px rgba(255, 255, 255, 0.5) inset,
      0 0 80px rgba(232, 215, 248, 0.5);
  }
}

.journey-fab::before {
  content: '';
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 90deg,
    rgba(255, 255, 255, 0.3) 90deg 180deg,
    transparent 180deg 270deg,
    rgba(255, 255, 255, 0.3) 270deg 360deg
  );
  animation: fabShine 3s linear infinite;
}

@keyframes fabShine {
  to { transform: rotate(360deg); }
}

.journey-fab__icon { 
  font-size: 20px; 
  position: relative;
  z-index: 1;
}

.journey-fab__text {
  position: relative;
  z-index: 1;
}

.journey-fab:hover,
.journey-fab:focus-visible {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 
    var(--shadow-3xl),
    0 0 0 2px rgba(255, 255, 255, 0.7) inset,
    var(--glow-strong),
    0 12px 40px rgba(174, 227, 233, 0.4);
  animation: fabHover 0.6s ease-out forwards;
}

@keyframes fabHover {
  0% { filter: brightness(1); }
  50% { filter: brightness(1.1); }
  100% { filter: brightness(1.05); }
}

.journey-fab:active {
  transform: translateY(-3px) scale(1.03);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}



.journey-wrapper {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.journey-wrapper.hidden { display: none; }

.journey-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 28, 0.4);
  backdrop-filter: blur(6px);
}

.journey-sheet {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  max-height: 94vh;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.95) 100%);
  border: 1.5px solid var(--glass-border);
  border-bottom: none;
  box-shadow: 
    0 -30px 80px rgba(30, 27, 47, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 -10px 60px rgba(174, 227, 233, 0.2);
  backdrop-filter: blur(var(--blur-xl)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur-xl)) saturate(180%);
  display: grid;
  grid-template-rows: auto auto 1fr;
  overflow: hidden;
  padding-bottom: max(env(safe-area-inset-bottom), 20px);
  animation: sheetSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes sheetSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.journey-sheet__header {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 24px 24px 12px;
}

.journey-sheet__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(30,27,47,0.1);
  background: rgba(255,255,255,0.8);
  cursor: pointer;
}

.journey-sheet__close span {
  display: block;
  width: 14px;
  height: 14px;
  margin: 10px auto;
  position: relative;
}

.journey-sheet__close span::before,
.journey-sheet__close span::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 14px;
  height: 2px;
  background: rgba(30,27,47,0.6);
  border-radius: 2px;
}

.journey-sheet__close span::before { transform: rotate(45deg); }
.journey-sheet__close span::after { transform: rotate(-45deg); }

.journey-sheet__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.journey-brand__orb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(174,227,233,0.6));
  box-shadow: inset 0 0 25px rgba(255,255,255,0.6), 0 15px 30px rgba(30,27,47,0.15);
}

.journey-brand__copy { display: flex; flex-direction: column; line-height: 1.2; }
.journey-brand__title { font-family: "DM Serif Display", serif; font-size: 22px; }
.journey-brand__dot { color: rgba(216,184,255,0.9); }
.journey-brand__subtitle { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(30,27,47,0.55); }

.journey-progress { display: grid; gap: 6px; }
.journey-progress__step { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(30,27,47,0.55); }
.journey-progress__bar { position: relative; height: 6px; border-radius: 999px; background: rgba(30, 27, 47, 0.08); overflow: hidden; }
.journey-progress__fill { position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(90deg, rgba(174, 227, 233, 0.9), rgba(232, 215, 248, 0.9), rgba(234, 216, 177, 0.9)); transition: width 0.6s ease; }

.journey-narration {
  margin: 0 24px 16px;
  border-radius: 24px;
  border: 1px solid var(--glass-strong);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 25px 45px rgba(30, 27, 47, 0.12);
  padding: 24px;
  display: grid;
  gap: 12px;
}

.journey-narration__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(30, 27, 47, 0.45);
}

.journey-narration__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--intent-deep);
}

.journey-content { padding: 24px 24px 40px; display: grid; gap: 40px; overflow-y: auto; }

.journey-step {
  display: grid;
  gap: 32px;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.journey-step.hidden {
  display: none;
}

.journey-step.is-active {
  display: grid !important;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.journey-step__header h2 { font-family: "DM Serif Display", serif; font-size: clamp(28px, 4vw, 40px); margin: 0; }
.journey-step__header p { color: var(--intent-muted); margin: 0; }

.intent-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); 
  gap: 18px; 
}

.intent-card { 
  position: relative; 
  padding: 32px 28px; 
  border-radius: var(--radius-xl); 
  border: 2px solid var(--glass-border); 
  background: linear-gradient(155deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.92) 50%,
    rgba(255, 255, 255, 0.88) 100%);
  box-shadow: 
    var(--shadow-lg),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset,
    0 4px 16px rgba(174, 227, 233, 0.08);
  backdrop-filter: blur(var(--blur-md)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur-md)) saturate(180%);
  display: grid; 
  gap: 12px; 
  text-align: left; 
  cursor: pointer; 
  transition: all var(--transition-elastic);
  overflow: hidden;
  transform-origin: center;
  transform: translateZ(0);
}

.intent-card__emoji { 
  font-size: 32px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  transition: transform var(--transition-smooth);
}

.intent-card:hover .intent-card__emoji {
  transform: scale(1.1) translateY(-2px);
}

.intent-card__title { 
  font-weight: 600;
  font-size: 16px;
  color: rgba(30, 27, 47, 0.88);
  letter-spacing: -0.01em;
}

.intent-card__description { 
  font-size: 13px; 
  line-height: 1.5;
  color: var(--intent-subtle); 
}

.intent-card__glow { 
  position: absolute; 
  inset: -40%; 
  border-radius: 50%; 
  background: radial-gradient(circle, rgba(174, 227, 233, 0.4), transparent 70%); 
  filter: blur(var(--blur-xl)); 
  opacity: 0; 
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

.intent-card[aria-pressed="true"], 
.intent-card.is-active { 
  border-color: var(--intent-aqua); 
  box-shadow: 
    var(--shadow-lg),
    0 0 0 2px rgba(174, 227, 233, 0.3) inset,
    0 0 40px rgba(174, 227, 233, 0.3);
  transform: translateY(-2px);
}

.intent-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg,
    rgba(174, 227, 233, 0.15) 0%,
    rgba(232, 215, 248, 0.12) 50%,
    rgba(234, 216, 177, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  z-index: 0;
}

.intent-card > * {
  position: relative;
  z-index: 1;
}

.intent-card:hover {
  transform: translateY(-8px) scale(1.03) rotateX(2deg) translateZ(0);
  box-shadow: 
    var(--shadow-2xl),
    0 0 0 2px rgba(174, 227, 233, 0.3) inset,
    var(--glow-aqua),
    0 8px 24px rgba(174, 227, 233, 0.2);
  border-color: rgba(174, 227, 233, 0.6);
}

.intent-card:hover::before {
  opacity: 1;
}

.intent-card:active {
  transform: translateY(-4px) scale(0.99) translateZ(0);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.intent-card.is-active { 
  border-color: var(--intent-aqua);
  background: linear-gradient(155deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(174, 227, 233, 0.15) 100%);
  box-shadow: 
    var(--shadow-xl),
    0 0 0 2px rgba(174, 227, 233, 0.4) inset,
    var(--glow-aqua),
    0 4px 20px rgba(174, 227, 233, 0.25);
  transform: translateY(-4px) scale(1.02);
}

.intent-card.is-active::before {
  opacity: 0.6;
}

.intent-card.is-active .intent-card__glow, 
.intent-card:hover .intent-card__glow { 
  opacity: 1; 
}

.intent-focus { 
  display: grid; 
  gap: 16px;
  scroll-margin-top: 80px;
  padding-top: 24px;
  margin-top: 16px;
}

.intent-focus h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--intent-deep);
  animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intent-focus__options { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 12px;
  animation: fadeInUp 0.5s ease-out 0.1s both;
}

.intent-focus__options.hidden {
  display: none !important;
}

.focus-option { 
  padding: 10px 18px; 
  border-radius: 999px; 
  border: 1px solid rgba(30,27,47,0.18); 
  background: rgba(255,255,255,0.75); 
  cursor: pointer; 
  font-size: 14px; 
  transition: transform 0.3s ease, background 0.3s ease; 
}

.focus-option.is-active { 
  background: rgba(174, 227, 233, 0.6); 
  border-color: rgba(174, 227, 233, 0.9); 
}

.focus-option:hover { 
  transform: translateY(-2px); 
}

.journey-step__actions { display: flex; justify-content: flex-end; gap: 16px; }

.journey-button { 
  padding: 14px 28px; 
  border-radius: var(--radius-full); 
  border: 1px solid rgba(30, 27, 47, 0.12); 
  background: rgba(255, 255, 255, 0.88); 
  font-weight: 600; 
  font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer; 
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.journey-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(174, 227, 233, 0.1) 0%,
    rgba(232, 215, 248, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.journey-button:hover:not(:disabled)::before {
  opacity: 1;
}

.journey-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.journey-button:disabled { 
  opacity: 0.45; 
  cursor: not-allowed; 
  filter: grayscale(0.3);
}

.journey-button--primary { 
  background: var(--gradient-aurora);
  border: 2px solid rgba(255, 255, 255, 0.7); 
  box-shadow: 
    var(--shadow-lg),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset,
    var(--glow-soft);
  color: rgba(30, 27, 47, 0.94);
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.journey-button--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.journey-button--primary:hover:not(:disabled) { 
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    var(--shadow-2xl),
    0 0 0 2px rgba(255, 255, 255, 0.5) inset,
    var(--glow-strong),
    0 8px 32px rgba(174, 227, 233, 0.35);
}

.journey-button--primary:hover:not(:disabled)::before {
  opacity: 1;
}

.journey-button--primary:active:not(:disabled) {
  transform: translateY(-1px) scale(0.98);
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-button--ghost { 
  background: transparent; 
  border-color: rgba(30, 27, 47, 0.18);
  box-shadow: none;
}

.journey-button--ghost:hover:not(:disabled) {
  background: rgba(30, 27, 47, 0.04);
  border-color: rgba(30, 27, 47, 0.24);
}

.chat-canvas { background: rgba(255,255,255,0.8); border-radius: 24px; padding: 24px; border: 1px solid var(--glass-strong); display: grid; gap: 16px; position: relative; }
.chat-bubble { max-width: min(420px, 100%); padding: 16px 18px; border-radius: 20px; box-shadow: 0 12px 25px rgba(30,27,47,0.12); }
.chat-bubble--system { background: rgba(255,255,255,0.92); }
.chat-bubble--typing { display: inline-flex; align-items: center; gap: 6px; background: rgba(30,27,47,0.08); font-style: italic; color: var(--intent-muted); }
.chat-bubble--typing span { width: 6px; height: 6px; background: rgba(30,27,47,0.4); border-radius: 50%; animation: typingDots 1.4s infinite; }
.chat-bubble--typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-bubble--typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDots {
  0%,100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-4px); opacity: 0.8; }
}

.quick-reply-row { display: flex; flex-wrap: wrap; gap: 12px; }
.quick-reply { padding: 10px 16px; border-radius: 999px; border: 1px solid rgba(30,27,47,0.16); background: rgba(255,255,255,0.75); cursor: pointer; font-size: 13px; }
.quick-reply:hover { background: rgba(174,227,233,0.4); }

.question-input textarea {
  width: 100%;
  min-height: 120px;
  border-radius: 18px;
  border: 1px solid rgba(30,27,47,0.15);
  padding: 18px;
  font-size: 15px;
  background: rgba(255,255,255,0.85);
  resize: vertical;
}

.timespace-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.timespace-card { border-radius: 24px; border: 1px solid var(--glass-strong); background: rgba(255,255,255,0.85); padding: 24px; box-shadow: 0 25px 45px rgba(30,27,47,0.12); display: grid; gap: 16px; }
.timespace-card h3 { margin: 0; font-size: 20px; font-family: "DM Serif Display", serif; }
.timespace-options { display: grid; gap: 10px; }
.timespace-options button { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-radius: 16px; border: 1px solid rgba(30,27,47,0.12); background: rgba(174,227,233,0.3); cursor: pointer; transition: transform 0.3s ease, background 0.3s ease; }
.timespace-options button.is-active { background: rgba(232,215,248,0.55); border-color: rgba(232,215,248,0.9); }
.timespace-options button:hover { transform: translateY(-3px); }

.birth-form { display: grid; gap: 10px; padding-top: 12px; border-top: 1px dashed rgba(30,27,47,0.12); }
.birth-form input { border-radius: 14px; border: 1px solid rgba(30,27,47,0.15); padding: 10px 14px; background: rgba(255,255,255,0.85); }

.key-time { display: grid; gap: 10px; }
.key-time input { border-radius: 16px; border: 1px solid rgba(30,27,47,0.15); padding: 14px; background: rgba(255,255,255,0.85); }

.energy-sphere {
  position: relative;
  width: clamp(200px, 40vw, 280px);
  aspect-ratio: 1/1;
  margin: 20px auto;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(174,227,233,0.35) 60%, rgba(30,27,47,0.15) 100%);
  box-shadow: inset 0 0 80px rgba(255,255,255,0.45), 0 40px 80px rgba(30,27,47,0.18);
  overflow: hidden;
}

.energy-sphere span {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(232,215,248,0.4), transparent 70%);
  animation: sphereWave 8s ease-in-out infinite;
  mix-blend-mode: screen;
}
.energy-sphere span:nth-child(2) { animation-delay: 1.6s; }
.energy-sphere span:nth-child(3) { animation-delay: 3.2s; }

@keyframes sphereWave {
  0%,100% { transform: scale(0.92) rotate(0deg); opacity: 0.35; }
  50% { transform: scale(1.05) rotate(12deg); opacity: 0.6; }
}

.calculation-panel { display: grid; gap: 24px; place-items: center; padding: 48px 0; }
.calculation-orbit { width: 220px; height: 220px; border-radius: 50%; border: 2px solid rgba(174,227,233,0.4); position: relative; animation: orbitSpin 12s linear infinite; }
.calculation-orbit::after { content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%); width: 12px; height: 12px; border-radius: 50%; background: rgba(232,215,248,0.9); box-shadow: 0 0 20px rgba(232,215,248,0.6); }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.engine-status { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; width: min(320px, 90%); }
.engine-status li { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,0.85); border: 1px solid rgba(30,27,47,0.08); position: relative; }
.engine-status li span { display: inline-flex; width: 24px; height: 24px; border-radius: 50%; background: rgba(174,227,233,0.45); align-items: center; justify-content: center; font-weight: 600; }
.engine-status li strong { font-size: 14px; }
.engine-status li em { display: block; font-size: 12px; color: var(--intent-muted); font-style: normal; }
.engine-status li[data-status="complete"] { border-color: rgba(146, 230, 184, 0.65); background: rgba(225, 248, 236, 0.75); }

.journey-step__header--result {
  position: relative;
  padding-bottom: 0;
}

.result-anthem {
  position: relative;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,255,255,0.55));
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 18px 48px rgba(30,27,47,0.16);
  overflow: hidden;
}

.result-anthem::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(234, 216, 177, 0.3), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.7;
  animation: anthemGlow 12s ease-in-out infinite;
}

.result-anthem__crest {
  position: relative;
  font-size: 24px;
  color: rgba(30,27,47,0.72);
  animation: crestPulse 6s ease-in-out infinite;
}

.result-anthem__title {
  position: relative;
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(24, 22, 40, 0.9);
  text-shadow: 0 1px 12px rgba(255,255,255,0.6);
}

.result-anthem__subtitle {
  position: relative;
  margin: 2px 0 0;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(30,27,47,0.55);
}

.result-oracle {
  position: relative;
  margin-top: 32px;
  display: grid;
  gap: clamp(32px, 5vw, 48px);
  padding: clamp(32px, 4.5vw, 48px);
  border-radius: var(--radius-2xl);
  background: linear-gradient(160deg, 
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 255, 255, 0.65) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 
    var(--shadow-2xl),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 0 100px rgba(174, 227, 233, 0.15);
  backdrop-filter: blur(var(--blur-xl)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--blur-xl)) saturate(160%);
  overflow: hidden;
}

.result-aura {
  position: absolute;
  inset: -40% -30% 10% -30%;
  background: radial-gradient(circle at 20% 30%, rgba(234, 216, 177, 0.28), transparent 70%),
    radial-gradient(circle at 80% 60%, rgba(174, 227, 233, 0.35), transparent 75%),
    radial-gradient(circle at 50% 20%, rgba(232, 215, 248, 0.32), transparent 70%);
  filter: blur(90px);
  opacity: 0.55;
  animation: oracleCurrent 36s ease-in-out infinite;
  pointer-events: none;
}

.result-cascade {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.energy-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg,
    rgba(255, 255, 255, 0.65) 0%,
    rgba(255, 255, 255, 0.45) 100%);
  backdrop-filter: blur(var(--blur-lg)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--blur-lg)) saturate(150%);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 
    var(--shadow-lg),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  overflow: hidden;
  animation: floatCard 7s ease-in-out infinite;
  transition: all var(--transition-smooth);
}

.energy-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    var(--shadow-xl),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 0 50px rgba(174, 227, 233, 0.2);
}

.energy-card header {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
}

.energy-card h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(30,27,47,0.82);
}

.energy-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(30,27,47,0.72);
  text-shadow: 0 1px 4px rgba(255,255,255,0.45);
}

.energy-card small {
  font-size: 12px;
  color: rgba(30,27,47,0.55);
  letter-spacing: 0.02em;
}

.energy-card__icon {
  font-size: 26px;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.4));
  animation: pulse 3.6s ease-in-out infinite;
}

.energy-card__halo {
  position: absolute;
  inset: -40%;
  opacity: 0.35;
  filter: blur(50px);
  pointer-events: none;
}

.energy-card--timing .energy-card__halo {
  background: radial-gradient(circle, rgba(234, 216, 177, 0.65), transparent 70%);
}

.energy-card--action .energy-card__halo {
  background: radial-gradient(circle, rgba(174, 227, 233, 0.7), transparent 70%);
}

.energy-card--heart .energy-card__halo {
  background: radial-gradient(circle, rgba(232, 215, 248, 0.6), transparent 70%);
}

.energy-card--timing {
  animation-delay: 0s;
}

.energy-card--action {
  animation-delay: 1.8s;
}

.energy-card--heart {
  animation-delay: 3s;
}

.result-support {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(18px, 2.2vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.insight-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(30,27,47,0.12);
}

.insight-card header {
  display: grid;
  gap: 8px;
}

.insight-card h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(30,27,47,0.75);
}

.insight-card__mantra {
  margin: 0;
  font-size: 14px;
  color: rgba(30,27,47,0.65);
  text-shadow: 0 1px 4px rgba(255,255,255,0.4);
}

.insight-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: rgba(30,27,47,0.58);
}

.insight-card__list strong {
  color: rgba(30,27,47,0.78);
  margin-right: 6px;
}

.insight-card--qimen {
  background: rgba(174, 227, 233, 0.25);
}

.insight-card--liuyao {
  background: rgba(232, 215, 248, 0.25);
}

.insight-card--bracelet {
  background: linear-gradient(145deg, rgba(234, 216, 177, 0.3), rgba(174, 227, 233, 0.28));
  box-shadow: 0 20px 60px rgba(234, 216, 177, 0.22);
}

.bracelet-color {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.65);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}

.bracelet-color__swatch {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 14px 28px rgba(30,27,47,0.12);
}

.bracelet-color__copy {
  display: grid;
  gap: 4px;
}

.bracelet-color__hex {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(30,27,47,0.75);
}

.bracelet-color__copy small {
  color: rgba(30,27,47,0.58);
}

.result-cta--bracelet {
  justify-self: flex-start;
  background: rgba(234, 216, 177, 0.42);
  border-color: rgba(234, 216, 177, 0.52);
  color: rgba(30,27,47,0.78);
}

.result-cta--bracelet:hover,
.result-cta--bracelet:focus-visible {
  box-shadow: 0 26px 48px rgba(234, 216, 177, 0.3);
}

[data-bracelet-card][aria-hidden="true"] {
  display: none;
}

.result-cta--bracelet[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.energy-meter {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px);
}

.energy-meter--aura::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle, rgba(174, 227, 233, 0.35), transparent 70%);
  filter: blur(50px);
  opacity: 0.45;
  animation: meterBreath 8s ease-in-out infinite;
  pointer-events: none;
}

.energy-meter__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(30,27,47,0.6);
}

.energy-meter__bar {
  flex: 1;
  height: 12px;
  border-radius: 999px;
  background: rgba(30,27,47,0.12);
  position: relative;
  overflow: hidden;
}

.energy-meter__fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(234,216,177,0.95), rgba(174,227,233,0.95), rgba(232,215,248,0.95));
  transition: width 0.8s ease;
}

.energy-meter__value {
  font-weight: 600;
  font-size: 14px;
  color: rgba(30,27,47,0.75);
}

.result-actions {
  position: relative;
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

.result-actions__primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6);
  background: linear-gradient(125deg, rgba(234,216,177,0.9), rgba(174,227,233,0.9), rgba(232,215,248,0.92));
  box-shadow: 0 28px 70px rgba(30,27,47,0.24);
  color: rgba(30,27,47,0.9);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: ctaBreath 6s ease-in-out infinite;
}

.result-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.result-cta {
  position: relative;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.42);
  backdrop-filter: blur(14px);
  color: rgba(30,27,47,0.75);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.result-cta--glow {
  border-image: linear-gradient(90deg,#EAD8B1,#AEE3E9,#E8D7F8) 1;
  box-shadow: 0 0 32px rgba(234,216,177,0.25);
  animation: auraGlow 5s ease-in-out infinite;
}

.result-cta--secondary {
  background: rgba(174,227,233,0.35);
}

.result-cta--ghost {
  background: transparent;
}

.result-cta:hover,
.result-cta:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 48px rgba(30,27,47,0.18);
}

.reflection-panel textarea { width: 100%; min-height: 120px; border-radius: 18px; border: 1px solid rgba(30,27,47,0.15); padding: 16px; background: rgba(255,255,255,0.85); }

.mood-selector__options { display: flex; flex-wrap: wrap; gap: 12px; }
.mood-chip { padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(30,27,47,0.16); background: rgba(255,255,255,0.8); cursor: pointer; transition: transform 0.3s ease, background 0.3s ease; }
.mood-chip.is-active { background: rgba(174,227,233,0.5); border-color: rgba(174,227,233,0.9); }

.reminder-row { display: grid; gap: 16px; }
.reminder-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.reminder-button { padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(30,27,47,0.16); background: rgba(255,255,255,0.85); cursor: pointer; }
.reminder-button--ghost { background: transparent; }
.reminder-confirmation { color: rgba(186, 142, 65, 0.9); font-size: 14px; }

/* Tablet & smaller desktop */
@media (max-width: 992px) {
  .hero-shell { 
    padding: 36px 28px 48px;
    gap: 36px;
  }
  
  .hero-stage { 
    gap: 36px; 
  }
  
  .hero-stage__visual { 
    order: -1; 
    max-width: 100%;
  }
  
  .hero-stage__primary {
    text-align: center; 
    justify-items: center;
  }
  
  .hero-intro { 
    text-align: center; 
  }
  
  .hero-pill { 
    justify-self: center; 
  }
  
  .hero-highlights li { 
    text-align: left; 
  }
  
  .hero-floater--east { 
    right: 12px; 
  }
  
  .result-oracle { 
    padding: 32px 28px; 
  }
  
  .result-anthem { 
    width: 100%;
    justify-content: center; 
    text-align: center; 
  }
  
  .result-anthem__title { 
    font-size: clamp(26px, 5.5vw, 36px); 
  }
}

/* Mobile & Tablet */
@media (max-width: 768px) {
  .home-canvas { 
    padding: 24px 16px 80px; 
  }
  
  .hero-shell { 
    gap: 24px;
    padding: 24px 20px 32px;
    display: grid !important;
  }
  
  .hero-stage { 
    display: flex !important;
    flex-direction: column; 
    gap: 20px;
    width: 100% !important;
    min-height: auto;
  }
  
  .hero-stage__visual { 
    order: 0; 
    margin: 0 auto; 
    width: 100% !important;
    max-width: 100%;
    display: grid !important;
    justify-items: center;
    gap: 16px;
    min-height: 250px;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .hero-focus {
    width: 100% !important;
    max-width: 320px;
    display: grid !important;
    place-items: center;
    visibility: visible !important;
  }
  
  .hero-focus__orb {
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .hero-stage__primary {
    order: 1;
    width: 100% !important;
    display: grid !important;
    gap: 20px;
    justify-items: center;
    text-align: center;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .hero-intro { 
    text-align: center; 
    gap: 12px;
    display: grid !important;
    visibility: visible !important;
  }
  
  .hero-intro h1,
  .hero-intro p,
  .hero-pill {
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .hero-pill { 
    justify-self: center;
    display: inline-block !important;
  }
  
  .hero-highlights { 
    width: 100%;
    gap: 12px;
    display: grid !important;
    list-style: none !important;
  }
  
  .hero-highlights li { 
    width: 100%; 
    align-items: flex-start; 
    text-align: left;
    padding: 16px 18px;
    gap: 6px;
    display: flex !important;
    visibility: visible !important;
  }
  
  .hero-intents { 
    width: 100%; 
    padding: 6px;
    display: block !important;
    visibility: visible !important;
  }
  
  .hero-bottom { 
    width: 100%;
    display: flex !important;
    visibility: visible !important;
  }
  
  .hero-topbar { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 14px; 
    padding: 18px 20px;
  }
  
  .hero-topbar__resume { 
    width: 100%; 
    justify-content: center; 
  }
  
  .hero-topbar__status { 
    width: 100%; 
    justify-content: space-between; 
  }
  
  .hero-floater--north { 
    left: 8%; 
    font-size: 11px;
    padding: 8px 14px;
  }
  
  .hero-floater--south { 
    left: 2%; 
    font-size: 11px;
    padding: 8px 14px;
  }
  
  .hero-floater--east {
    font-size: 11px;
    padding: 8px 14px;
  }
  
  .hero-actions__grid { 
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
    gap: 14px;
  }
  
  .journey-sheet { 
    border-radius: var(--radius-xl) var(--radius-xl) 0 0; 
  }
  
  .journey-narration { 
    margin: 0 20px 16px; 
    padding: 20px;
  }
  
  .result-cascade { 
    grid-template-columns: 1fr; 
    gap: 20px;
  }
  
  .result-support { 
    grid-template-columns: 1fr; 
    gap: 18px;
  }
  
  .result-actions__primary { 
    width: 100%; 
    justify-content: center; 
  }
  
  .journey-fab {
    bottom: 20px;
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 540px) {
  .home-canvas {
    padding: 20px 16px 70px;
  }
  
  .hero-shell { 
    padding: 18px 16px 28px; 
    border-radius: var(--radius-md);
    gap: 20px;
  }
  
  .hero-topbar { 
    padding: 14px 16px;
  }
  
  .hero-stage {
    gap: 18px;
  }
  
  .hero-stage__visual {
    gap: 14px;
    min-height: auto;
  }
  
  .hero-focus {
    max-width: 280px;
  }
  
  .hero-stage__primary {
    gap: 16px;
  }
  
  .hero-intro {
    gap: 10px;
  }
  
  .hero-topbar__status { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 12px; 
  }
  
  .hero-topbar__clock { 
    width: 100%; 
    justify-content: space-between; 
  }
  
  .hero-focus {
    display: grid !important;
    place-items: center;
  }
  
  .hero-focus__orb { 
    width: clamp(220px, 68vw, 280px);
    height: auto;
    display: block !important;
    position: relative;
  }
  
  .hero-focus__hint {
    font-size: 12px;
    letter-spacing: 0.2em;
  }
  
  .hero-digest--floating { 
    width: 100%;
    gap: 12px;
    display: grid !important;
  }
  
  .digest-card {
    padding: 16px 18px;
  }
  
  .digest-card__title {
    font-size: 16px;
  }
  
  .digest-card__caption {
    font-size: 13px;
  }
  
  .digest-card--mini {
    grid-template-columns: 60px 1fr;
    gap: 12px;
  }
  
  .digest-card__media {
    width: 60px;
    height: 60px;
  }
  
  .hero-floater { 
    display: none; 
  }
  
  .hero-actions__grid { 
    grid-template-columns: 1fr; 
    gap: 10px;
  }
  
  .hero-actions__item {
    padding: 14px 16px;
  }
  
  .intent-chip {
    padding: 16px 18px;
  }
  
  .digest-card {
    padding: 14px 16px;
  }
  
  .digest-card__title {
    font-size: 15px;
  }
  
  .digest-card__caption {
    font-size: 12px;
  }
  
  .digest-card--mini {
    grid-template-columns: 56px 1fr;
    gap: 10px;
  }
  
  .digest-card__media {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }
  
  .journey-fab {
    bottom: 16px;
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .journey-sheet__header { 
    padding: 22px 20px 12px; 
  }
  
  .journey-content { 
    padding: 22px 20px 36px; 
  }
  
  .intent-grid { 
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); 
    gap: 16px;
  }
  
  .intent-card {
    padding: 24px 20px;
  }
  
  .result-oracle { 
    padding: 28px 20px; 
    border-radius: var(--radius-xl); 
  }
  
  .energy-card { 
    padding: 26px; 
    border-radius: var(--radius-lg);
  }
  
  .result-buttons { 
    flex-direction: column; 
    gap: 12px;
  }
  
  .result-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  
  .journey-fab {
    bottom: 20px;
    padding: 14px 26px;
    font-size: 13px;
    gap: 10px;
  }
  
  .journey-fab__icon {
    font-size: 18px;
  }
}
/* 滚动条美化 */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(30, 27, 47, 0.04);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg,
    var(--intent-aqua-bright),
    var(--intent-lilac-bright));
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: background var(--transition-base);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg,
    var(--intent-aqua),
    var(--intent-lilac));
}

/* Firefox 滚动条 */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--intent-aqua-bright) rgba(30, 27, 47, 0.04);
}

.journey-complete::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, 
    rgba(255, 255, 255, 0.6), 
    transparent 70%);
  pointer-events: none;
  animation: journeyPulse 0.8s ease-out;
}

@keyframes journeyPulse {
  0% { 
    opacity: 1;
    transform: scale(0.95);
  }
  100% { 
    opacity: 0;
    transform: scale(1.05);
  }
}

/* 加载状态动画 */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading-shimmer {
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* 性能优化 - GPU 加速 */
.hero-focus__orb,
.journey-fab,
.intent-chip,
.hero-actions__item,
.intent-card,
.energy-card {
  will-change: transform;
}

/* 增强焦点可见性 - 无障碍 */
.hero-actions__item:focus-visible,
.intent-chip:focus-visible,
.intent-card:focus-visible,
.journey-button:focus-visible {
  outline: 3px solid var(--intent-aqua);
  outline-offset: 3px;
}

/* 添加微妙的页面过渡 */
.intent-journey-frame {
  animation: pageEnter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Visual Elevation 2024.11 ===== */
.journey-background {
  background: linear-gradient(115deg, rgba(12, 16, 32, 0.82) 0%, rgba(32, 20, 46, 0.85) 45%, rgba(88, 38, 110, 0.78) 70%, rgba(233, 182, 212, 0.22) 100%),
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.28), transparent 58%),
    radial-gradient(circle at 82% 18%, rgba(126, 209, 184, 0.24), transparent 62%),
    radial-gradient(circle at 50% 74%, rgba(232, 215, 248, 0.24), transparent 65%);
}

.journey-background::before,
.journey-background::after {
  inset: -20%;
  mix-blend-mode: screen;
}

.journey-background::after {
  opacity: 0.55;
  filter: blur(110px);
}

.particle-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle-field::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
  background-size: 180px 180px;
  opacity: 0.25;
  animation: starTwinkle 18s linear infinite;
}

.particle-field::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
  background-size: 120px 120px;
  animation: starTwinkle 28s linear infinite reverse;
  opacity: 0.18;
}

.hero-shell::before {
  content: '';
  position: absolute;
  inset: -4%;
  border-radius: 42px;
  background: linear-gradient(130deg, rgba(126, 209, 184, 0.22), rgba(232, 215, 248, 0.18));
  filter: blur(55px);
  opacity: 0.55;
  z-index: -1;
}

.hero-topbar {
  background: rgba(18, 20, 36, 0.52);
  border-radius: 26px;
  padding: 18px 24px;
  box-shadow: 0 24px 48px rgba(3, 8, 25, 0.28);
  backdrop-filter: blur(22px);
}

.hero-topbar__badge {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.6), rgba(174, 227, 233, 0.36));
  color: rgba(20, 25, 45, 0.75);
}

.hero-stage__visual {
  position: relative;
}

.hero-stage__visual::after {
  content: '';
  position: absolute;
  inset: -14% -10% -16% -10%;
  background: radial-gradient(circle at 50% 20%, rgba(126, 209, 184, 0.18), transparent 70%),
    radial-gradient(circle at 30% 80%, rgba(232, 215, 248, 0.22), transparent 75%);
  filter: blur(70px);
  z-index: -1;
  opacity: 0.8;
  animation: heroAura 18s ease-in-out infinite;
}

.hero-focus__orb {
  box-shadow: 0 28px 80px rgba(59, 200, 195, 0.35), inset 0 0 40px rgba(255, 255, 255, 0.4);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.hero-focus__orb:hover {
  transform: scale(1.03);
  box-shadow: 0 40px 90px rgba(126, 209, 184, 0.45), inset 0 0 54px rgba(255, 255, 255, 0.55);
}

.hero-floater {
  background: rgba(26, 28, 48, 0.78);
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 36px rgba(8, 10, 28, 0.32);
}

.hero-floater::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.hero-highlights li {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s ease;
  background: linear-gradient(135deg, rgba(26, 28, 48, 0.72), rgba(53, 30, 71, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 248, 255, 0.88);
}

.hero-highlights li small {
  color: rgba(244, 248, 255, 0.62);
}

.hero-highlights li:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 32px 60px rgba(8, 10, 28, 0.42);
}

.intent-chip {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(18, 20, 36, 0.72);
  color: rgba(255, 255, 255, 0.86);
  padding: 16px 20px;
  box-shadow: 0 22px 42px rgba(5, 8, 28, 0.32);
  transition: transform 0.45s cubic-bezier(0.18, 0.89, 0.35, 1.15), box-shadow 0.45s ease;
  overflow: hidden;
}

.intent-chip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(126, 209, 184, 0.22), rgba(232, 215, 248, 0.18));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.intent-chip:hover,
.intent-chip:focus-visible {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 30px 60px rgba(5, 8, 28, 0.36);
}

.intent-chip:hover::after,
.intent-chip:focus-visible::after {
  opacity: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-delay, 0ms));
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.energy-card,
.insight-card {
  position: relative;
  overflow: hidden;
}

.energy-card::after,
.insight-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.energy-card::before,
.insight-card::before {
  content: '';
  position: absolute;
  inset: -40% -20% 60% -20%;
  background: linear-gradient(120deg, rgba(126, 209, 184, 0.25), rgba(232, 215, 248, 0.08));
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.energy-card:hover::before,
.insight-card:hover::before {
  opacity: 1;
}

.energy-card:hover,
.energy-card:focus-visible,
.insight-card:hover,
.insight-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 32px 68px rgba(6, 8, 28, 0.32);
}

.energy-card__halo {
  opacity: 0.65;
}

.energy-meter__fill {
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-emphasized {
  animation: emphasizeCard 1.2s ease;
}

.hero-actions__item {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(17, 19, 35, 0.72);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 48px rgba(5, 7, 28, 0.28);
}

.hero-actions__item span:first-child {
  background: linear-gradient(135deg, rgba(126, 209, 184, 0.32), rgba(232, 215, 248, 0.28));
  color: rgba(18, 20, 36, 0.92);
}

.hero-actions__item:hover,
.hero-actions__item:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 32px 60px rgba(5, 7, 28, 0.35);
}

.journey-fab {
  background: linear-gradient(135deg, rgba(126, 209, 184, 0.95), rgba(232, 215, 248, 0.9));
  color: #1a1c2f;
  box-shadow: 0 26px 60px rgba(6, 10, 31, 0.38);
}

.journey-fab::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.48);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.journey-fab:hover::after,
.journey-fab:focus-visible::after {
  opacity: 1;
}

@keyframes heroAura {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.7; }
  50% { transform: rotate(12deg) scale(1.06); opacity: 0.9; }
}

@keyframes starTwinkle {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.45; }
  50% { transform: translate3d(2%, -3%, 0) scale(1.05); opacity: 0.75; }
  100% { transform: translate3d(-2%, 3%, 0) scale(1); opacity: 0.45; }
}

@keyframes emphasizeCard {
  0% { transform: translateY(0) scale(1); box-shadow: 0 20px 50px rgba(6, 8, 28, 0.2); }
  40% { transform: translateY(-12px) scale(1.02); box-shadow: 0 40px 80px rgba(6, 8, 28, 0.32); }
  100% { transform: translateY(0) scale(1); box-shadow: 0 20px 50px rgba(6, 8, 28, 0.24); }
}

@media (max-width: 768px) {
  .hero-topbar {
    border-radius: 20px;
    padding: 16px;
  }

  .hero-highlights li {
    transform: none;
  }

  .hero-actions__item,
  .intent-chip {
    transform: none;
  }
}
.hero-intro h1 {
  background: linear-gradient(118deg, #f6fbff 0%, #dbe3ff 45%, #8fe8d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 28px rgba(11, 16, 36, 0.35);
}

.hero-intro p {
  color: rgba(236, 241, 254, 0.74);
}

.hero-pill {
  background: rgba(17, 19, 35, 0.68);
  color: rgba(238, 243, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-highlights li span {
  color: rgba(246, 250, 255, 0.9);
}
.hero-topbar__clock {
  color: rgba(227, 233, 255, 0.62);
}

.hero-topbar__clock-time {
  color: rgba(248, 251, 255, 0.88);
}

.hero-topbar__resume {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 247, 255, 0.88);
}

.hero-topbar__resume:hover {
  box-shadow: 0 24px 54px rgba(7, 10, 28, 0.36);
}

.bracelet-card {
  display: grid;
  gap: 18px;
  background: linear-gradient(140deg, rgba(17, 19, 35, 0.62), var(--bracelet-card-color, rgba(126, 209, 184, 0.22)));
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: background 0.6s ease;
}

.bracelet-card__media {
  position: relative;
  width: 120px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px rgba(8, 10, 28, 0.28);
}

.bracelet-card__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, var(--bracelet-card-color, rgba(126, 209, 184, 0.28)), transparent 70%);
  filter: blur(18px);
  opacity: 0.8;
  animation: heroAura 12s ease-in-out infinite;
}

.bracelet-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.bracelet-card__body {
  display: grid;
  gap: 16px;
}

.bracelet-color-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.bracelet-color-card__swatch {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 14px 28px rgba(8, 10, 28, 0.18);
}

.bracelet-color-card__copy {
  display: grid;
  gap: 4px;
}

.bracelet-color-card__hex {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 248, 255, 0.85);
}

.bracelet-color-card__label {
  color: rgba(244, 248, 255, 0.58);
}

.bracelet-card__quote {
  margin: 0;
  font-size: 14px;
  font-style: italic;
  color: rgba(244, 248, 255, 0.7);
  text-align: center;
}

.bracelet-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bracelet-action {
  flex: 1 1 110px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(17, 19, 35, 0.6);
  color: rgba(244, 248, 255, 0.86);
  font-size: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bracelet-action:hover,
.bracelet-action:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(8, 10, 28, 0.3);
}

.bracelet-action[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.bracelet-card__canvas {
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .bracelet-card {
    padding: 16px;
  }

  .bracelet-card__media {
    width: 102px;
  }
}

@media (max-width: 768px) {
  .journey-background {
    background: radial-gradient(circle at 10% 15%, rgba(105, 224, 203, 0.22) 0%, transparent 42%),
      radial-gradient(circle at 90% 10%, rgba(175, 168, 255, 0.2) 0%, transparent 55%),
      linear-gradient(135deg, #f8fbff 0%, #ecf3f0 45%, #eff0ff 100%);
  }

  .hero-shell::before {
    display: none;
  }

  .hero-topbar {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 12px 24px rgba(30, 27, 47, 0.12);
    color: #1e1b2f;
  }

  .hero-topbar__badge {
    background: rgba(255, 255, 255, 0.75);
    color: rgba(30, 27, 47, 0.7);
  }

  .hero-topbar__clock {
    color: rgba(30, 27, 47, 0.55);
  }

  .hero-topbar__clock-time {
    color: rgba(30, 27, 47, 0.82);
  }

  .hero-topbar__resume {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(30, 27, 47, 0.12);
    color: #1e1b2f;
  }

  .hero-intro h1 {
    background: none;
    color: #1e1b2f;
    -webkit-text-fill-color: #1e1b2f;
    text-shadow: none;
  }

  .hero-intro p {
    color: rgba(30, 27, 47, 0.7);
  }

  .hero-highlights li {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(174, 227, 233, 0.28));
    border: 1px solid rgba(30, 27, 47, 0.06);
    color: rgba(30, 27, 47, 0.85);
    box-shadow: 0 16px 30px rgba(30, 27, 47, 0.08);
  }

  .hero-highlights li small {
    color: rgba(30, 27, 47, 0.65);
  }

  .hero-floater {
    background: rgba(255, 255, 255, 0.9);
    color: rgba(30, 27, 47, 0.78);
    border-color: rgba(30, 27, 47, 0.08);
    box-shadow: 0 14px 28px rgba(30, 27, 47, 0.12);
  }

  .intent-chip {
    background: rgba(255, 255, 255, 0.9);
    color: rgba(30, 27, 47, 0.85);
    border: 1px solid rgba(30, 27, 47, 0.08);
    box-shadow: 0 18px 28px rgba(30, 27, 47, 0.12);
  }

  .intent-chip::after {
    background: rgba(255, 255, 255, 0.6);
  }

  .hero-actions__item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(30, 27, 47, 0.1);
    color: rgba(30, 27, 47, 0.82);
    box-shadow: 0 16px 28px rgba(30, 27, 47, 0.12);
  }

  .hero-actions__item span:first-child {
    background: rgba(174, 227, 233, 0.32);
    color: rgba(30, 27, 47, 0.85);
  }

  .journey-fab {
    background: linear-gradient(120deg, rgba(90, 138, 247, 0.92), rgba(125, 226, 140, 0.9));
    color: #1e1b2f;
  }

  .journey-fab::after {
    border-color: rgba(30, 27, 47, 0.12);
  }

  .bracelet-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(30, 27, 47, 0.08);
    color: rgba(30, 27, 47, 0.85);
  }

  .bracelet-card__media {
    box-shadow: 0 18px 30px rgba(30, 27, 47, 0.15);
    background: rgba(255, 255, 255, 0.8);
  }

  .bracelet-card__glow {
    background: radial-gradient(circle, rgba(126, 209, 184, 0.35), transparent 75%);
  }

  .bracelet-color-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(30, 27, 47, 0.08);
  }

  .bracelet-color-card__hex,
  .bracelet-color-card__label,
  .bracelet-card__quote {
    color: rgba(30, 27, 47, 0.78);
  }

  .bracelet-action {
    background: rgba(255, 255, 255, 0.92);
    color: rgba(30, 27, 47, 0.82);
    border: 1px solid rgba(30, 27, 47, 0.08);
    box-shadow: 0 16px 28px rgba(30, 27, 47, 0.12);
  }

  .result-cta--bracelet {
    background: linear-gradient(120deg, rgba(244, 217, 160, 0.95), rgba(126, 209, 184, 0.92));
    color: #1e1b2f;
    border-color: rgba(255, 255, 255, 0.4);
  }
  
  /* 🚨 强制显示关键元素 - 必须放在最后以覆盖所有其他规则 */
  .hero-stage {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 20px !important;
  }
  
  .hero-stage__visual {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    order: 0 !important;
    width: 100% !important;
  }
  
  .hero-stage__primary {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    order: 1 !important;
    width: 100% !important;
  }
  
  .hero-focus {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .hero-focus__orb {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .hero-intro,
  .hero-intro h1,
  .hero-intro p,
  .hero-pill,
  .hero-highlights,
  .hero-highlights li,
  .hero-intents,
  .hero-bottom {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .hero-highlights {
    list-style: none !important;
  }
  
  .hero-highlights li {
    display: flex !important;
    flex-direction: column !important;
  }
}
