:root{
  --cream2:#edeae0; --paper:#fdfbf4; --border:#ddd4c0;
  --ink:#2a2018; --muted:#7a6d5c; --terra:#c07a45;
}
*{ box-sizing:border-box; margin:0; padding:0; }
body{ background:var(--cream2); font-family:'Jost',sans-serif; -webkit-font-smoothing:antialiased; }

.hero{ position:relative; max-width:1500px; margin:0 auto; padding:8px 6px 6px; }
.hero-viewport{ overflow:hidden; }
.hero-rail{ display:flex; gap:18px; will-change:transform; align-items:flex-start; }

/* Active world shows full; the next peeks ~16% on the right. */
.hero-slide{ flex:0 0 84%; position:relative; }
.hero-slide iframe{ width:100%; border:0; display:block; }
/* Only the active world is interactive; a peeking world is click-to-focus. */
.hero-slide iframe{ pointer-events:none; }
.hero-slide.is-active iframe{ pointer-events:auto; }
.hero-slide:not(.is-active){ cursor:pointer; }
.hero-slide:not(.is-active)::after{ content:""; position:absolute; inset:0; border-radius:14px; background:rgba(237,234,224,0.34); transition:background .3s ease; }
.hero-slide:not(.is-active):hover::after{ background:rgba(237,234,224,0.12); }

.hero-ph{ width:100%; min-height:460px; display:flex; align-items:center; justify-content:center; border-radius:14px; background:#f7f4ea; border:1px solid var(--border); color:var(--muted); font-family:'Cormorant Garamond',serif; font-style:italic; font-size:19px; }

/* Locked world card (worlds beyond the free ones, non-members). */
/* The locked slide is a teaser: the world's own scene sits behind, softened
   enough to read as a look through a window rather than a usable world, with
   the card floating over it. */
.hero-locked{ font-style:normal; position:relative; overflow:hidden; }
.hero-lock-art{ position:absolute; inset:0; background-size:cover; background-position:center;
  filter:blur(3px) saturate(.96); transform:scale(1.06); opacity:.85; }
.hero-locked::after{ content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at center, rgba(245,243,236,.92) 0%, rgba(245,243,236,.72) 42%, rgba(245,243,236,.42) 100%); }
.hero-lock-in{ position:relative; z-index:2; text-align:center; max-width:430px; padding:30px 24px;
  background:rgba(253,251,244,.82); border:1px solid rgba(221,212,192,.9); border-radius:20px;
  box-shadow:0 16px 40px rgba(42,32,24,.14); }
.hero-lock-caption{ display:block; font-family:'Cormorant Garamond',serif; font-style:italic;
  font-size:17px; line-height:1.4; color:#7a6d5c; margin:-4px 0 12px; }
.hero-lock-kicker{ display:block; font-family:'Jost',sans-serif; font-size:10.5px; letter-spacing:2.2px; text-transform:uppercase; color:var(--muted); }
.hero-lock-title{ display:block; font-family:'Cormorant Garamond',serif; font-style:italic; font-weight:500; font-size:30px; line-height:1.15; color:var(--ink); margin:10px 0 12px; }
.hero-lock-body{ display:block; font-family:'Jost',sans-serif; font-size:14.5px; line-height:1.6; color:#4a3d30; margin-bottom:22px; }
.hero-lock-cta{ display:inline-block; font-family:'Jost',sans-serif; background:#3a4a2e; color:#f5f3ec; border-radius:22px; padding:12px 26px; font-size:13.5px; letter-spacing:0.6px; text-decoration:none; }
.hero-lock-cta:hover{ background:#2f3d25; }

.hero-arrow{ position:absolute; top:40%; transform:translateY(-50%); width:58px; height:58px; border-radius:50%; background:var(--paper); border:2px solid var(--terra); color:var(--terra); font-size:30px; line-height:1; cursor:pointer; box-shadow:0 10px 26px rgba(40,30,20,.24); z-index:6; display:flex; align-items:center; justify-content:center; transition:background .2s ease, color .2s ease; }
.hero-arrow.prev{ left:28px; }
.hero-arrow.next{ right:28px; }
.hero-arrow:disabled{ opacity:0; pointer-events:none; }
.hero-arrow:hover{ background:var(--terra); color:#fdf9ee; }

.hero-dots{ display:flex; gap:8px; justify-content:center; padding-top:14px; }
.hero-dot{ width:9px; height:9px; border-radius:50%; background:var(--border); border:none; cursor:pointer; padding:0; transition:background .2s ease, transform .2s ease; }
.hero-dot.on{ background:var(--terra); transform:scale(1.15); }

@media (prefers-reduced-motion: no-preference){
  .hero-rail{ transition:transform .42s cubic-bezier(.22,.7,.28,1); }
}
@media (max-width:640px){
  .hero-slide{ flex:0 0 88%; }
  .hero-arrow{ width:48px; height:48px; font-size:25px; }
  .hero-arrow.prev{ left:12px; } .hero-arrow.next{ right:12px; }
}
