:root {
  --ink: #071019;
  --ink-soft: #0d1822;
  --paper: #f5efdf;
  --paper-2: #e9dfc6;
  --jade: #3bb29c;
  --jade-dark: #17675f;
  --coral: #ef7869;
  --coral-hot: #ff9a79;
  --gold: #deb861;
  --cyan: #63e8ff;
  --magenta: #ef60de;
  --violet: #6c5ce8;
  --muted: #96a6aa;
  --border: rgba(245, 239, 223, .16);
  --shadow: 0 28px 80px rgba(0, 0, 0, .34);
  --radius: 28px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--coral); color: var(--ink); }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 20px; top: -100px; z-index: 999; padding: 12px 16px; background: var(--paper); color: var(--ink); border-radius: 12px; }
.skip-link:focus { top: 20px; }
.prototype-ribbon { position: fixed; right: -62px; top: 36px; z-index: 200; width: 260px; padding: 8px; background: var(--gold); color: var(--ink); text-align: center; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 900; transform: rotate(42deg); box-shadow: 0 7px 24px rgba(0,0,0,.25); pointer-events: none; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: 88px; display: flex; align-items: center; transition: .3s ease; }
.site-header.is-scrolled { height: 72px; background: rgba(7, 16, 25, .88); border-bottom: 1px solid var(--border); backdrop-filter: blur(18px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(99,232,255,.35); color: var(--cyan); border-radius: 50%; background: rgba(99,232,255,.06); }
.brand-mark svg { width: 28px; height: 28px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; text-transform: uppercase; letter-spacing: .09em; }
.brand-copy strong { font-family: var(--serif); font-size: 17px; letter-spacing: .06em; }
.brand-copy small { margin-top: 5px; color: var(--gold); font-size: 10px; letter-spacing: .36em; }
.site-nav { display: flex; align-items: center; gap: 27px; font-size: 13px; font-weight: 700; }
.site-nav > a:not(.nav-cta) { color: rgba(245,239,223,.76); position: relative; }
.site-nav > a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--cyan); transition: .25s ease; }
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { right: 0; }
.site-nav > a:hover, .site-nav > a:focus-visible { color: var(--paper); }
.nav-cta { padding: 12px 17px; border: 1px solid rgba(222,184,97,.45); border-radius: 999px; color: var(--gold); }
.nav-cta:hover { background: var(--gold); color: var(--ink); }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px; background: var(--paper); transition: .25s; }

.hero { position: relative; min-height: 820px; height: 100svh; max-height: 980px; display: grid; place-items: center; overflow: hidden; background:
  radial-gradient(circle at 72% 38%, rgba(54,159,142,.18), transparent 34%),
  radial-gradient(circle at 18% 18%, rgba(238,93,116,.11), transparent 28%),
  linear-gradient(145deg, #071019 0%, #08151c 48%, #0d1c21 100%); }
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: 55px 55px; mask-image: linear-gradient(to bottom, black, transparent 92%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .18; }
.hero-glow-one { width: 420px; height: 420px; right: 7%; bottom: 8%; background: var(--jade); }
.hero-glow-two { width: 260px; height: 260px; left: -4%; top: 20%; background: var(--coral); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr); align-items: center; gap: 80px; padding-top: 70px; }
.eyebrow, .kicker { margin: 0 0 22px; color: var(--gold); text-transform: uppercase; letter-spacing: .2em; font-size: 11px; font-weight: 800; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 34px; height: 1px; background: var(--gold); }
.hero h1 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(54px, 6vw, 88px); font-weight: 400; line-height: .98; letter-spacing: -.04em; }
.hero h1 em { color: var(--coral-hot); font-weight: inherit; }
.hero-lede { max-width: 620px; margin: 28px 0 0; color: rgba(245,239,223,.72); font-size: 18px; }
.hero-actions, .game-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 850; letter-spacing: .02em; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--coral), #f69b6f); color: #18100d; box-shadow: 0 14px 32px rgba(239,120,105,.18); }
.button-primary:hover { background: var(--paper); }
.button-ghost { border-color: rgba(245,239,223,.24); background: rgba(255,255,255,.025); }
.button-ghost:hover { border-color: var(--paper); }
.hero-proof { display: flex; margin-top: 55px; padding-top: 24px; border-top: 1px solid var(--border); }
.hero-proof > div { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 10px; padding-right: 24px; margin-right: 24px; border-right: 1px solid var(--border); }
.hero-proof > div:last-child { border: 0; margin: 0; padding: 0; }
.hero-proof strong { color: var(--cyan); font-family: var(--serif); font-size: 25px; font-weight: 400; }
.hero-proof span { max-width: 115px; color: var(--muted); font-size: 10px; line-height: 1.3; text-transform: uppercase; letter-spacing: .08em; }
.hero-visual { position: relative; perspective: 1000px; }
.hero-art-frame { position: relative; aspect-ratio: 4/5; max-height: 660px; margin-left: auto; overflow: hidden; border: 1px solid rgba(222,184,97,.28); border-radius: 220px 220px 26px 26px; box-shadow: var(--shadow); background: #0e2021; transform: rotateY(-3deg); transition: transform .15s linear; }
.hero-art-frame::before { content: ''; position: absolute; inset: 13px; z-index: 3; border: 1px solid rgba(245,239,223,.16); border-radius: inherit; pointer-events: none; }
.hero-art-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 24% 50%; image-rendering: auto; transform: scale(1.12); }
.hero-art-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,16,25,.95), transparent 52%), linear-gradient(90deg, transparent 55%, rgba(7,16,25,.18)); }
.release-tag { position: absolute; left: 34px; bottom: 35px; display: flex; flex-direction: column; text-transform: uppercase; }
.release-tag span { color: var(--gold); font-size: 10px; letter-spacing: .18em; }
.release-tag strong { margin-top: 6px; font-family: var(--serif); font-size: 44px; font-weight: 400; letter-spacing: .02em; }
.signal-chip { position: absolute; top: 40px; right: 30px; display: flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid rgba(245,239,223,.2); border-radius: 999px; background: rgba(7,16,25,.58); backdrop-filter: blur(10px); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.signal-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--jade); box-shadow: 0 0 0 5px rgba(59,178,156,.12), 0 0 18px var(--jade); }
.art-orbit { position: absolute; z-index: -1; border: 1px solid rgba(99,232,255,.13); border-radius: 50%; }
.orbit-one { width: 125%; height: 77%; left: -14%; top: 12%; transform: rotate(-20deg); }
.orbit-two { width: 90%; height: 110%; left: 4%; top: -6%; border-color: rgba(239,120,105,.14); transform: rotate(18deg); }
.floating-note { position: absolute; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; background: rgba(7,16,25,.72); backdrop-filter: blur(8px); box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.floating-note-a { width: 62px; height: 62px; left: -30px; top: 27%; color: var(--gold); font-size: 24px; animation: float 5s ease-in-out infinite; }
.floating-note-b { width: 44px; height: 44px; right: -13px; bottom: 22%; color: var(--cyan); animation: float 4s 1s ease-in-out infinite; }
.scroll-cue { position: absolute; z-index: 3; bottom: 25px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .22em; }
.scroll-cue i { width: 1px; height: 35px; background: linear-gradient(var(--gold), transparent); }
.petal-field i { position: absolute; top: -30px; left: var(--x); width: 8px; height: 13px; border-radius: 80% 0 80% 0; background: var(--coral); opacity: .3; transform: scale(var(--s)) rotate(30deg); animation: petals 14s var(--d) linear infinite; }

.signal-bar { overflow: hidden; border-block: 1px solid var(--border); background: #09131c; }
.signal-track { width: max-content; display: flex; align-items: center; gap: 30px; padding: 17px 0; animation: marquee 34s linear infinite; text-transform: uppercase; letter-spacing: .18em; font-size: 10px; color: rgba(245,239,223,.62); }
.signal-track i { color: var(--coral); font-style: normal; }

.section-heading { margin-bottom: 58px; }
.section-heading h2, .format-copy h2, .studio-copy h2, .newsletter h2 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(44px, 5vw, 72px); line-height: 1.02; letter-spacing: -.035em; }
.section-heading > p:last-child { margin: 12px 0 0; color: var(--coral); text-transform: uppercase; letter-spacing: .2em; font-size: 11px; }
.section-heading.horizontal { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.section-heading.horizontal > p { max-width: 500px; margin: 0; color: var(--muted); text-transform: none; letter-spacing: 0; font-size: 16px; }
.featured { background: var(--paper); color: var(--ink); position: relative; }
.featured::before { content: ''; position: absolute; inset: 0; opacity: .16; background-image: radial-gradient(#87795e .8px, transparent .8px); background-size: 17px 17px; }
.featured .shell { position: relative; }
.featured .kicker { color: var(--jade-dark); }
.featured-grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(350px, .82fr); gap: 72px; align-items: center; }
.game-showcase { min-width: 0; }
.showcase-screen { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #071019; border-radius: var(--radius); box-shadow: 0 35px 80px rgba(33,28,20,.22); }
.showcase-screen::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(222,184,97,.36); border-radius: inherit; pointer-events: none; }
.showcase-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.03); transition: opacity .6s ease, transform 1.2s ease; }
.showcase-slide.is-active { opacity: 1; transform: scale(1); }
.screen-vignette { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,16,25,.72), transparent 55%); }
.play-button { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 74px; height: 74px; border-radius: 50%; border: 1px solid rgba(245,239,223,.55); background: rgba(7,16,25,.55); backdrop-filter: blur(10px); cursor: pointer; transition: .25s; }
.play-button:hover { transform: translate(-50%,-50%) scale(1.08); background: var(--coral); color: var(--ink); }
.screen-caption { position: absolute; left: 24px; bottom: 18px; margin: 0; color: rgba(245,239,223,.78); font-size: 11px; }
.showcase-thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 14px; }
.showcase-thumbs button { padding: 0; border: 2px solid transparent; border-radius: 13px; overflow: hidden; opacity: .55; cursor: pointer; background: #08131a; transition: .25s; }
.showcase-thumbs button.is-active { border-color: var(--coral); opacity: 1; }
.showcase-thumbs img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.game-pitch { margin: 0 0 34px; font-family: var(--serif); font-size: 28px; line-height: 1.25; }
.feature-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(7,16,25,.12); }
.feature-list li { display: grid; grid-template-columns: 38px 1fr; gap: 16px; padding: 19px 0; border-bottom: 1px solid rgba(7,16,25,.12); }
.feature-list li > span { color: var(--coral); font-size: 10px; font-weight: 900; letter-spacing: .12em; padding-top: 3px; }
.feature-list strong, .feature-list small { display: block; }
.feature-list strong { font-size: 14px; }
.feature-list small { margin-top: 3px; color: #607073; font-size: 12px; }
.text-link { padding: 0; border: 0; background: none; font-weight: 850; color: var(--jade-dark); cursor: pointer; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.availability { display: flex; align-items: center; gap: 8px; margin: 27px 0 0; color: #68777a; font-size: 11px; }
.availability span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.worlds { background: #071019; }
.world-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.world-card { min-height: 610px; position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--ink-soft); box-shadow: 0 26px 60px rgba(0,0,0,.18); }
.world-art { height: 68%; position: relative; overflow: hidden; }
.garden-art img { width: 100%; height: 100%; object-fit: cover; object-position: center 43%; filter: saturate(.8) brightness(.72); transform: scale(1.08); transition: transform .8s ease; }
.world-card:hover .garden-art img { transform: scale(1.14); }
.garden-art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, #0d1919 1%, transparent 65%); }
.garden-moon { position: absolute; width: 110px; height: 110px; top: 14%; right: 17%; border-radius: 50%; background: #f9efc9; box-shadow: 0 0 30px rgba(249,239,201,.35), 0 0 80px rgba(99,232,255,.2); }
.garden-symbol { position: absolute; top: 20%; left: 18%; width: 76px; height: 76px; display: grid; place-items: center; border: 1px solid rgba(245,239,223,.32); border-radius: 50%; color: var(--gold); font-size: 25px; backdrop-filter: blur(8px); }
.neon-art { background: radial-gradient(circle at 70% 28%, rgba(239,96,222,.3), transparent 28%), linear-gradient(#09091b 0 38%, #251257 68%, #061526 100%); }
.neon-art::before { content:''; position:absolute; inset:0; background-image: linear-gradient(rgba(99,232,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(239,96,222,.1) 1px, transparent 1px); background-size: 42px 42px; transform: perspective(300px) rotateX(58deg) scale(1.6) translateY(44%); transform-origin: center bottom; }
.neon-sun { position: absolute; top: 14%; right: 14%; width: 145px; height: 145px; border-radius: 50%; background: linear-gradient(#ffdc78,#ef60de); box-shadow: 0 0 50px rgba(239,96,222,.35); }
.neon-sun::after { content:''; position:absolute; inset:12px 0; background: repeating-linear-gradient(to bottom, transparent 0 8px, rgba(9,9,27,.9) 9px 12px); }
.neon-city { position: absolute; left: 0; right: 0; bottom: 30%; display: flex; align-items: end; gap: 10px; padding-inline: 8%; }
.neon-city i { flex: 1; min-width: 22px; height: var(--h,90px); border: 1px solid rgba(99,232,255,.45); border-bottom: 0; background: linear-gradient(90deg, transparent 48%, rgba(99,232,255,.3) 50%, transparent 52%), repeating-linear-gradient(to bottom, rgba(239,96,222,.35) 0 3px, transparent 3px 13px); box-shadow: 0 0 15px rgba(99,232,255,.15); }
.neon-city i:nth-child(1){--h:72px}.neon-city i:nth-child(2){--h:132px}.neon-city i:nth-child(3){--h:96px}.neon-city i:nth-child(4){--h:158px}.neon-city i:nth-child(5){--h:112px}.neon-city i:nth-child(6){--h:82px}
.neon-road { position: absolute; left: 50%; bottom: -18%; width: 38%; height: 55%; transform: translateX(-50%) perspective(220px) rotateX(54deg); background: linear-gradient(90deg, transparent 48%, var(--cyan) 49% 51%, transparent 52%), linear-gradient(120deg, transparent 45%, var(--magenta) 46% 47%, transparent 48%), linear-gradient(-120deg, transparent 45%, var(--cyan) 46% 47%, transparent 48%); filter: drop-shadow(0 0 8px var(--cyan)); }
.neon-signal { position: absolute; left: 11%; top: 17%; font-family: var(--serif); font-size: 92px; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(99,232,255,.45); text-shadow: 0 0 25px rgba(99,232,255,.28); }
.world-copy { position: absolute; inset: auto 0 0; z-index: 4; padding: 34px; background: linear-gradient(to top, rgba(7,16,25,.99) 50%, transparent); }
.world-copy p { margin: 0; color: var(--gold); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .18em; }
.world-copy h3 { margin: 8px 0 5px; font-family: var(--serif); font-size: 36px; font-weight: 400; }
.world-copy > span { display: block; color: var(--muted); font-size: 12px; }
.world-copy strong { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 12px; }
.world-copy b { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.06); }

.story-formats { position: relative; background: #0c1720; border-block: 1px solid var(--border); }
.format-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: center; }
.format-copy h2 { margin-bottom: 28px; }
.format-copy > p:not(.kicker) { max-width: 470px; color: var(--muted); }
.format-copy .text-link { display: inline-block; margin-top: 18px; color: var(--cyan); }
.format-stack { display: grid; gap: 16px; }
.format-card { min-height: 165px; display: grid; grid-template-columns: 165px 1fr; align-items: center; gap: 28px; padding: 20px; border: 1px solid var(--border); border-radius: 22px; background: rgba(255,255,255,.025); transition: transform .25s, border-color .25s; }
.format-card:hover { transform: translateX(-8px); border-color: rgba(99,232,255,.3); }
.format-card small { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: 9px; }
.format-card h3 { margin: 7px 0 4px; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.format-card p { margin: 0; color: var(--muted); font-size: 12px; }
.vinyl { width: 125px; height: 125px; border-radius: 50%; background: repeating-radial-gradient(circle, #18242c 0 5px, #0b1015 6px 8px); display: grid; place-items: center; box-shadow: 0 14px 34px rgba(0,0,0,.4); }
.vinyl span { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--coral),var(--gold)); border: 5px solid #111; }
.comic-cover { width: 112px; height: 135px; margin-left: 8px; padding: 15px 10px; position: relative; border: 2px solid var(--cyan); background: linear-gradient(145deg,#211247,#0c213c); box-shadow: 9px 9px 0 rgba(239,96,222,.25); color: var(--cyan); font-family: var(--serif); line-height: .9; font-size: 23px; }
.comic-cover::after { content:''; position:absolute; left:14px; right:14px; bottom:18px; height:30px; background: linear-gradient(135deg,transparent 0 30%, var(--magenta) 31% 40%, transparent 41% 50%, var(--cyan) 51% 60%, transparent 61%); }
.comic-cover i { position:absolute; right:7px; top:7px; font-family:var(--sans); font-size:9px; }
.event-ticket { width: 135px; height: 92px; display:flex; align-items:center; justify-content:space-around; color:var(--ink); border-radius:10px; background:linear-gradient(135deg,var(--gold),#f1d491); transform:rotate(-4deg); box-shadow:0 14px 30px rgba(0,0,0,.25); }
.event-ticket::before,.event-ticket::after{content:'';position:absolute;width:18px;height:18px;border-radius:50%;background:#0c1720;top:37px}.event-ticket::before{left:-9px}.event-ticket::after{right:-9px}
.event-ticket span { font-weight: 950; letter-spacing: .12em; }
.event-ticket b { font-size: 27px; }

.shop-preview { background: var(--paper); color: var(--ink); }
.shop-preview .kicker { color: var(--jade-dark); }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.product-card { overflow: hidden; border: 1px solid rgba(7,16,25,.12); border-radius: 22px; background: #fffaf0; transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 28px 55px rgba(40,31,18,.13); }
.product-image { height: 300px; overflow: hidden; position: relative; background: #162125; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-game img { object-position: center 30%; }
.product-bundle img { object-position: center; }
.product-soundtrack { display: grid; place-items: center; background: radial-gradient(circle at 50% 45%, rgba(99,232,255,.3), transparent 30%), linear-gradient(145deg,#0a1320,#1b1440); }
.album-art { width: 190px; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(222,184,97,.6); background: radial-gradient(circle, transparent 0 22%, rgba(59,178,156,.4) 23% 25%, transparent 26%), conic-gradient(from 20deg, #ef7869, #deb861, #3bb29c, #3557a3, #ef7869); box-shadow: 0 20px 40px rgba(0,0,0,.3); color: var(--paper); text-shadow: 0 2px 12px rgba(0,0,0,.45); }
.album-art span { font-family: var(--serif); font-size: 28px; }
.album-art i { font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.product-copy { padding: 25px; }
.product-copy small { color: var(--jade-dark); font-weight: 900; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; }
.product-copy h3 { margin: 8px 0 6px; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.product-copy p { min-height: 44px; margin: 0 0 18px; color: #657175; font-size: 12px; }
.product-copy span { color: var(--coral); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }

.studio-story { background: #071019; }
.studio-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.studio-portrait { min-height: 520px; position: relative; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--border); border-radius: 240px 240px 28px 28px; background: radial-gradient(circle, rgba(99,232,255,.12), transparent 48%), linear-gradient(145deg,#0d1c27,#121328); }
.studio-portrait::after { content:''; position:absolute; inset:15px; border:1px solid rgba(222,184,97,.25); border-radius:inherit; }
.creator-monogram { width: 175px; height: 175px; display:grid; place-items:center; border-radius:50%; border:1px solid rgba(99,232,255,.4); color:var(--cyan); font-family:var(--serif); font-size:70px; box-shadow:0 0 80px rgba(99,232,255,.1); }
.studio-portrait p { position:absolute; bottom:32px; margin:0; color:var(--muted); font-size:10px; text-transform:uppercase; letter-spacing:.15em; }
.studio-signal-lines { position:absolute; inset:-10%; background:repeating-radial-gradient(ellipse at center, transparent 0 24px, rgba(99,232,255,.05) 25px 26px); }
.studio-copy > p:not(.kicker) { max-width: 630px; color: var(--muted); font-size: 17px; }
.studio-copy blockquote { margin: 34px 0; padding-left: 25px; border-left: 2px solid var(--coral); font-family: var(--serif); font-size: 24px; color: var(--paper-2); }
.studio-copy .text-link { color: var(--cyan); }

.newsletter { position: relative; overflow: hidden; background: linear-gradient(135deg,#143b3a,#17283c 55%,#2a1733); }
.newsletter::before { content:''; position:absolute; inset:0; opacity:.13; background-image:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size:55px 55px; }
.newsletter-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .9fr; gap: 100px; align-items: center; }
.newsletter h2 { font-size: clamp(48px,5.5vw,78px); }
.newsletter-inner > div > p:last-child { max-width: 570px; color: rgba(245,239,223,.72); }
.signup-form label { display:block; margin-bottom:9px; font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.14em; }
.input-row { display:flex; gap:10px; }
.signup-form input { min-width:0; flex:1; height:56px; padding:0 18px; border:1px solid rgba(245,239,223,.28); border-radius:999px; outline:0; background:rgba(7,16,25,.35); color:var(--paper); }
.signup-form input:focus { border-color:var(--cyan); box-shadow:0 0 0 4px rgba(99,232,255,.08); }
.signup-form > p { margin:12px 0 0; color:rgba(245,239,223,.55); font-size:10px; }
.form-message { min-height:22px; margin-top:10px; color:var(--gold); font-size:12px; font-weight:800; }
.newsletter-orb { position:absolute; border-radius:50%; filter:blur(80px); opacity:.22; }
.orb-a { width:360px;height:360px;left:-100px;bottom:-130px;background:var(--cyan); }
.orb-b { width:300px;height:300px;right:-50px;top:-80px;background:var(--magenta); }

.site-footer { padding: 60px 0 35px; background:#050b11; border-top:1px solid var(--border); }
.footer-grid { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:35px; }
.footer-brand .brand-mark { width:38px;height:38px; }
.footer-grid > p { color:var(--muted); font-size:12px; }
.footer-links { display:flex; gap:20px; font-size:11px; font-weight:800; }
.footer-links a:hover { color:var(--cyan); }
.footer-bottom { grid-column:1/-1; display:flex; justify-content:space-between; padding-top:25px; margin-top:10px; border-top:1px solid var(--border); color:#627178; font-size:10px; }

.demo-modal { width:min(560px,calc(100% - 32px)); padding:42px; border:1px solid rgba(222,184,97,.4); border-radius:24px; background:#0d1822; color:var(--paper); box-shadow:var(--shadow); }
.demo-modal::backdrop { background:rgba(1,5,8,.75); backdrop-filter:blur(6px); }
.demo-modal h2 { margin:0 0 16px; font-family:var(--serif); font-size:40px; font-weight:400; }
.demo-modal p:not(.kicker) { color:var(--muted); }
.modal-close { position:absolute;right:16px;top:12px;border:0;background:none;font-size:30px;cursor:pointer; }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity:1; transform:none; }
@keyframes float { 0%,100%{transform:translateY(0) rotate(-4deg)}50%{transform:translateY(-14px) rotate(5deg)} }
@keyframes petals { from{transform:translateY(-40px) translateX(0) scale(var(--s)) rotate(30deg)}to{transform:translateY(105vh) translateX(100px) scale(var(--s)) rotate(430deg)} }
@keyframes marquee { to{transform:translateX(-50%)} }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
  .reveal { opacity:1; transform:none; }
}

@media (max-width: 1040px) {
  .site-nav { gap:18px; }
  .hero { height:auto; min-height:900px; padding:140px 0 90px; }
  .hero-inner { grid-template-columns:1fr .82fr; gap:40px; padding-top:0; }
  .hero h1 { font-size:clamp(52px,7vw,72px); }
  .hero-proof { display:none; }
  .featured-grid { gap:45px; }
  .format-grid { gap:55px; }
  .studio-grid { gap:55px; }
}

@media (max-width: 860px) {
  .shell { width:min(100% - 32px, 680px); }
  .section { padding:88px 0; }
  .prototype-ribbon { display:none; }
  .site-header { height:72px; background:rgba(7,16,25,.76); backdrop-filter:blur(14px); border-bottom:1px solid var(--border); }
  .menu-toggle { display:block; z-index:3; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(1) { transform:translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { opacity:0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform:translateY(-7px) rotate(-45deg); }
  .site-nav { position:fixed; inset:72px 0 auto; display:grid; gap:0; padding:14px 16px 24px; background:rgba(7,16,25,.97); border-bottom:1px solid var(--border); transform:translateY(-130%); transition:transform .3s ease; }
  .site-nav.is-open { transform:none; }
  .site-nav a { padding:15px 10px; border-bottom:1px solid var(--border); }
  .site-nav .nav-cta { margin-top:12px; text-align:center; border:1px solid rgba(222,184,97,.45); }
  .hero { min-height:auto; padding:120px 0 70px; }
  .hero-inner { grid-template-columns:1fr; gap:55px; }
  .hero-copy { text-align:center; }
  .eyebrow { justify-content:center; }
  .hero h1 { margin-inline:auto; }
  .hero-lede { margin-inline:auto; }
  .hero-actions { justify-content:center; }
  .hero-visual { width:min(520px,92%); margin-inline:auto; }
  .hero-art-frame { max-height:none; aspect-ratio:4/5; }
  .scroll-cue { display:none; }
  .section-heading.horizontal { display:block; }
  .section-heading.horizontal > p { margin-top:18px; }
  .featured-grid, .format-grid, .studio-grid, .newsletter-inner { grid-template-columns:1fr; }
  .featured-grid, .format-grid, .studio-grid, .newsletter-inner { gap:48px; }
  .game-details { max-width:610px; }
  .world-grid { grid-template-columns:1fr; }
  .world-card { min-height:560px; }
  .format-copy { max-width:620px; }
  .product-grid { grid-template-columns:1fr 1fr; }
  .product-card:last-child { grid-column:1/-1; }
  .studio-portrait { width:min(480px,100%); min-height:520px; margin-inline:auto; }
  .newsletter .input-row { flex-direction:column; }
  .footer-grid { grid-template-columns:1fr; text-align:center; justify-items:center; }
  .footer-bottom { width:100%; }
}

@media (max-width: 560px) {
  .shell { width:calc(100% - 28px); }
  .section { padding:72px 0; }
  .brand-copy strong { font-size:14px; }
  .brand-copy small { font-size:8px; }
  .brand-mark { width:36px;height:36px; }
  .hero { padding-top:105px; }
  .hero h1 { font-size:48px; }
  .hero-lede { font-size:15px; }
  .hero-actions .button { width:100%; }
  .hero-visual { width:100%; }
  .release-tag strong { font-size:34px; }
  .signal-chip { top:28px; right:22px; max-width:160px; }
  .floating-note-a { left:-5px; }
  .floating-note-b { right:-4px; }
  .section-heading h2, .format-copy h2, .studio-copy h2, .newsletter h2 { font-size:42px; }
  .featured-grid { gap:38px; }
  .showcase-screen { border-radius:18px; }
  .play-button { width:58px;height:58px; }
  .screen-caption { display:none; }
  .game-pitch { font-size:23px; }
  .game-actions .button { width:100%; }
  .world-card { min-height:510px; }
  .world-art { height:63%; }
  .world-copy { padding:26px; }
  .world-copy h3 { font-size:29px; }
  .format-card { grid-template-columns:105px 1fr; gap:16px; padding:16px; }
  .vinyl { width:92px;height:92px; }
  .vinyl span { width:34px;height:34px; }
  .comic-cover { width:80px;height:105px;margin-left:5px;font-size:17px; }
  .event-ticket { width:96px;height:70px; }
  .product-grid { grid-template-columns:1fr; }
  .product-card:last-child { grid-column:auto; }
  .product-image { height:280px; }
  .studio-portrait { min-height:410px; }
  .creator-monogram { width:135px;height:135px;font-size:52px; }
  .studio-copy blockquote { font-size:20px; }
  .footer-links { flex-wrap:wrap; justify-content:center; }
  .footer-bottom { flex-direction:column; gap:8px; }
  .demo-modal { padding:34px 24px 28px; }
}

/* Public coming-soon deployment additions */
.trailer-modal {
  width: min(1040px, calc(100% - 24px));
  max-height: calc(100vh - 24px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(222,184,97,.45);
  border-radius: 22px;
  background: #05090e;
  color: var(--paper);
  box-shadow: var(--shadow);
}
.trailer-modal::backdrop { background: rgba(1,5,8,.86); backdrop-filter: blur(8px); }
.trailer-modal video { display: block; width: 100%; height: auto; max-height: 75vh; background: #000; }
.trailer-close { z-index: 2; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.8); }
.trailer-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: 18px 24px 20px; }
.trailer-meta .kicker { margin: 0; }
.trailer-meta h2 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(22px,4vw,34px); }
.signup-coming-soon input:disabled { opacity: .78; cursor: not-allowed; }
.signup-coming-soon button:disabled { opacity: .7; cursor: not-allowed; }
@media (max-width: 640px) {
  .trailer-modal { border-radius: 14px; }
  .trailer-meta { display: block; padding: 14px 16px 16px; }
  .trailer-meta h2 { margin-top: 6px; }
}
