:root {
  color-scheme: light;
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-strong: #f0f3f6;
  --ink: #111827;
  --text: #243044;
  --muted: #6b7280;
  --line: #dde3ea;
  --blue: #38b6ff;
  --blue-bright: #38b6ff;
  --green: #11a683;
  --amber: #d98b16;
  --dark: #0f172a;
  --shadow: 0 22px 70px rgba(17, 24, 39, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(246, 247, 249, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.site-footer,
.community-link {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(22px, 3.2vw, 30px);
}

.nav-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 750;
}

.nav-links a {
  min-height: 38px;
  padding: 9px 11px;
  border-radius: 7px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--surface-strong);
  color: var(--ink);
  outline: none;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 64px);
  min-height: min(760px, calc(100vh - 70px));
  padding: clamp(76px, 10vw, 128px) clamp(22px, 5vw, 72px) clamp(54px, 8vw, 88px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(56, 182, 255, 0.16), transparent 42%),
    linear-gradient(315deg, rgba(17, 166, 131, 0.1), transparent 38%),
    var(--bg);
}

.hero-content {
  flex: 1 1 460px;
  max-width: 760px;
}

.hero-scene {
  flex: 0 1 440px;
  min-width: 0;
}

.dev-scene {
  display: block;
  width: 100%;
  height: auto;
}

/* ambient screen glow breathing */
.scene-glow {
  transform-box: fill-box;
  transform-origin: center;
  animation: glow-pulse 4.5s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(0.97); }
  50%      { opacity: 1;   transform: scale(1.03); }
}

/* typing line + blinking caret */
.type-line {
  transform-box: fill-box;
  transform-origin: left center;
  animation: type-grow 2.6s steps(12, end) infinite;
}

@keyframes type-grow {
  0%   { transform: scaleX(0.15); }
  60%  { transform: scaleX(1); }
  100% { transform: scaleX(1); }
}

.caret {
  animation: caret-blink 1s steps(1, end) infinite;
}

@keyframes caret-blink {
  0%, 50%   { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* code drifting up out of the screen */
.code-stream .ct {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: code-rise 4.2s ease-in infinite;
}

.code-stream .ct:nth-child(1) { animation-delay: 0s;    }
.code-stream .ct:nth-child(2) { animation-delay: 0.5s;  }
.code-stream .ct:nth-child(3) { animation-delay: 1s;    }
.code-stream .ct:nth-child(4) { animation-delay: 1.5s;  }
.code-stream .ct:nth-child(5) { animation-delay: 2s;    }
.code-stream .ct:nth-child(6) { animation-delay: 2.5s;  }
.code-stream .ct:nth-child(7) { animation-delay: 3s;    }
.code-stream .ct:nth-child(8) { animation-delay: 3.5s;  }
.code-stream .ct:nth-child(9) { animation-delay: 0.8s;  }

@keyframes code-rise {
  0%   { opacity: 0; transform: translateY(0)    scale(0.85); }
  18%  { opacity: 1; }
  70%  { opacity: 0.9; }
  100% { opacity: 0; transform: translateY(-118px) scale(1.05); }
}

/* gentle typing motion */
.person {
  transform-box: fill-box;
  transform-origin: bottom center;
  animation: type-bob 0.34s ease-in-out infinite alternate;
}

@keyframes type-bob {
  from { transform: translateY(0); }
  to   { transform: translateY(1.6px); }
}

/* locs sway */
.locs .loc {
  transform-box: fill-box;
  transform-origin: top center;
  animation: loc-sway 3.4s ease-in-out infinite;
}

.locs .loc:nth-child(odd)  { animation-delay: -1.1s; }
.locs .loc:nth-child(3n)   { animation-duration: 4s; }

@keyframes loc-sway {
  0%, 100% { transform: rotate(-1.4deg); }
  50%      { transform: rotate(1.4deg); }
}

.community-scene {
  min-width: 0;
}

.chat-scene {
  display: block;
  width: 100%;
  height: auto;
}

/* community section: heading + avatar beside the list */
.community-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.community-intro {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
}

.community-scene {
  max-width: 360px;
}

/* scroll-reveal — bold entrances with overshoot + blur */
.reveal {
  opacity: 0;
  transform: translateY(70px) scale(0.9);
  filter: blur(8px);
  transition:
    opacity 0.6s ease,
    transform 0.9s cubic-bezier(0.18, 1.2, 0.3, 1),
    filter 0.6s ease;
  will-change: opacity, transform, filter;
}

.reveal.from-right { transform: translateX(120px) translateY(20px) rotate(4deg) scale(0.92); }
.reveal.from-left  { transform: translateX(-120px) translateY(20px) rotate(-4deg) scale(0.92); }
.reveal.zoom       { transform: scale(0.55); }

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (max-width: 920px) {
  .community-section {
    grid-template-columns: 1fr;
  }

  .community-scene {
    max-width: 360px;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene-glow,
  .type-line,
  .caret,
  .code-stream .ct,
  .person,
  .locs .loc {
    animation: none;
  }
  .code-stream .ct { opacity: 0.9; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(4rem, 10vw, 8.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 640px;
  color: #4b5563;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button.primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(56, 182, 255, 0.4);
}

.button.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button:hover,
.button:focus-visible,
.destination-card:hover,
.destination-card:focus-visible,
.community-link:hover,
.community-link:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.intro-section,
.community-section {
  background: var(--surface);
}

.feature-grid,
.link-grid,
.community-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.destination-card,
.empty-marketplace,
.community-link {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 16px 45px rgba(17, 24, 39, 0.06);
}

.feature-card {
  min-height: 216px;
  padding: 24px;
}

.feature-index,
.card-kicker {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card p,
.destination-card span:last-child,
.policy-hero p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #fbfcfd;
}

.play-fallback,
.pull-panel {
  grid-template-columns: minmax(280px, 0.86fr) minmax(340px, 1fr);
}

.play-scene {
  width: min(440px, 100%);
  justify-self: center;
}

.play-dev-scene {
  filter: drop-shadow(0 22px 42px rgba(17, 24, 39, 0.12));
}

.play-content {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
}

.play-content .section-heading {
  margin-bottom: 22px;
}

.compact-link-grid {
  grid-template-columns: 1fr;
}

.compact-link-grid .destination-card {
  min-height: 148px;
}

body.walk-on .play-fallback {
  display: none;
}

body.walk-on .marketplace-fallback {
  display: none;
}

.link-grid,
.community-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.destination-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.destination-card:hover,
.destination-card:focus-visible {
  border-color: rgba(56, 182, 255, 0.6);
  background: #f2faff;
}

.destination-card strong {
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1;
}

.marketplace-section {
  background: var(--bg);
  overflow: hidden;
}

.datapacks-section {
  background: #fbfcfd;
  overflow: hidden;
}

.market-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.datapack-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.datapack-card {
  min-height: 196px;
}

.datapack-meta {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(17, 166, 131, 0.14);
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-price {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(56, 182, 255, 0.16);
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 900;
}

.walker-bubble {
  position: absolute;
  left: 50%;
  bottom: 100%;
  min-width: 120px;
  max-width: 170px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.14);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 8px) scale(0.96);
  transition: opacity 150ms ease, transform 150ms ease;
  z-index: 2;
}

.walker-bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - 1px);
  width: 12px;
  height: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  transform: translateX(-50%) rotate(45deg);
}

.walker.is-speaking .walker-bubble {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.empty-marketplace {
  display: grid;
  min-height: 220px;
  place-items: center;
  color: var(--muted);
  background:
    repeating-linear-gradient(135deg, rgba(17, 24, 39, 0.035) 0 1px, transparent 1px 14px),
    var(--surface);
}

.empty-marketplace p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 850;
}

.community-link {
  justify-content: space-between;
  gap: 20px;
  min-height: 104px;
  padding: 22px 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.community-link span {
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 850;
}

.community-link strong {
  color: var(--green);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(22px, 5vw, 72px);
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--ink);
  font-weight: 850;
}

.policy-page {
  min-height: calc(100vh - 160px);
  padding: clamp(54px, 8vw, 88px) clamp(22px, 5vw, 72px);
  background: var(--bg);
}

.policy-hero {
  max-width: 920px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.policy-hero h1 {
  max-width: none;
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.policy-content {
  max-width: 820px;
  padding-top: 38px;
}

.policy-content h2 {
  margin-top: 32px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.policy-content p {
  color: #4b5563;
}

@media (max-width: 920px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-scene {
    display: none;
  }

  .feature-grid,
  .link-grid,
  .community-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) and (min-width: 921px) {
  .market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
    width: 100%;
  }

  h1 {
    font-size: clamp(3.5rem, 17vw, 5.8rem);
  }

}

@media (max-width: 520px) {
  .nav-links a {
    padding-inline: 8px;
  }

  .hero-actions,
  .button,
  .site-footer,
  .community-link {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

/* ===== intro: cannonball into the pool, splash, then reveal ===== */
#intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: transparent;
}

.intro-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f4fbff 0%, #cdeeff 42%, #7fd0ff 70%, #38b6ff 100%);
}

.pool {
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: 0;
  height: 36%;
  background: linear-gradient(180deg, #2ea2ef 0%, #1c7fd0 100%);
  border-top-left-radius: 60% 80px;
  border-top-right-radius: 60% 80px;
}

.pool-shine {
  position: absolute;
  left: 12%;
  top: 10px;
  width: 44%;
  height: 14px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  filter: blur(2px);
}

.diver {
  position: absolute;
  left: 50%;
  top: 6vh;
  width: clamp(140px, 20vw, 210px);
  transform: translate(-50%, -32vh);
  animation: dive 0.55s cubic-bezier(0.5, 0.05, 0.9, 0.45) forwards;
}

.diver svg {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes dive {
  0%   { transform: translate(-50%, -34vh) rotate(-22deg) scale(0.95); opacity: 0; }
  10%  { opacity: 1; }
  80%  { transform: translate(-50%, 40vh) rotate(38deg) scale(0.82); opacity: 1; }
  100% { transform: translate(-50%, 56vh) rotate(74deg) scale(0.5); opacity: 0; }
}

.splash {
  position: absolute;
  left: 50%;
  top: 62%;
  width: 0;
  height: 0;
}

.burst,
.ripple,
.drop {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.burst {
  width: 90px;
  height: 90px;
  margin: -45px 0 0 -45px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 70%);
}

.ripple {
  width: 140px;
  height: 46px;
  margin: -23px 0 0 -70px;
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
}

.drop {
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: #9fe1ff;
}

.drop.glyph {
  width: auto;
  height: auto;
  margin: 0;
  font-family: ui-monospace, Menlo, monospace;
  font-weight: 800;
  font-size: 16px;
  color: #1c7fd0;
  background: none;
  border-radius: 0;
}

#intro.splashing .diver { opacity: 0; transition: opacity 0.1s; }
#intro.splashing .intro-sky { opacity: 0; transition: opacity 0.35s ease; }
#intro.splashing .burst { animation: burst 0.5s ease-out forwards; }
#intro.splashing .ripple { animation: ripple 0.8s ease-out forwards; }
#intro.splashing .ripple:nth-child(3) { animation-delay: 0.12s; }
#intro.splashing .ripple:nth-child(4) { animation-delay: 0.24s; }
#intro.splashing .drop { animation: drop 0.8s cubic-bezier(0.2, 0.6, 0.4, 1) forwards; }

@keyframes burst {
  0%   { transform: scale(0.2); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}

@keyframes ripple {
  0%   { transform: scale(0.15); opacity: 0.9; }
  100% { transform: scale(3.2); opacity: 0; }
}

@keyframes drop {
  0%   { transform: translate(0, 0) scale(0.4); opacity: 1; }
  55%  { transform: translate(calc(var(--dx) * 0.7), var(--dy)) scale(1); opacity: 1; }
  100% { transform: translate(var(--dx), var(--fall)) scale(0.5); opacity: 0; }
}

#intro.out {
  animation: introOut 0.7s cubic-bezier(0.6, 0, 0.2, 1) forwards;
  pointer-events: none;
}

@keyframes introOut {
  to { opacity: 0; transform: scale(1.12); filter: blur(3px); }
}

body.intro-active { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  #intro { display: none; }
}

@media (max-width: 920px) {
  #intro {
    display: none !important;
  }
}

/* ===== "alive" extras: progress bar, live nav, glow orbs ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 10000;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #38b6ff, #11a683, #d98b16);
  box-shadow: 0 0 16px rgba(56, 182, 255, 0.9);
  transition: width 0.1s linear;
}

body.intro-active .scroll-progress { opacity: 0; }

.nav-links a {
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.nav-links a.active {
  color: #fff;
  background: linear-gradient(90deg, #38b6ff, #11a683);
  box-shadow: 0 8px 22px rgba(56, 182, 255, 0.5);
  transform: translateY(-1px);
}

/* keep section content above the orbs (orbs clip themselves, so bold
   reveals can overshoot section edges without being cut off) */
.hero,
.section {
  position: relative;
}

.hero > :not(.orbs):not(.walker):not(.pull-curtain):not(.market-curtain),
.section > :not(.orbs) {
  position: relative;
  z-index: 1;
}

.orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.34;
  will-change: transform;
}

.orb1 {
  width: 360px;
  height: 360px;
  background: #38b6ff;
  top: -90px;
  left: -70px;
  animation: drift 17s ease-in-out infinite;
}

.orb2 {
  width: 320px;
  height: 320px;
  background: #11a683;
  bottom: -110px;
  right: -60px;
  animation: drift 21s ease-in-out infinite reverse;
}

.orb3 {
  width: 280px;
  height: 280px;
  background: #d98b16;
  top: 36%;
  right: 22%;
  animation: drift 25s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(44px, -36px) scale(1.14); }
  66%      { transform: translate(-32px, 28px) scale(0.92); }
}

@media (prefers-reduced-motion: reduce) {
  .orb { animation: none; }
}

/* ===== scroll-scrubbed "walk across the hero + pull next slide down" ===== */
/* By default the page behaves normally; the pin + figures turn on only when
   JS adds .walk-on (skipped for reduced motion, small screens, or no JS). */
.walker,
.pull-curtain,
.market-curtain {
  display: none;
}

body.walk-on .pin-wrap {
  position: relative;
  height: 420vh;
}

body.walk-on .pin-wrap .hero {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

body.walk-on .walker,
body.walk-on .pull-curtain,
body.walk-on .market-curtain {
  display: block;
}

.walker {
  position: absolute;
  bottom: 13vh;
  left: 50%;
  width: clamp(80px, 10vw, 132px);
  margin-left: -52px;
  z-index: 6;
  transition: transform 360ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: transform;
}

.walker-svg {
  display: block;
  width: 100%;
  height: auto;
}

.walker-right .walker-svg { transform: scaleX(-1); }

.w-leg-front,
.w-leg-back,
.w-arm-front,
.w-arm-back {
  transform-box: fill-box;
  transform-origin: 50% 0%;
}

/* the next slide itself, revealed top-down (like a blind) as it's pulled */
.pull-curtain {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  background: #fbfcfd;
  z-index: 3;
  overflow: hidden;
  clip-path: inset(0 0 100% 0);   /* fully hidden until pulled */
  will-change: clip-path;
}

.market-curtain {
  position: absolute;
  inset: 0;
  height: 100vh;
  z-index: 5;
  overflow: hidden;
  transform: translateX(-100%);
  will-change: transform;
}

.market-panel {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  border-bottom: none;
}

.pull-inner {
  height: 100vh;
}

.pull-panel {
  display: grid;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 100vh;
  height: 100vh;
  border-bottom: none;
  background: #fbfcfd;
}

.pull-bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 12px;
  background: linear-gradient(90deg, #38b6ff, #11a683, #d98b16);
  box-shadow: 0 0 18px rgba(56, 182, 255, 0.7);
}

@media (max-width: 920px) {
  .walker,
  .pull-curtain,
  .market-curtain { display: none !important; }
}
