
:root {
  --bg: #000000;
  --bg-soft: #050505;
  --text: #f3f3f0;
  --muted: #b9b9b4;
  --line: rgba(255,255,255,0.1);
  --green: #8fb86b;
  --green-strong: #a8d878;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: linear-gradient(to bottom, rgba(0,0,0,.72), rgba(0,0,0,0));
}
.site-header__inner, .site-footer__inner, .section-inner {
  width: min(1140px, calc(100% - 32px)); margin: 0 auto;
}
.site-header__inner {
  display: flex; justify-content: space-between; align-items: center; padding: 16px 0;
}
.site-title { font-weight: 700; letter-spacing: .12em; font-size: 13px; }
.site-footer { position: relative; z-index: 10; background: transparent; }
.site-footer__inner { padding: 20px 0 44px; color: rgba(255,255,255,.55); font-size: 13px; }
.site-footer__inner p { margin: 6px 0; }

.matcha-universe-shell { position: relative; background: transparent; }
.matcha-dust {
  position: fixed; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none;
}
.universe-bowl-layer {
  position: fixed; inset: 0; display: grid; place-items: center; z-index: 1; pointer-events: none;
}
.universe-bowl-wrap {
  position: relative; width: min(460px, 56vw); height: min(460px, 56vw); max-width: 88vw; max-height: 88vw;
  display: grid; place-items: center; pointer-events: auto;
}
.hero-bowl {
  width: min(420px, 48vw); max-width: 86vw; filter: drop-shadow(0 36px 70px rgba(0,0,0,.85));
  animation: bowlFloat 7s ease-in-out infinite;
  will-change: transform;
}
.bowl-trigger {
  position: absolute; inset: 14% 12% 18% 12%;
  border: 0; background: transparent; cursor: pointer; border-radius: 50%; z-index: 4;
}
.bowl-trigger:focus-visible { outline: 1px solid rgba(168,216,120,.7); outline-offset: 6px; }
.bowl-whisper {
  position: absolute; left: 50%; top: 8%; transform: translate(-50%, 12px); z-index: 5;
  padding: 10px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(8,8,8,.72); backdrop-filter: blur(12px);
  color: rgba(168,216,120,.96); letter-spacing: .16em; font-size: 12px; text-transform: uppercase;
  opacity: 0; pointer-events: none; box-shadow: 0 8px 40px rgba(0,0,0,.35);
}
.bowl-whisper.is-visible { animation: whisperUp 1.8s ease forwards; }
@keyframes whisperUp {
  0% { opacity: 0; transform: translate(-50%, 14px) scale(.92); }
  18% { opacity: 1; }
  68% { opacity: .92; transform: translate(-50%, -10px) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -34px) scale(1.02); }
}
@keyframes bowlFloat {
  0%,100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  25% { transform: translate3d(0, -10px, 0) rotate(-0.6deg) scale(1.012); }
  50% { transform: translate3d(0, -18px, 0) rotate(0.2deg) scale(1.025); }
  75% { transform: translate3d(0, -8px, 0) rotate(0.8deg) scale(1.01); }
}
.hero-steam {
  position: absolute; left: 50%; top: -8%; transform: translateX(-50%);
  width: 250px; height: 220px; z-index: 5; pointer-events: none; overflow: visible;
  mix-blend-mode: screen;
}
.hero-steam span {
  position: absolute; bottom: 0; width: 54px; height: 170px; border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 78%, rgba(235,238,230,.24), rgba(235,238,230,.10) 28%, rgba(235,238,230,0) 66%);
  filter: blur(13px); opacity: 0; will-change: transform, opacity;
  animation: steamVisible 7.8s infinite cubic-bezier(.25,.46,.45,.94);
}
.hero-steam span::before, .hero-steam span::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(7px);
  background: rgba(245,247,242,.10);
}
.hero-steam span::before { inset: 22% 8% 30% 18%; transform: skewX(-10deg); }
.hero-steam span::after { inset: 40% 20% 10% 0; transform: skewX(12deg); }
.hero-steam span:nth-child(1){ left: 36px; animation-delay: 0s; transform-origin: 50% 100%; }
.hero-steam span:nth-child(2){ left: 86px; width: 66px; height: 190px; animation-delay: 1.9s; }
.hero-steam span:nth-child(3){ left: 142px; width: 48px; height: 160px; animation-delay: 3.8s; }
.hero-steam span:nth-child(4){ left: 102px; width: 44px; height: 150px; animation-delay: 5.7s; }
@keyframes steamVisible {
  0% { opacity: 0; transform: translate3d(0, 22px, 0) scale(.72) rotate(-5deg); }
  13% { opacity: .42; }
  34% { opacity: .34; transform: translate3d(-8px, -18px, 0) scale(.90) rotate(-2deg); }
  58% { opacity: .22; transform: translate3d(7px, -54px, 0) scale(1.04) rotate(2deg); }
  80% { opacity: .10; transform: translate3d(-4px, -88px, 0) scale(1.15) rotate(5deg); }
  100% { opacity: 0; transform: translate3d(6px, -118px, 0) scale(1.28) rotate(8deg); }
}
  18% { opacity: .3; }
  70% { opacity: .14; }
  100% { opacity: 0; transform: translateY(-72px) scale(1.2); }
}

.hero-universe, .universe-panel {
  position: relative; z-index: 5; min-height: 100svh; display: flex; align-items: center;
}
.hero-universe__overlay {
  position: absolute; inset: 0; background:
    radial-gradient(circle at center, rgba(90,120,60,.10), rgba(0,0,0,.32) 28%, rgba(0,0,0,.72) 55%, #000 84%);
}
.hero-universe__floating {
  position: absolute; inset: 0; z-index: 6;
}

.hero-universe__metrics {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
}
.metric-orb {
  position: absolute; left: var(--mx); top: var(--my); transform: translate(-50%, -50%);
  pointer-events: auto;
  animation: metricDrift 18s ease-in-out infinite;
  will-change: transform;
}
.metric-orb--sm { width: 118px; height: 118px; }
.metric-orb--md { width: 146px; height: 146px; }
.metric-orb--lg { width: 172px; height: 172px; }
.metric-orb:nth-child(2n) { animation-duration: 22s; }
.metric-orb:nth-child(3n) { animation-duration: 25s; }
.metric-orb:nth-child(4n) { animation-direction: reverse; }
.metric-orb__ring, .metric-orb__core {
  position: absolute; inset: 0; border-radius: 50%;
}
.metric-orb__ring {
  background: conic-gradient(from 210deg, rgba(168,216,120,.05) 0deg, rgba(168,216,120,.92) calc(var(--gauge) * 1%), rgba(255,255,255,.08) calc(var(--gauge) * 1%), rgba(255,255,255,.04) 360deg);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 28px rgba(168,216,120,.12), inset 0 0 20px rgba(0,0,0,.35);
}
.metric-orb__ring::before {
  content: "";
  position: absolute; inset: 10px; border-radius: 50%;
  background: rgba(2,2,2,.88);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.metric-orb__core {
  inset: 12px; background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.08), rgba(0,0,0,.06) 38%, rgba(0,0,0,.52) 100%);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  text-align: center; padding: 12px;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 22px rgba(168,216,120,.06), 0 14px 34px rgba(0,0,0,.28);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.metric-orb:hover .metric-orb__core {
  transform: scale(1.06);
  border-color: rgba(168,216,120,.32);
  box-shadow: inset 0 0 28px rgba(168,216,120,.12), 0 18px 46px rgba(0,0,0,.36);
}
.metric-orb__label {
  display: block; color: rgba(168,216,120,.88); font-size: 9px; letter-spacing: .22em; line-height: 1.3; margin-bottom: 4px;
}
.metric-orb__value {
  display: block; color: rgba(255,255,255,.98); font-size: clamp(22px, 2vw, 38px); letter-spacing: -.04em; line-height: .95;
}
.metric-orb__unit {
  display: block; color: rgba(255,255,255,.68); font-size: 10px; letter-spacing: .14em; margin-top: 4px;
}
.metric-orb__sub {
  display: block; color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.45; margin-top: 7px;
}
.metric-orb__source {
  display: block; color: rgba(255,255,255,.34); font-size: 9px; line-height: 1.3; margin-top: 6px; opacity: 0; transform: translateY(6px); transition: .22s ease;
}
.metric-orb:hover .metric-orb__source { opacity: 1; transform: translateY(0); }
@keyframes metricDrift {
  0%,100% { transform: translate(-50%, -50%) translate3d(0,0,0); }
  25% { transform: translate(-50%, -50%) translate3d(8px,-10px,0); }
  50% { transform: translate(-50%, -50%) translate3d(-4px,-18px,0); }
  75% { transform: translate(-50%, -50%) translate3d(-10px,-6px,0); }
}
.hero-universe__content, .reveal-block {
  position: relative; z-index: 7; width: min(760px, calc(100% - 32px)); margin: 0 auto; text-align: center;
}
.hero-universe__content { padding-top: 44vh; padding-bottom: 10vh; }
.section-inner--narrow { width: min(840px, calc(100% - 32px)); }
.hero-kicker, .section-label { color: var(--green-strong); letter-spacing: .18em; font-size: 12px; text-transform: uppercase; }
.hero-universe h1, .display-title {
  margin: 14px 0 10px; font-size: clamp(36px, 7vw, 82px); line-height: .98; letter-spacing: -.02em;
}
.display-title { margin-bottom: 18px; }
.display-subtitle {
  margin: 0; font-size: clamp(24px, 4vw, 42px); letter-spacing: .04em; color: rgba(255,255,255,.92);
}
.hero-subcopy, .display-copy {
  color: var(--muted); font-size: clamp(15px, 2vw, 18px); max-width: 700px; margin: 0 auto; line-height: 1.8;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.hero-actions--end { margin-top: 36px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px;
  border-radius: 999px; border: 1px solid var(--line); transition: .25s ease; backdrop-filter: blur(10px);
}
.button--primary { background: rgba(143,189,104,.14); border-color: rgba(143,189,104,.45); }
.button--large { min-height: 58px; padding: 0 28px; font-size: 18px; }
.button:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.3); }

.floating-word {
  position: absolute; left: var(--x, 10%); top: var(--y, 20%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,var(--op,.55)); font-size: var(--fs,16px); letter-spacing: .16em;
  text-transform: uppercase; white-space: nowrap;
  filter: blur(var(--blur,0));
  animation: floatOrbit var(--dur,24s) var(--delay,0s) infinite ease-in-out;
  transform-origin: center;
}
.floating-word__label { position: relative; z-index: 2; transition: color .2s ease, transform .25s ease, text-shadow .25s ease; }
.floating-word__tip {
  position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translate(-50%, 10px);
  min-width: 140px; max-width: 220px; padding: 10px 12px; border-radius: 14px;
  background: rgba(10,10,10,.82); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(12px);
  color: rgba(255,255,255,.86); font-size: 11px; letter-spacing: .06em; line-height: 1.55; text-align: center;
  opacity: 0; pointer-events: none; transition: .22s ease;
}
.floating-word:hover { filter: blur(0); z-index: 8; }
.floating-word:hover .floating-word__label {
  color: var(--green-strong); transform: scale(1.08); text-shadow: 0 0 18px rgba(168,216,120,.22);
}
.floating-word:hover .floating-word__tip { opacity: 1; transform: translate(-50%, 0); }
.floating-word--jp { font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif; text-transform: none; }
.floating-word--jp .floating-word__label { letter-spacing: .28em; font-weight: 500; }
@keyframes floatOrbit {
  0%,100% { transform: translate3d(0,0,0) rotate(var(--rot,0deg)) scale(1); }
  20% { transform: translate3d(14px,-9px,0) rotate(calc(var(--rot,0deg) + 1deg)) scale(1.02); }
  48% { transform: translate3d(-8px,-20px,0) rotate(calc(var(--rot,0deg) - 1deg)) scale(.99); }
  72% { transform: translate3d(18px,5px,0) rotate(calc(var(--rot,0deg) + .5deg)) scale(1.015); }
}

.word-river {
  margin-top: 34px; display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
  color: rgba(255,255,255,.62); font-size: clamp(16px, 2vw, 22px); letter-spacing: .14em;
}
.origin-cloud {
  position: relative; min-height: 420px; margin-top: 22px;
}
.origin-cloud__item {
  position: absolute; max-width: 240px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; background: rgba(255,255,255,.03); backdrop-filter: blur(10px); text-align: left;
}
.origin-cloud__item strong { display: block; font-size: 24px; margin-bottom: 8px; }
.origin-cloud__item span { color: var(--muted); line-height: 1.7; font-size: 14px; }
.origin-cloud__item:nth-child(1) { top: 0; left: 8%; }
.origin-cloud__item:nth-child(2) { top: 14%; right: 6%; }
.origin-cloud__item:nth-child(3) { bottom: 16%; left: 0; }
.origin-cloud__item:nth-child(4) { bottom: 8%; right: 12%; }
.origin-cloud__item:nth-child(5) { top: 47%; left: 58%; }
.origin-cloud__center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: clamp(36px, 8vw, 90px); letter-spacing: .14em; color: rgba(255,255,255,.12);
}
.cultivar-list, .use-stack, .volume-tower {
  display: grid; gap: 18px; margin-top: 24px; justify-items: center;
}
.cultivar-list span {
  display: inline-block; padding: 12px 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px;
  font-size: clamp(16px, 2.2vw, 28px); letter-spacing: .16em; background: rgba(255,255,255,.03);
}
.use-stack span, .volume-tower span {
  font-size: clamp(64px, 14vw, 190px); line-height: .86; letter-spacing: .035em; color: rgba(255,255,255,.95);
  font-weight: 700;
  text-transform: uppercase;
}
.use-stack, .volume-tower {
  gap: 30px;
}
.volume-tower span {
  font-size: clamp(72px, 15vw, 210px);
}

.use-stack span:nth-child(even), .volume-tower span:nth-child(even) { color: rgba(168,216,120,.82); }

.finder-section, .buyers-section, .default-main { padding: 100px 0; }
.reveal-block {
  opacity: .28; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease;
}
.reveal-block.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .origin-cloud { min-height: auto; display: grid; gap: 14px; }
  .origin-cloud__item, .origin-cloud__center {
    position: relative; inset: auto; transform: none; max-width: none;
  }
  .origin-cloud__center { font-size: 56px; text-align: center; padding: 16px 0; }
}
@media (max-width: 760px) {
  .site-nav { display: none; }
  .universe-bowl-wrap { width: min(360px, 78vw); height: min(360px, 78vw); }
  .hero-bowl { width: min(320px, 72vw); }
  .hero-universe__content { padding-top: 52vh; }
  .hero-universe, .universe-panel { min-height: auto; padding: 120px 0 100px; }
  .floating-word { font-size: clamp(10px, calc(var(--fs) * .72), 22px); }
  .floating-word__tip { min-width: 120px; max-width: 170px; font-size: 10px; }
  .use-stack span { font-size: clamp(46px, 16vw, 92px); }
  .volume-tower span { font-size: clamp(54px, 18vw, 108px); }
}


.interest-line {
  margin-top: 16px; color: rgba(168,216,120,.82); font-size: 14px; letter-spacing: .08em;
}
.use-item, .volume-item {
  position: relative; display: inline-flex; flex-direction: column; align-items: center; cursor: default;
}
.use-item em {
  display: block; margin-top: 8px; font-style: normal; font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: .16em; color: rgba(255,255,255,.38); opacity: 0; transform: translateY(8px); transition: .25s ease;
}
.use-item:hover em, .use-item.is-active em { opacity: 1; transform: translateY(0); }
.use-item:hover, .use-item.is-active {
  color: rgba(168,216,120,.96) !important;
  text-shadow: 0 0 30px rgba(168,216,120,.18);
}
.volume-item { cursor: pointer; }
.interest-badge {
  position: fixed; right: 18px; bottom: 18px; z-index: 35; padding: 12px 14px; border-radius: 18px;
  background: rgba(8,8,8,.78); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
}
.interest-badge__label {
  display: block; color: rgba(168,216,120,.78); font-size: 10px; letter-spacing: .22em; margin-bottom: 5px;
}
.interest-badge__value {
  display: block; color: rgba(255,255,255,.92); font-size: 13px; letter-spacing: .08em;
}
@media (max-width: 760px) {
  .interest-badge { right: 12px; bottom: 12px; padding: 10px 12px; }
  .interest-badge__value { font-size: 12px; }
  .volume-stage { min-height: auto; }
  .volume-display { position: relative; left: auto !important; top: auto !important; width: auto; margin: 24px auto 0; }
}



.volume-stage {
  position: relative;
  margin-top: 20px;
  min-height: 760px;
}
.volume-item {
  cursor: pointer;
  transition: color .22s ease, transform .22s ease, text-shadow .22s ease;
}
.volume-item:hover, .volume-item.is-active {
  color: rgba(168,216,120,.98) !important;
  transform: translateX(-8px);
  text-shadow: 0 0 38px rgba(168,216,120,.2);
}
.volume-display {
  position: absolute;
  z-index: 12;
  left: calc(50% + 220px);
  top: 40px;
  width: min(360px, 34vw);
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(8,8,8,.84);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,.42);
  opacity: 0;
  transform: translateY(12px) scale(.97);
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease;
}
.volume-display.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.volume-display__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: rgba(168,216,120,.9);
  font-size: 12px;
  letter-spacing: .22em;
}
.volume-display__number {
  display: block;
  font-size: clamp(56px, 6vw, 96px);
  line-height: .9;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.98);
}
.volume-display__label {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.88);
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: .05em;
}
.volume-display__note {
  margin: 12px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 980px) { .metric-orb--lg { width: 148px; height: 148px; } .metric-orb--md { width: 124px; height: 124px; } .metric-orb--sm { width: 102px; height: 102px; } }
@media (max-width: 760px) { .hero-universe__metrics { display:none; } }


/* WORLD DATA accordion / drawer */
.world-data-trigger {
  position: fixed;
  right: 18px;
  top: 42%;
  z-index: 46;
  width: 104px;
  min-height: 104px;
  padding: 14px 12px;
  border-radius: 24px;
  border: 1px solid rgba(168,216,120,.34);
  background: linear-gradient(180deg, rgba(10,16,8,.86), rgba(4,6,3,.78));
  color: #eef7e8;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 46px rgba(0,0,0,.4), inset 0 0 24px rgba(168,216,120,.05), 0 0 28px rgba(168,216,120,.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.world-data-trigger:hover {
  transform: translateX(-6px);
  border-color: rgba(168,216,120,.52);
  box-shadow: 0 22px 60px rgba(0,0,0,.48), inset 0 0 30px rgba(168,216,120,.10), 0 0 38px rgba(168,216,120,.16);
}
.world-data-trigger__eyebrow {
  font-size: 9px;
  letter-spacing: .22em;
  color: rgba(168,216,120,.72);
}
.world-data-trigger strong {
  font-size: 13px;
  line-height: 1.05;
  letter-spacing: .08em;
  text-align: left;
}
.world-data-trigger__arrow {
  position: absolute;
  right: 11px;
  bottom: 9px;
  font-size: 14px;
  color: rgba(168,216,120,.72);
}
.world-data-trigger__pulse {
  position: absolute;
  width: 10px;
  height: 10px;
  right: 12px;
  top: 12px;
  border-radius: 50%;
  background: #a8d878;
  box-shadow: 0 0 0 0 rgba(168,216,120,.5);
  animation: worldDataPulse 2.1s ease-out infinite;
}
@keyframes worldDataPulse {
  0% { box-shadow: 0 0 0 0 rgba(168,216,120,.5); }
  70% { box-shadow: 0 0 0 14px rgba(168,216,120,0); }
  100% { box-shadow: 0 0 0 0 rgba(168,216,120,0); }
}

.world-data-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}
.world-data-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.world-data-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px);
  transition: background .32s ease, backdrop-filter .32s ease;
}
.world-data-drawer.is-open .world-data-drawer__backdrop {
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(5px);
}
.world-data-drawer__panel {
  position: absolute;
  right: 18px;
  top: 50%;
  width: min(1180px, calc(100vw - 64px));
  height: min(780px, calc(100vh - 72px));
  transform: translate3d(42px,-50%,0) scale(.985);
  opacity: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(168,216,120,.24);
  background: rgba(3,5,2,.42);
  box-shadow: 0 28px 110px rgba(0,0,0,.56), 0 0 86px rgba(168,216,120,.14), inset 0 0 36px rgba(168,216,120,.04);
  transition: transform .38s cubic-bezier(.2,.75,.2,1), opacity .25s ease;
}
.world-data-drawer.is-open .world-data-drawer__panel {
  transform: translate3d(0,-50%,0) scale(1);
  opacity: 1;
}
.world-data-drawer__topbar {
  height: 66px;
  padding: 0 18px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(7,12,5,.46), rgba(2,4,2,.30));
}
.world-data-drawer__topbar > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}
.world-data-drawer__kicker {
  font-size: 10px;
  letter-spacing: .20em;
  color: rgba(168,216,120,.74);
  white-space: nowrap;
}
.world-data-drawer__topbar strong {
  font-size: 13px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
}
.world-data-drawer__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.world-data-drawer__demo {
  font-size: 9px;
  letter-spacing: .16em;
  color: rgba(255,255,255,.38);
}
.world-data-drawer__close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.82);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
}
.world-data-drawer__close:hover {
  border-color: rgba(168,216,120,.38);
  color: #a8d878;
  transform: rotate(4deg);
}

.world-data-dashboard {
  position: relative;
  height: calc(100% - 66px);
  overflow: hidden;
  background: #020402;
}
.world-data-dashboard__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.08) brightness(.90);
  opacity: 1;
  transform: scale(1.015);
  transition: transform .4s ease;
}
.world-data-dashboard:hover .world-data-dashboard__image {
  transform: scale(1.025);
}
.world-data-dashboard__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.00), rgba(0,0,0,.02)),
    radial-gradient(circle at 50% 50%, rgba(168,216,120,.04), rgba(0,0,0,.22) 72%);
  pointer-events: none;
}
.world-data-dashboard__grid {
  position: absolute;
  inset: 0;
  opacity: .26;
  background-image:
    linear-gradient(rgba(168,216,120,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,216,120,.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mix-blend-mode: screen;
  animation: worldGridMove 16s linear infinite;
}
@keyframes worldGridMove {
  from { background-position: 0 0, 0 0; }
  to { background-position: 42px 42px, 42px 42px; }
}
.world-data-dashboard__scan {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 2px;
  top: -4%;
  background: linear-gradient(90deg, transparent, rgba(214,255,172,1), transparent);
  box-shadow: 0 0 22px rgba(168,216,120,.92), 0 0 62px rgba(168,216,120,.44);
  animation: worldScan 4.8s linear infinite;
  opacity: .88;
}
@keyframes worldScan {
  0% { top: -3%; opacity: 0; }
  8% { opacity: .7; }
  92% { opacity: .7; }
  100% { top: 103%; opacity: 0; }
}
.world-data-dashboard__glow {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225,255,184,.82), rgba(168,216,120,.28) 34%, rgba(168,216,120,0) 74%);
  filter: blur(2px);
  mix-blend-mode: screen;
  animation: worldGlow 3.6s ease-in-out infinite;
}
.world-data-dashboard__glow--1 { left: 43%; top: 40%; }
.world-data-dashboard__glow--2 { left: 69%; top: 31%; animation-delay: 1.2s; transform: scale(.72); }
.world-data-dashboard__glow--3 { left: 19%; top: 36%; animation-delay: 2.2s; transform: scale(.58); }
@keyframes worldGlow {
  0%,100% { opacity: .34; filter: blur(3px); }
  50% { opacity: .98; filter: blur(.5px); }
}
.world-data-dashboard__beam {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(168,216,120,0), rgba(214,255,172,.72), rgba(168,216,120,0));
  overflow: hidden;
  opacity: .84;
  mix-blend-mode: screen;
}
.world-data-dashboard__beam span {
  position: absolute;
  top: -2px;
  width: 42px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(245,255,230,1), transparent);
  box-shadow: 0 0 24px rgba(198,255,144,1), 0 0 40px rgba(198,255,144,.38);
  animation: worldBeamMove 2.8s linear infinite;
}
.world-data-dashboard__beam--1 { left: 47%; top: 45%; width: 31%; transform: rotate(-13deg); }
.world-data-dashboard__beam--2 { left: 48%; top: 48%; width: 30%; transform: rotate(13deg); }
.world-data-dashboard__beam--3 { left: 25%; top: 45%; width: 23%; transform: rotate(9deg); }
.world-data-dashboard__beam--2 span { animation-delay: .9s; }
.world-data-dashboard__beam--3 span { animation-delay: 1.5s; }
@keyframes worldBeamMove {
  0% { left: -12%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: 104%; opacity: 0; }
}
.world-data-dashboard__spark {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d8ffad;
  box-shadow: 0 0 10px #e8ffc8, 0 0 26px rgba(168,216,120,.96), 0 0 46px rgba(168,216,120,.34);
  animation: worldSpark 2.7s ease-in-out infinite;
}
.world-data-dashboard__spark--1 { left: 56%; top: 34%; }
.world-data-dashboard__spark--2 { left: 74%; top: 47%; animation-delay: .8s; }
.world-data-dashboard__spark--3 { left: 31%; top: 47%; animation-delay: 1.5s; }
.world-data-dashboard__spark--4 { left: 61%; top: 61%; animation-delay: 2.1s; }
@keyframes worldSpark {
  0%,100% { transform: scale(.8); opacity: .45; }
  50% { transform: scale(1.9); opacity: 1; }
}
.world-data-dashboard__note {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(168,216,120,.16);
  background: rgba(0,0,0,.64);
  backdrop-filter: blur(10px);
  color: rgba(220,244,203,.7);
  font-size: 9px;
  letter-spacing: .12em;
}
body.world-data-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .world-data-trigger {
    top: auto;
    right: 12px;
    bottom: 78px;
    width: 86px;
    min-height: 86px;
    border-radius: 20px;
  }
  .world-data-trigger strong { font-size: 11px; }
  .world-data-drawer__panel {
    right: 10px;
    width: calc(100vw - 20px);
    height: min(86vh, 760px);
    border-radius: 22px;
  }
  .world-data-drawer__topbar { height: 58px; padding: 0 12px 0 14px; }
  .world-data-drawer__topbar > div:first-child { display: block; }
  .world-data-drawer__kicker { display: block; margin-bottom: 3px; }
  .world-data-drawer__topbar strong { font-size: 11px; }
  .world-data-drawer__demo { display: none; }
  .world-data-dashboard { height: calc(100% - 58px); }
  .world-data-dashboard__image { object-fit: contain; background: #020402; }
  .world-data-dashboard__note {
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 14px;
    line-height: 1.5;
  }
}


/* MATCHA MEMORY ORBS */
.matcha-memory-orbs {
  position: fixed;
  inset: 0;
  z-index: 22;
  pointer-events: none;
}
.memory-orb {
  position: absolute;
  left: var(--ox);
  top: var(--oy);
  width: var(--os);
  height: var(--os);
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  pointer-events: auto;
  cursor: pointer;
  animation: memoryOrbFloat 8.5s ease-in-out infinite;
  isolation: isolate;
}
.memory-orb:nth-child(2) { animation-duration: 10.2s; animation-delay: -2.4s; }
.memory-orb:nth-child(3) { animation-duration: 9.4s; animation-delay: -4.2s; }
.memory-orb:nth-child(4) { animation-duration: 11s; animation-delay: -1.3s; }
.memory-orb__preview {
  position: absolute;
  inset: 9px;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  object-fit: cover;
  border-radius: 50%;
  opacity: .17;
  filter: saturate(.9) brightness(.72) contrast(1.08);
  transition: opacity .3s ease, transform .35s ease, filter .3s ease;
  z-index: 1;
}
.memory-orb__halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(168,216,120,.04), rgba(224,255,190,.95), rgba(168,216,120,.06) 22%, rgba(255,255,255,.06) 58%, rgba(201,255,151,.78) 82%, rgba(168,216,120,.04));
  box-shadow: 0 0 14px rgba(184,235,132,.26), 0 0 34px rgba(168,216,120,.16), inset 0 0 18px rgba(168,216,120,.12);
  animation: memoryHaloSpin 5.8s linear infinite;
  z-index: 2;
  -webkit-mask: radial-gradient(circle, transparent 61%, #000 63%);
  mask: radial-gradient(circle, transparent 61%, #000 63%);
}
.memory-orb__spark {
  position: absolute;
  width: 8px;
  height: 8px;
  right: 7%;
  top: 12%;
  border-radius: 50%;
  background: #e8ffc7;
  box-shadow: 0 0 9px #e8ffc7, 0 0 24px rgba(168,216,120,.95), 0 0 46px rgba(168,216,120,.42);
  animation: memorySparkPulse 2s ease-in-out infinite;
  z-index: 4;
}
.memory-orb__label {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  color: rgba(230,245,219,.74);
  font-size: 9px;
  letter-spacing: .16em;
  white-space: nowrap;
  opacity: 0;
  transition: .25s ease;
  text-shadow: 0 0 10px rgba(168,216,120,.3);
}
.memory-orb:hover .memory-orb__preview {
  opacity: .78;
  transform: scale(1.04);
  filter: saturate(1.02) brightness(.92) contrast(1.04);
}
.memory-orb:hover .memory-orb__label { opacity: 1; transform: translateX(-50%) translateY(0); }
.memory-orb:hover .memory-orb__halo { box-shadow: 0 0 18px rgba(208,255,162,.6), 0 0 52px rgba(168,216,120,.28), inset 0 0 24px rgba(168,216,120,.14); }
@keyframes memoryOrbFloat {
  0%,100% { transform: translate(-50%, -50%) translate3d(0,0,0); }
  30% { transform: translate(-50%, -50%) translate3d(7px,-10px,0); }
  60% { transform: translate(-50%, -50%) translate3d(-5px,-17px,0); }
}
@keyframes memoryHaloSpin { to { transform: rotate(360deg); } }
@keyframes memorySparkPulse {
  0%,100% { opacity: .4; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.45); }
}

.memory-gallery {
  position: fixed;
  inset: 0;
  z-index: 96;
  visibility: hidden;
  pointer-events: none;
}
.memory-gallery.is-open { visibility: visible; pointer-events: auto; }
.memory-gallery__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0);
  transition: .36s ease;
}
.memory-gallery.is-open .memory-gallery__backdrop {
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(7px);
}
.memory-gallery__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1040px, calc(100vw - 70px));
  height: min(720px, calc(100vh - 82px));
  transform: translate(-50%, -48%) scale(.93);
  opacity: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(190,235,149,.28);
  background: rgba(5,7,4,.57);
  box-shadow: 0 28px 110px rgba(0,0,0,.64), 0 0 74px rgba(168,216,120,.14), inset 0 0 36px rgba(168,216,120,.04);
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr);
  transition: transform .48s cubic-bezier(.18,.82,.24,1), opacity .32s ease;
}
.memory-gallery.is-open .memory-gallery__panel {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.memory-gallery__light-runner {
  position: absolute;
  inset: -2px;
  border-radius: 31px;
  z-index: 10;
  pointer-events: none;
  background: conic-gradient(from 0deg, transparent 0 78%, rgba(226,255,198,.95) 82%, rgba(168,216,120,.2) 86%, transparent 91% 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  animation: memoryPanelLight 4.8s linear infinite;
}
@keyframes memoryPanelLight { to { transform: rotate(360deg); } }
.memory-gallery__media { position: relative; overflow: hidden; min-width: 0; }
.memory-gallery__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  filter: saturate(.96) contrast(1.04) brightness(.9);
  transition: opacity .5s ease, transform .85s cubic-bezier(.18,.8,.22,1);
}
.memory-gallery.is-open .memory-gallery__media img.is-loaded { opacity: .91; transform: scale(1); }
.memory-gallery__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.03), rgba(0,0,0,.13)), radial-gradient(circle at 55% 42%, rgba(168,216,120,.04), rgba(0,0,0,.18) 82%);
  pointer-events: none;
}
.memory-gallery__scan {
  position: absolute;
  left: -10%;
  top: -4%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(222,255,188,.72), transparent);
  box-shadow: 0 0 18px rgba(168,216,120,.52);
  opacity: .55;
  animation: memoryGalleryScan 5.8s linear infinite;
}
@keyframes memoryGalleryScan { from { top: -2%; } to { top: 102%; } }
.memory-gallery__caption {
  position: relative;
  z-index: 3;
  padding: 56px 34px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(5,8,4,.64), rgba(2,4,2,.50));
  backdrop-filter: blur(12px);
}
.memory-gallery__kicker { color: rgba(168,216,120,.76); font-size: 10px; letter-spacing: .22em; }
.memory-gallery__caption h3 { margin: 15px 0 6px; font-size: clamp(34px, 4vw, 64px); line-height: .95; letter-spacing: -.025em; }
.memory-gallery__jp { margin: 0 0 18px; color: rgba(230,245,219,.84); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 16px; letter-spacing: .08em; }
.memory-gallery__desc { margin: 0; color: rgba(255,255,255,.62); line-height: 1.8; font-size: 14px; }
.memory-gallery__close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(0,0,0,.38);
  color: rgba(255,255,255,.9);
  font-size: 25px;
  cursor: pointer;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.memory-gallery__close:hover { color: #bfe991; border-color: rgba(168,216,120,.4); }
.memory-gallery__nav { margin-top: auto; padding-top: 30px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.memory-gallery__nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(168,216,120,.22);
  background: rgba(168,216,120,.04);
  color: rgba(230,245,219,.84);
  cursor: pointer;
}
.memory-gallery__nav span { font-size: 10px; letter-spacing: .18em; color: rgba(255,255,255,.42); }
body.memory-gallery-open { overflow: hidden; }

@media (max-width: 900px) {
  .memory-orb { --os: 58px !important; }
  .memory-orb:nth-child(3), .memory-orb:nth-child(4) { display: none; }
  .memory-orb:nth-child(1) { --ox: 11% !important; --oy: 76% !important; }
  .memory-orb:nth-child(2) { --ox: 87% !important; --oy: 70% !important; }
  .memory-gallery__panel { grid-template-columns: 1fr; grid-template-rows: minmax(0, 1fr) auto; width: calc(100vw - 24px); height: calc(100vh - 48px); }
  .memory-gallery__caption { padding: 22px 22px 20px; }
  .memory-gallery__caption h3 { font-size: 32px; }
  .memory-gallery__nav { padding-top: 16px; }
}


/* Interactive traditional tea room */
.tea-room-trigger {
  position: fixed;
  left: 22px;
  top: 44%;
  z-index: 48;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 1px solid rgba(225,255,184,.30);
  background: radial-gradient(circle at 36% 30%, rgba(168,216,120,.14), rgba(4,8,3,.72) 48%, rgba(1,2,1,.88));
  color: rgba(244,251,239,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.03), 0 0 34px rgba(168,216,120,.12), inset 0 0 28px rgba(168,216,120,.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  overflow: hidden;
  animation: teaRoomFloat 7.8s ease-in-out infinite;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.tea-room-trigger:hover {
  border-color: rgba(225,255,184,.65);
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 0 52px rgba(168,216,120,.26), inset 0 0 34px rgba(168,216,120,.09);
  transform: scale(1.05);
}
.tea-room-trigger__halo {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1px solid rgba(168,216,120,.20);
  animation: teaRoomHalo 3.2s ease-in-out infinite;
}
.tea-room-trigger__dot {
  position: absolute;
  right: 17px;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dcffb0;
  box-shadow: 0 0 10px #dcffb0, 0 0 24px rgba(168,216,120,.75);
}
.tea-room-trigger__eyebrow { font-size: 8px; letter-spacing: .22em; color: rgba(168,216,120,.72); }
.tea-room-trigger strong { font-size: 13px; letter-spacing: .10em; line-height: 1.1; }
.tea-room-trigger__jp { font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 12px; color: rgba(255,255,255,.62); }
@keyframes teaRoomFloat {
  0%,100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}
@keyframes teaRoomHalo {
  0%,100% { opacity: .25; transform: scale(.96); }
  50% { opacity: .9; transform: scale(1.04); }
}

.tea-room-inspector {
  position: fixed;
  inset: 0;
  z-index: 118;
  visibility: hidden;
  pointer-events: none;
}
.tea-room-inspector.is-open { visibility: visible; pointer-events: auto; }
.tea-room-inspector__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0);
  transition: .34s ease;
}
.tea-room-inspector.is-open .tea-room-inspector__backdrop {
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
}
.tea-room-inspector__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1280px, calc(100vw - 36px));
  height: min(900px, calc(100vh - 42px));
  transform: translate(-50%, -47%) scale(.965);
  opacity: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(218,255,174,.30);
  background: rgba(3,5,2,.74);
  box-shadow: 0 30px 120px rgba(0,0,0,.72), 0 0 76px rgba(168,216,120,.12), inset 0 0 30px rgba(168,216,120,.03);
  transition: opacity .28s ease, transform .40s cubic-bezier(.2,.78,.2,1);
}
.tea-room-inspector.is-open .tea-room-inspector__panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.tea-room-inspector__runner {
  position: absolute;
  z-index: 7;
  left: -30%;
  top: 0;
  width: 26%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(235,255,208,1), transparent);
  box-shadow: 0 0 18px rgba(194,255,135,.9), 0 0 42px rgba(168,216,120,.35);
  animation: teaRoomRunner 3.6s linear infinite;
}
@keyframes teaRoomRunner { to { left: 112%; } }
.tea-room-inspector__close {
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 12;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.42);
  color: rgba(255,255,255,.88);
  font-size: 25px;
  cursor: pointer;
}
.tea-room-inspector__header {
  height: 86px;
  padding: 0 72px 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(8,11,6,.76), rgba(2,4,2,.48));
}
.tea-room-inspector__kicker { font-size: 9px; letter-spacing: .22em; color: rgba(168,216,120,.74); white-space: nowrap; }
.tea-room-inspector__header h3 { margin: 0; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 22px; font-weight: 500; letter-spacing: .08em; }
.tea-room-inspector__header p { margin: 3px 0 0; color: rgba(255,255,255,.48); font-size: 11px; letter-spacing: .10em; }
.tea-room-inspector__hint { font-size: 9px; letter-spacing: .18em; color: rgba(255,255,255,.36); }
.tea-room-inspector__stage {
  position: relative;
  height: calc(100% - 86px);
  padding: 10px 12px 12px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, rgba(168,216,120,.08), rgba(3,4,3,0) 38%), #030403;
  display: grid;
  place-items: center;
}
.tea-room-inspector__figure {
  position: relative;
  width: min(74vh, calc(100% - 160px));
  max-width: 780px;
  max-height: calc(100% - 38px);
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(168,216,120,.18);
  box-shadow: 0 18px 80px rgba(0,0,0,.4), 0 0 40px rgba(168,216,120,.08);
}
.tea-room-inspector__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.94) contrast(1.02) brightness(.92);
  opacity: .96;
  transform: scale(1.01);
  transition: transform .6s ease;
}
.tea-room-inspector.is-open .tea-room-inspector__image { transform: scale(1); }
.tea-room-inspector__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.08), rgba(0,0,0,0) 54%, rgba(0,0,0,.08)), linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.10));
  pointer-events: none;
}
.tea-room-inspector__scan {
  position: absolute;
  left: -10%;
  top: -4%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(218,255,177,.82), transparent);
  box-shadow: 0 0 18px rgba(168,216,120,.76);
  animation: teaRoomScan 6s linear infinite;
  pointer-events: none;
}
@keyframes teaRoomScan { to { top: 104%; } }

.tea-hotspot {
  position: absolute;
  left: var(--hx);
  top: var(--hy);
  z-index: 5;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
}
.tea-hotspot span,
.tea-hotspot::before,
.tea-hotspot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.tea-hotspot span {
  width: 7px;
  height: 7px;
  background: #e5ffbd;
  box-shadow: 0 0 9px #e5ffbd, 0 0 22px rgba(168,216,120,.85);
}
.tea-hotspot::before {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(226,255,192,.62);
  animation: hotspotPulse 2.2s ease-in-out infinite;
}
.tea-hotspot::after {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(168,216,120,.18);
  animation: hotspotPulse 2.2s .7s ease-in-out infinite;
}
.tea-hotspot:hover::before,
.tea-hotspot.is-active::before { border-color: rgba(245,255,230,1); box-shadow: 0 0 18px rgba(168,216,120,.55); }
@keyframes hotspotPulse {
  0%,100% { opacity: .38; transform: translate(-50%,-50%) scale(.82); }
  50% { opacity: .95; transform: translate(-50%,-50%) scale(1.18); }
}
.tea-hotspot-card {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 6;
  width: min(330px, 36%);
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(168,216,120,.18);
  background: rgba(4,6,3,.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 44px rgba(0,0,0,.34), inset 0 0 22px rgba(168,216,120,.025);
  transition: border-color .22s ease, transform .22s ease;
}
.tea-hotspot-card.is-active { border-color: rgba(168,216,120,.42); transform: translateY(-4px); }
.tea-hotspot-card__eyebrow { display: block; color: rgba(168,216,120,.74); font-size: 9px; letter-spacing: .20em; margin-bottom: 8px; }
.tea-hotspot-card strong { display: block; font-size: 18px; letter-spacing: .05em; }
.tea-hotspot-card > span:not(.tea-hotspot-card__eyebrow) { display: block; margin-top: 4px; color: rgba(255,255,255,.48); font-size: 11px; letter-spacing: .08em; }
.tea-hotspot-card p { margin: 10px 0 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.7; }
body.tea-room-open { overflow: hidden; }

@media (max-width: 900px) {
  .tea-room-trigger { left: 12px; top: auto; bottom: 130px; width: 90px; height: 90px; }
  .tea-room-inspector__panel { width: calc(100vw - 10px); height: calc(100vh - 20px); }
  .tea-room-inspector__header { height: 76px; grid-template-columns: 1fr; padding: 12px 58px 12px 18px; gap: 2px; }
  .tea-room-inspector__kicker, .tea-room-inspector__hint { display: none; }
  .tea-room-inspector__stage { height: calc(100% - 76px); }
  .tea-room-inspector__figure { width: calc(100% - 24px); max-height: calc(100% - 136px); }
  .tea-hotspot-card { left: 12px; right: 12px; bottom: 12px; width: auto; }
  .tea-hotspot { width: 44px; height: 44px; }
}


.tea-room-inspector__stage--exhibit {
  background: radial-gradient(circle at 50% 30%, rgba(168,216,120,.08), rgba(3,4,3,0) 38%), #030403;
}
.tea-room-inspector__figure--exhibit {
  width: min(calc(100% - 12px), 1360px);
  max-width: 1360px;
  aspect-ratio: 1402 / 1122;
  max-height: calc(100% - 8px);
  border-radius: 18px;
  border: 1px solid rgba(168,216,120,.14);
  box-shadow: 0 18px 80px rgba(0,0,0,.42), 0 0 40px rgba(168,216,120,.08);
  overflow: hidden;
}
.tea-room-inspector__image--exhibit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: none;
  opacity: 1;
  transform: none;
}
@media (max-width: 760px) {
  .tea-room-inspector__figure--exhibit {
    width: calc(100% - 4px);
    max-height: calc(100% - 92px);
    border-radius: 12px;
  }
}


/* v0.13.5 — large square chashitu.webp exhibit */
.tea-room-inspector__panel {
  width: min(1240px, calc(100vw - 24px));
  height: min(940px, calc(100vh - 24px));
}
.tea-room-inspector__stage--exhibit {
  overflow-y: auto;
  overflow-x: hidden;
  display: block;
  padding: 12px 14px 22px;
  scrollbar-width: thin;
  scrollbar-color: rgba(168,216,120,.35) rgba(255,255,255,.03);
}
.tea-room-inspector__stage--exhibit::-webkit-scrollbar { width: 7px; }
.tea-room-inspector__stage--exhibit::-webkit-scrollbar-track { background: rgba(255,255,255,.03); }
.tea-room-inspector__stage--exhibit::-webkit-scrollbar-thumb { background: rgba(168,216,120,.34); border-radius: 999px; }
.tea-room-inspector__figure--exhibit {
  position: relative;
  width: min(100%, 1080px);
  max-width: 1080px;
  height: auto;
  max-height: none;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #050505;
}
.tea-room-inspector__image--exhibit {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: none;
  opacity: 1;
  transform: none !important;
}
@media (max-width: 760px) {
  .tea-room-inspector__panel {
    width: calc(100vw - 8px);
    height: calc(100vh - 12px);
  }
  .tea-room-inspector__stage--exhibit { padding: 8px 6px 18px; }
  .tea-room-inspector__figure--exhibit {
    width: 100%;
    max-width: none;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
  }
}


/* v0.13.8 stability / visibility fixes */
.reveal-block,
.reveal-block.is-visible {
  opacity: 1 !important;
  transform: none !important;
}
.jme-main,
.jme-main h1,
.jme-main h2,
.jme-main h3,
.jme-main p,
.jme-main .display-title,
.jme-main .display-subtitle {
  opacity: 1;
}
.display-copy { color: rgba(255,255,255,.82); }
.section-label, .hero-kicker { opacity: 1; }
.interest-badge { display: none !important; }

/* Guaranteed volume conversion without JavaScript */
.volume-item {
  overflow: visible;
  isolation: isolate;
}
.volume-item::after {
  content: attr(data-popup);
  position: absolute;
  left: calc(100% + 38px);
  top: 50%;
  z-index: 30;
  width: min(430px, 34vw);
  padding: 18px 22px;
  border-radius: 22px;
  border: 1px solid rgba(168,216,120,.34);
  background: rgba(5,8,4,.92);
  color: #f4f8f1;
  box-shadow: 0 18px 52px rgba(0,0,0,.48), 0 0 34px rgba(168,216,120,.12);
  font-size: clamp(24px, 2.8vw, 46px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.025em;
  text-transform: none;
  text-align: left;
  opacity: 0;
  transform: translate(12px,-50%) scale(.96);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  white-space: normal;
}
.volume-item::before {
  content: "Based on 5g of matcha per latte";
  position: absolute;
  left: calc(100% + 60px);
  top: calc(50% + 72px);
  z-index: 31;
  width: 350px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.volume-item:hover::after,
.volume-item:focus-visible::after,
.volume-item.is-active::after {
  opacity: 1;
  transform: translate(0,-50%) scale(1);
}
.volume-item:hover::before,
.volume-item:focus-visible::before,
.volume-item.is-active::before { opacity: 1; }

/* Make atmosphere orbs unmistakably visible */
.matcha-memory-orbs { z-index: 44; }
.memory-orb__preview { opacity: .44; filter: saturate(1) brightness(.88) contrast(1.04); }
.memory-orb__label { opacity: .72; transform: translateX(-50%) translateY(0); }
.memory-orb:hover .memory-orb__preview { opacity: 1; }

/* Gallery image is fully visible when opened */
.memory-gallery__media img,
.memory-gallery.is-open .memory-gallery__media img,
.memory-gallery.is-open .memory-gallery__media img.is-loaded {
  opacity: 1 !important;
  filter: saturate(1) contrast(1.02) brightness(.96);
}

/* World map stays opaque */
.world-data-dashboard__image { opacity: 1 !important; }

@media (max-width: 900px) {
  .volume-item::after {
    left: 50%; top: calc(100% + 14px); width: min(86vw, 420px);
    transform: translate(-50%,8px) scale(.97);
    text-align: center;
    font-size: clamp(20px, 7vw, 34px);
  }
  .volume-item:hover::after,
  .volume-item:focus-visible::after,
  .volume-item.is-active::after { transform: translate(-50%,0) scale(1); }
  .volume-item::before { display:none; }
}


/* v0.13.9 — single-source volume conversion display */
.volume-display { display: none !important; }
.volume-item::after,
.volume-item::before { z-index: 60; }


.universe-panel--healthy {
  min-height: 130vh;
  overflow: hidden;
}
.healthy-section {
  position: relative;
  z-index: 7;
  text-align: center;
  padding: 160px 0;
}
.healthy-mega {
  margin: 18px 0 34px;
  font-size: clamp(72px, 13vw, 210px);
  line-height: .78;
  letter-spacing: -.045em;
  font-weight: 800;
  color: rgba(255,255,255,.97);
  text-transform: uppercase;
}
.healthy-mega::first-line {
  color: rgba(168,216,120,.96);
}
.healthy-lead {
  width: min(860px, calc(100% - 24px));
  margin: 0 auto;
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: 1.65;
  color: rgba(255,255,255,.72);
}
.healthy-words {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
  margin: 52px auto 32px;
  width: min(1000px, 100%);
}
.healthy-words span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(168,216,120,.22);
  background: rgba(168,216,120,.035);
  color: rgba(207,240,181,.82);
  font-size: clamp(12px, 1.2vw, 16px);
  letter-spacing: .18em;
  backdrop-filter: blur(8px);
}
.healthy-note {
  width: min(720px, calc(100% - 24px));
  margin: 0 auto;
  color: rgba(255,255,255,.42);
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: .04em;
}
@media (max-width:760px) {
  .universe-panel--healthy { min-height: auto; }
  .healthy-section { padding: 110px 0; }
  .healthy-mega { font-size: clamp(56px, 19vw, 105px); }
  .healthy-words { gap: 10px; }
  .healthy-words span { min-height: 46px; padding: 0 16px; }
}


/* v0.14.1 — oversized left-aligned wholesale volumes */
.universe-panel--volume .section-inner--narrow {
  width: 100%;
  max-width: none;
  padding-left: clamp(18px, 2.6vw, 54px);
  padding-right: clamp(18px, 2.6vw, 54px);
  box-sizing: border-box;
  text-align: left;
}
.universe-panel--volume .section-label,
.universe-panel--volume .display-copy {
  margin-left: 0;
  text-align: left;
}
.universe-panel--volume .display-copy {
  max-width: 760px;
}
.universe-panel--volume .volume-stage {
  width: 100%;
}
.universe-panel--volume .volume-tower {
  justify-items: start;
  align-items: start;
  text-align: left;
  gap: clamp(34px, 4.2vw, 74px);
  width: 100%;
}
.universe-panel--volume .volume-item {
  align-items: flex-start;
  text-align: left;
  font-size: clamp(108px, 22.5vw, 315px);
  line-height: .78;
  letter-spacing: .015em;
}
.universe-panel--volume .volume-item:hover,
.universe-panel--volume .volume-item.is-active {
  transform: translateX(8px);
}

@media (max-width: 900px) {
  .universe-panel--volume .section-inner--narrow {
    padding-left: 16px;
    padding-right: 16px;
  }
  .universe-panel--volume .volume-tower {
    gap: 34px;
  }
  .universe-panel--volume .volume-item {
    font-size: clamp(76px, 19vw, 150px);
    line-height: .82;
  }
}
