/* TwinGlow — shared site styles. Neon-on-void, matching the app palette
   (cyan Glow #00E5FF, magenta Echo #FF00C8, void #0A0118). */
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

:root {
  --cyan: #00e5ff;
  --magenta: #ff00c8;
  --goal: #bfefff;
  --void: #0a0118;
  --void-2: #12042a;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-brd: rgba(255, 255, 255, 0.12);
  --text: #eaf2ff;
  --muted: #9aa6c8;
  --mono: 'Share Tech Mono', ui-monospace, monospace;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display: 'Montserrat', var(--sans);
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--void);
  color: var(--text);
  font-family: var(--display);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient glow bleed behind everything. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60vw 60vw at 12% -10%, rgba(0, 229, 255, 0.14), transparent 60%),
    radial-gradient(55vw 55vw at 100% 10%, rgba(255, 0, 200, 0.14), transparent 60%),
    radial-gradient(80vw 50vw at 50% 120%, rgba(120, 80, 255, 0.10), transparent 60%);
}

/* living light background (canvas) sits above the static glow, below content */
.s-bg { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; display: block; }
body > nav, body > header, body > main, body > section, body > footer, body > .wrap { position: relative; z-index: 1; }
/* subtle film grain over everything */
body::after { content: ''; position: fixed; inset: 0; z-index: 3; pointer-events: none;
  opacity: 0.05; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { font-family: var(--display); letter-spacing: 0.02em; }
.mono { font-family: var(--mono); letter-spacing: 0.06em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(100deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(10, 1, 24, 0.6);
  border-bottom: 1px solid var(--panel-brd);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 18px; letter-spacing: 0.18em; color: var(--text); }
.brand:hover { text-decoration: none; }
.nav-links { display: flex; gap: 22px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--cyan); text-decoration: none; }

/* twin-glow logo mark */
.mark { width: 46px; height: 20px; flex: none; }
.mark .bar { stroke: url(#tg-grad); stroke-width: 3; }
.mark .cy { fill: var(--cyan); filter: drop-shadow(0 0 5px var(--cyan)); }
.mark .mg { fill: var(--magenta); filter: drop-shadow(0 0 5px var(--magenta)); }
@media (prefers-reduced-motion: no-preference) {
  .mark .cy { animation: pulse 3.2s ease-in-out infinite; }
  .mark .mg { animation: pulse 3.2s ease-in-out infinite 1.6s; }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--panel-brd);
}
/* Transparent over the living background — a soft floor glow + a bottom fade so the
   section reads and hands off cleanly to the next. The orb motif sits on top. */
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(120vw 80vh at 50% 122%, rgba(120, 80, 255, 0.10), transparent 60%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(13, 10, 32, 0.85) 100%);
}

/* twin-glow light centerpiece — the logo motif, breathing */
.orbs { position: relative; width: min(460px, 84vw); height: 150px; margin: 0 auto 34px; }
.orb { position: absolute; top: 50%; width: 116px; height: 116px; border-radius: 50%; transform: translate(-50%, -50%); }
.orb.cy { left: 58px; background: radial-gradient(circle at 42% 40%, #fff, var(--cyan) 34%, rgba(0, 229, 255, 0) 72%); box-shadow: 0 0 70px 14px rgba(0, 229, 255, 0.55); }
.orb.mg { left: calc(100% - 58px); background: radial-gradient(circle at 42% 40%, #fff, var(--magenta) 34%, rgba(255, 0, 200, 0) 72%); box-shadow: 0 0 70px 14px rgba(255, 0, 200, 0.55); }
.orb-beam { position: absolute; top: 50%; left: 58px; right: 58px; height: 3px; transform: translateY(-50%); border-radius: 3px; background: linear-gradient(90deg, var(--cyan), #9a6bff, var(--magenta)); box-shadow: 0 0 16px rgba(150, 100, 255, 0.7); }
@media (prefers-reduced-motion: no-preference) {
  .orb.cy { animation: float 6s ease-in-out infinite, glow-cy 3.6s ease-in-out infinite; }
  .orb.mg { animation: float 6s ease-in-out infinite reverse, glow-mg 3.6s ease-in-out infinite; }
}
@keyframes float { 0%, 100% { top: 50%; } 50% { top: calc(50% - 10px); } }
@keyframes glow-cy { 0%, 100% { box-shadow: 0 0 70px 14px rgba(0, 229, 255, 0.5); } 50% { box-shadow: 0 0 94px 20px rgba(0, 229, 255, 0.78); } }
@keyframes glow-mg { 0%, 100% { box-shadow: 0 0 70px 14px rgba(255, 0, 200, 0.5); } 50% { box-shadow: 0 0 94px 20px rgba(255, 0, 200, 0.78); } }
.hero .wrap { position: relative; z-index: 2; padding-top: 72px; padding-bottom: 72px; }
.hero h1 {
  font-size: clamp(44px, 9vw, 104px);
  margin: 0 0 6px;
  letter-spacing: 0.14em;
  text-shadow: 0 0 40px rgba(0, 229, 255, 0.35);
}
.tagline { font-family: var(--mono); font-size: clamp(14px, 2.4vw, 22px); color: var(--goal); letter-spacing: 0.24em; margin: 0 0 22px; }
.lede { max-width: 620px; margin: 0 auto 34px; font-size: 17px; color: #cdd7f0; }

.cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.daily-invite { max-width: 680px; margin: 30px auto 36px; padding: 26px 24px;
  background: rgba(13,10,32,.82); border: 1px solid rgba(0,229,255,.34);
  border-radius: 16px; box-shadow: 0 20px 70px rgba(0,229,255,.10); }
.daily-invite[hidden] { display: none; }
.daily-invite h2 { margin: 4px 0 8px; font-size: clamp(22px,4vw,34px); }
.daily-invite > p:not(.eyebrow) { margin: 0 0 20px; color: var(--muted); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 14px; letter-spacing: 0.12em;
  padding: 13px 26px; border-radius: 10px; cursor: pointer;
  border: 1px solid transparent; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary { background: var(--cyan); color: #041018; box-shadow: 0 0 24px rgba(0, 229, 255, 0.45); }
.btn-primary:hover { box-shadow: 0 6px 34px rgba(0, 229, 255, 0.6); }
.btn-ghost { border-color: rgba(255, 0, 200, 0.6); color: #ffd6f4; }
.btn-ghost:hover { box-shadow: 0 6px 28px rgba(255, 0, 200, 0.4); }
.btn[aria-disabled='true'] { opacity: 0.55; cursor: default; pointer-events: none; }

/* ---------- sections ---------- */
section { padding: 84px 0; }
.eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.32em; color: var(--magenta); text-transform: uppercase; margin: 0 0 10px; }
.section-title { font-size: clamp(26px, 4vw, 40px); margin: 0 0 14px; }
.section-sub { color: var(--muted); max-width: 640px; margin: 0 0 44px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card {
  background: var(--panel); border: 1px solid var(--panel-brd); border-radius: 14px;
  padding: 26px; transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(0, 229, 255, 0.5); box-shadow: 0 14px 40px rgba(0, 229, 255, 0.12); }
.card .ico { width: 40px; height: 40px; margin-bottom: 16px; }
.card h3 { font-size: 17px; margin: 0 0 8px; color: var(--text); }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* stat row */
.stats { display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; text-align: center; }
.stat .n { font-family: var(--mono); font-size: clamp(34px, 6vw, 52px); }
.stat .l { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; }

/* chapter color strip */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; padding: 8px 14px; border-radius: 999px; border: 1px solid currentColor; color: #fff; opacity: 0.9; }

/* TwinGlow hero key-art (replaces the orb motif) */
.hero-art { display: block; width: clamp(230px, 44vw, 328px); height: auto; margin: 0 auto 30px;
  border-radius: 22px; border: 1px solid rgba(150, 180, 255, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 229, 255, 0.12), 0 0 90px rgba(255, 0, 200, 0.08); }

/* app-experience screenshots (phone-framed, scroll-snap on mobile) */
.shots { padding: 92px 0; }
.shot-row { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 18px; -webkit-overflow-scrolling: touch; }
.shot-row::-webkit-scrollbar { height: 6px; }
.shot-row::-webkit-scrollbar-thumb { background: rgba(150, 180, 255, 0.2); border-radius: 3px; }
.shot { flex: 0 0 auto; width: clamp(208px, 64vw, 246px); margin: 0; scroll-snap-align: center; }
.shot img { display: block; width: 100%; height: auto; border-radius: 22px;
  border: 1px solid rgba(150, 180, 255, 0.16);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 229, 255, 0.08); }
.shot figcaption { margin-top: 12px; text-align: center; font-family: var(--display); font-weight: 500;
  font-size: 13px; letter-spacing: 0.02em; color: var(--muted); }
@media (min-width: 980px) {
  .shot-row { justify-content: center; overflow-x: visible; flex-wrap: wrap; }
}

/* ---------- legal / prose (glass panel over the living background) ---------- */
.doc { max-width: 820px; margin: 104px auto 48px; padding: 46px clamp(22px, 4vw, 56px);
  background: rgba(12, 10, 30, 0.58); border: 1px solid rgba(150, 180, 255, 0.12);
  border-radius: 22px; backdrop-filter: blur(4px); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35); }
.doc h1 { font-size: clamp(30px, 5vw, 44px); margin: 0 0 6px; }
.doc .updated { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.1em; margin-bottom: 34px; }
.doc h2 { font-size: 20px; margin: 40px 0 12px; color: var(--goal); }
.doc h3 { font-size: 16px; margin: 24px 0 8px; color: var(--cyan); }
.doc p, .doc li { color: #d3dcf3; font-size: 15.5px; }
.doc ul { padding-left: 22px; }
.doc li { margin: 6px 0; }
.doc a { color: var(--magenta); }
.doc strong { color: #fff; }
.callout {
  background: var(--panel); border: 1px solid var(--panel-brd); border-left: 3px solid var(--cyan);
  border-radius: 10px; padding: 16px 20px; margin: 22px 0;
}
.callout.warn { border-left-color: var(--magenta); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--panel-brd); padding: 40px 0; margin-top: 40px; }
.footer .wrap { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.footer .links { display: flex; flex-wrap: wrap; gap: 20px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; }
.footer .links a { color: var(--muted); }
.footer .links a:hover { color: var(--cyan); text-decoration: none; }
.footer .copy { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }

/* hero byline (game page → studio) */
.byline { margin-top: 24px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--muted); }
.byline a { color: var(--goal); }

/* game cards on the studio landing */
.game-card { display: flex; flex-direction: column; text-decoration: none; }
.game-card:hover { text-decoration: none; }
.game-card h3 { display: flex; align-items: center; gap: 10px; }
.game-card .tag { font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; color: var(--void); background: var(--cyan); padding: 2px 7px; border-radius: 4px; }
.game-card .card-cta { margin-top: 16px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; color: var(--cyan); }
.game-card .card-cta.muted { color: var(--muted); }
.game-card.is-soon { opacity: 0.7; }
.game-card.is-soon:hover { transform: none; border-color: var(--panel-brd); box-shadow: none; }

/* mini twin-glow mark inside a game card */
.game-mark { position: relative; width: 108px; height: 40px; margin-bottom: 20px; }
.game-mark .orb { position: absolute; top: 50%; width: 32px; height: 32px; transform: translate(-50%, -50%); animation: none; }
.game-mark .orb.cy { left: 16px; box-shadow: 0 0 22px 4px rgba(0, 229, 255, 0.5); }
.game-mark .orb.mg { left: calc(100% - 16px); box-shadow: 0 0 22px 4px rgba(255, 0, 200, 0.5); }
.game-mark .orb-beam { top: 50%; left: 16px; right: 16px; height: 2px; }
.game-mark.dim { filter: grayscale(0.45) brightness(0.75); }

@media (max-width: 640px) {
  .nav-links { gap: 14px; font-size: 12px; }
  section { padding: 60px 0; }
}

/* ============================================================
   STUDIO LANDING (redesign v2) — Glows Games, key-art driven,
   Montserrat display font, <img>-based backgrounds
   ============================================================ */
.studio { background: #0d0a20; }
.studio .brand { font-family: var(--display); font-weight: 800; letter-spacing: 0.12em; font-size: 17px; }
.studio .nav-links a { font-family: var(--display); font-weight: 600; letter-spacing: 0.03em; font-size: 13px; }
/* Nav floats over the hero (absolute, not sticky) → no bar on scroll. */
.s-nav { position: absolute; top: 0; left: 0; right: 0; z-index: 30; background: transparent; backdrop-filter: none; border-bottom: none; }

/* ── hero ── */
.s-hero { position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.s-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center; z-index: 0; }
/* cyan+magenta glows layered over the art so a portrait crop (dark centre of the
   landscape image) still reads colourful, not empty. */
.s-scrim { position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(60% 46% at 18% 20%, rgba(0,229,255,0.24), transparent 62%),
    radial-gradient(60% 46% at 84% 18%, rgba(255,0,200,0.22), transparent 62%),
    radial-gradient(90% 80% at 50% 42%, transparent 30%, rgba(13,10,32,0.52) 100%),
    linear-gradient(180deg, rgba(13,10,32,0.28) 0%, transparent 26%, transparent 56%, #0d0a20 100%); }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.06); } }

.s-hero-inner { position: relative; z-index: 2; padding: 0 24px; }
.s-wordmark { margin: 0; font-family: var(--display); font-weight: 900;
  font-size: clamp(52px, 10vw, 130px); line-height: 0.88; letter-spacing: 0.004em;
  background-image:
    linear-gradient(115deg, transparent 43%, rgba(255,255,255,0.92) 50%, transparent 57%),
    linear-gradient(178deg, rgba(255,255,255,0) 44%, rgba(120,190,255,0.42) 100%),
    linear-gradient(150deg, #dfeffe 16%, #ffffff 42%, #ffe4f7 60%, #cfe6ff 86%);
  background-size: 260% 100%, 100% 100%, 100% 100%;
  background-position: -60% 0, 0 0, 0 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 1px rgba(12,22,60,0.28)) drop-shadow(0 0 46px rgba(110,175,255,0.5)) drop-shadow(0 0 96px rgba(255,0,200,0.26));
  animation: heroIn 1s ease both, textsheen 6.5s ease-in-out 1.8s infinite; }
/* sheen sweep across the wordmark text itself */
@keyframes textsheen {
  0% { background-position: -60% 0, 0 0, 0 0; }
  18%, 100% { background-position: 160% 0, 0 0, 0 0; } }
.s-tagline { margin: 18px 0 34px; font-family: var(--display); font-weight: 400;
  font-size: clamp(15px, 2.3vw, 23px); letter-spacing: 0.05em; color: #e7f1ff;
  text-shadow: 0 0 22px rgba(0,229,255,0.35); animation: heroIn 1s 0.12s ease both; }
.s-cta { display: inline-flex; align-items: center; font-family: var(--display); font-weight: 700;
  font-size: 14px; letter-spacing: 0.12em; color: #071018; padding: 17px 42px; border-radius: 999px;
  text-decoration: none; text-transform: uppercase;
  background: linear-gradient(95deg, #00e5ff 0%, #7b6bff 52%, #ff00c8 100%);
  box-shadow: 0 8px 30px rgba(0,229,255,0.3), 0 8px 30px rgba(255,0,200,0.26);
  animation: heroIn 1s 0.24s ease both, ctaGlow 3.6s ease-in-out infinite;
  transition: transform 0.16s ease, box-shadow 0.16s ease; }
.s-cta:hover { transform: translateY(-2px) scale(1.02); text-decoration: none;
  box-shadow: 0 12px 52px rgba(0,229,255,0.6), 0 12px 52px rgba(255,0,200,0.5); }
@keyframes ctaGlow { 0%,100% { box-shadow: 0 8px 26px rgba(0,229,255,0.28), 0 8px 26px rgba(255,0,200,0.22); }
  50% { box-shadow: 0 10px 42px rgba(0,229,255,0.5), 0 10px 42px rgba(255,0,200,0.42); } }
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

.scroll-hint { position: absolute; left: 50%; bottom: 26px; z-index: 2; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 30px; line-height: 1; text-decoration: none;
  animation: bob 2.1s ease-in-out infinite; }
.scroll-hint:hover { color: var(--cyan); text-decoration: none; }
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(9px); } }

/* ── showcase ── */
.showcase { padding: 104px 0; }
.section-head { text-align: center; margin: 0 0 50px; font-family: var(--display); font-weight: 700;
  font-size: clamp(24px, 4vw, 42px); letter-spacing: 0.32em; color: #fff; }
.games-grid { display: grid; grid-template-columns: 1.35fr 1fr; grid-auto-rows: 470px; gap: 22px; }
.game-tile { position: relative; display: block; overflow: hidden; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1); text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.tile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  transition: transform 0.6s ease; }
.tile-img.dim { filter: grayscale(0.55) brightness(0.4) blur(1px); transform: scale(1.03); }
.tile-scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,10,32,0.05) 20%, rgba(13,10,32,0.55) 58%, rgba(13,10,32,0.96) 100%); }
.game-tile:hover { transform: translateY(-5px); border-color: rgba(0,229,255,0.55); box-shadow: 0 26px 70px rgba(0,229,255,0.18); }
.game-tile:hover .tile-img:not(.dim) { transform: scale(1.06); }
.tile-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 30px 30px 32px; }
.tile-body h3 { margin: 0 0 10px; font-family: var(--display); font-weight: 800;
  font-size: clamp(24px, 3vw, 32px); letter-spacing: 0.01em; color: #fff; }
.game-tile.featured .tile-body h3 { font-size: clamp(30px, 4vw, 44px); }
.tile-body p { margin: 0; color: #ced8ef; font-family: var(--display); font-weight: 400;
  font-size: 14.5px; line-height: 1.55; max-width: 44ch; }
.tile-cta { display: inline-block; margin-top: 16px; font-family: var(--display); font-weight: 600;
  font-size: 13px; letter-spacing: 0.08em; color: var(--cyan); }
.game-tile.soon { border-color: rgba(255,255,255,0.06); }
.game-tile.soon .tile-body h3 { color: #b7c0da; }
.game-tile.soon .tile-body p { color: #8b93ad; }
.game-tile.soon:hover { transform: translateY(-3px); border-color: rgba(150,140,200,0.35); box-shadow: 0 20px 54px rgba(120,100,200,0.12); }
.badge { position: absolute; top: 20px; left: 20px; z-index: 3; font-family: var(--display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.13em; color: #fff; padding: 7px 13px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3); background: rgba(13,10,32,0.5); backdrop-filter: blur(6px); text-transform: uppercase; }
.badge.out { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 18px rgba(0,229,255,0.45); }
.badge.proto { border-color: rgba(180,170,210,0.45); color: #c6bbe4; }

/* ── studio band ── */
.studio-band { position: relative; padding: 150px 0; text-align: center; overflow: hidden; }
.band-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center; z-index: 0; }
.band-scrim { position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(58% 55% at 12% 50%, rgba(0,229,255,0.2), transparent 58%),
    radial-gradient(58% 55% at 88% 50%, rgba(255,0,200,0.18), transparent 58%),
    linear-gradient(180deg, #0d0a20 0%, rgba(13,10,32,0.35) 22%, rgba(13,10,32,0.35) 78%, #0d0a20 100%); }
.studio-band .wrap { position: relative; z-index: 2; }
.band-title { margin: 0 0 22px; font-family: var(--display); font-weight: 800;
  font-size: clamp(36px, 7vw, 82px); line-height: 0.98; letter-spacing: 0.004em;
  background: linear-gradient(100deg, #a7e9ff, #ffffff, #ffb6ee);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.band-copy { max-width: 640px; margin: 0 auto; color: #dbe6ff; font-family: var(--display); font-weight: 400;
  font-size: clamp(15px, 2vw, 19px); line-height: 1.7; }

/* ── mega footer (subtle glowing divider lines, per the design) ── */
.mega-footer { padding: 48px 0 46px; border-top: 1px solid rgba(120,180,255,0.14);
  box-shadow: inset 0 1px 0 rgba(0,229,255,0.06); }
.foot-grid { display: grid; grid-template-columns: 1.9fr repeat(4, 1fr); gap: 30px; align-items: start; }
.foot-brand p { margin: 14px 0 18px; color: var(--muted); font-family: var(--display); font-weight: 400; font-size: 13px; }
.foot-follow a.soc { display: flex; align-items: center; gap: 11px; margin: 11px 0;
  color: var(--muted); font-family: var(--display); font-weight: 400; font-size: 14px; text-decoration: none;
  transition: color 0.15s ease; }
.foot-follow a.soc:hover { color: var(--cyan); }
.foot-follow a.soc svg { width: 17px; height: 17px; display: block; fill: currentColor; flex: none; opacity: 0.85; }
.foot-follow a.soc:hover svg { opacity: 1; }
.foot-col h4 { margin: 0 0 16px; font-family: var(--display); font-weight: 700; font-size: 11px; letter-spacing: 0.15em; color: #fff; text-transform: uppercase; }
.foot-col a { display: block; margin: 10px 0; color: var(--muted); font-family: var(--display); font-weight: 400; font-size: 14px; text-decoration: none; }
.foot-col a:hover { color: var(--cyan); }
/* vertical divider lines between footer columns (desktop) */
@media (min-width: 901px) {
  .foot-col { border-left: 1px solid rgba(120,180,255,0.1); padding-left: 30px; }
}
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07);
  font-family: var(--display); font-weight: 400; font-size: 12px; letter-spacing: 0.03em; color: var(--muted); }
.foot-bottom .legal a { color: var(--muted); text-decoration: none; margin-left: 20px; }
.foot-bottom .legal a:hover { color: var(--cyan); }

/* ── scroll reveal ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .s-hero-img, .s-cta, .scroll-hint, .s-wordmark { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 900px) {
  .games-grid { grid-template-columns: 1fr; grid-auto-rows: 400px; }
  .foot-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .s-hero { min-height: 92svh; }
  .s-hero-img, .band-img { object-position: center; }
  .s-wordmark { font-size: clamp(52px, 16vw, 92px); line-height: 0.9; }
  .studio .brand { font-size: 13px; letter-spacing: 0.05em; }
  .studio .nav-links { gap: 13px; }
  .studio .nav-links a { font-size: 11px; letter-spacing: 0.01em; }
  .band-title { font-size: clamp(27px, 8.6vw, 42px); letter-spacing: 0; }
  .showcase { padding: 74px 0; }
  .games-grid { grid-auto-rows: 360px; }
  .studio-band { padding: 96px 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-bottom { justify-content: center; text-align: center; }
  .foot-bottom .legal a { margin: 0 10px; }
}
