:root {
  --navy-950: #020b18;
  --navy-900: #06162d;
  --navy-800: #0a2445;
  --navy-700: #113766;
  --gold-500: #e9ad31;
  --gold-400: #f6c85f;
  --gold-200: #ffe7a9;
  --ink: #10233c;
  --muted: #607086;
  --paper: #f7f9fc;
  --white: #ffffff;
  --line: #dfe6ef;
  --shadow: 0 24px 70px rgba(2, 17, 38, .12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .7rem 1rem;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--gold-400);
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.serif { font-family: "Cinzel", Georgia, serif; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: .9rem;
  color: #a66b06;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.section { padding: 5.5rem 0; }
.section-dark { color: #eff5ff; background: var(--navy-950); }
.section-soft { background: var(--paper); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.4rem; }
.section-head > div { max-width: 720px; }
.section h2, .page-hero h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
}
.section-head p { margin: .9rem 0 0; color: var(--muted); font-size: 1.05rem; }
.section-dark .section-head p { color: #aabbd0; }
.text-link { color: var(--navy-700); font-weight: 800; white-space: nowrap; }
.section-dark .text-link { color: var(--gold-400); }
.text-link::after { display: inline-block; margin-left: .4rem; content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(.25rem); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(2, 11, 24, .91);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .72rem; flex: none; }
.brand-icon { width: 45px; height: 45px; object-fit: contain; }
.brand-word { width: 134px; height: auto; }
.site-nav { display: flex; align-items: center; gap: .2rem; }
.site-nav > a:not(.btn) {
  padding: .65rem .8rem;
  border-radius: 999px;
  color: #c6d2e2;
  font-size: .89rem;
  font-weight: 700;
}
.site-nav > a:not(.btn):hover, .site-nav > a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,.08); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: white;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: block; width: 19px; height: 2px; margin: 4px auto; background: currentColor; content: ""; }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { color: #1a1203; background: linear-gradient(135deg, var(--gold-200), var(--gold-500)); box-shadow: 0 10px 30px rgba(233,173,49,.24); }
.btn-gold:hover { box-shadow: 0 14px 36px rgba(233,173,49,.34); }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.04); }
.btn-outline:hover { border-color: var(--gold-400); background: rgba(246,200,95,.08); }
.btn-dark { color: white; background: var(--navy-900); }
.btn-small { min-height: 42px; padding: .66rem 1rem; font-size: .88rem; }
.btn[aria-disabled="true"] { color: #7d8ba0; background: #e8edf4; box-shadow: none; cursor: not-allowed; transform: none; }
.product-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem; }
.store-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: .65rem;
  padding: .48rem .9rem;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 12px;
  color: white;
  background: #02060c;
  line-height: 1;
  transition: transform .2s ease, border-color .2s ease;
}
.store-button:hover { transform: translateY(-2px); border-color: var(--gold-400); }
.store-button[aria-disabled="true"] { opacity: .52; cursor: not-allowed; transform: none; }
.store-mark { width: 25px; height: 27px; flex: none; }
.store-copy { display: grid; gap: .14rem; text-align: left; }
.store-copy small { font-size: .62rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }
.store-copy strong { font-size: .93rem; font-weight: 800; }
.store-note { width: 100%; margin: .2rem 0 0; color: #7f91a7; font-size: .75rem; }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 83% 42%, rgba(232,170,46,.18), transparent 22%),
    radial-gradient(circle at 10% 90%, rgba(25,92,164,.3), transparent 33%),
    linear-gradient(135deg, #020a17 0%, #061b37 55%, #071429 100%);
}
.hero::before {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  content: "";
}
.hero-inner { position: relative; display: grid; min-height: 680px; grid-template-columns: 1.18fr .82fr; align-items: center; gap: 3rem; padding: 4.4rem 0 5.2rem; }
.hero-copy { max-width: 740px; }
.hero .eyebrow { color: var(--gold-400); }
.hero h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(3rem, 6.8vw, 6.15rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .98;
}
.hero h1 span { color: var(--gold-400); }
.hero-copy > p { max-width: 670px; margin: 1.45rem 0 0; color: #c2d0e1; font-size: clamp(1.05rem, 2vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-note { margin-top: 2.6rem; color: #91a6c0; font-size: .88rem; }
.hero-mark { position: relative; display: grid; place-items: center; min-height: 470px; }
.hero-mark::before, .hero-mark::after { position: absolute; border: 1px solid rgba(246,200,95,.18); border-radius: 50%; content: ""; }
.hero-mark::before { width: 430px; height: 430px; animation: orbit 20s linear infinite; }
.hero-mark::after { width: 330px; height: 330px; border-style: dashed; animation: orbit 28s linear infinite reverse; }
.hero-logo { position: relative; z-index: 2; width: min(370px, 86vw); filter: drop-shadow(0 25px 46px rgba(0,0,0,.35)); animation: breathe 5s ease-in-out infinite; }
.hero-game-strip { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; border-top: 1px solid rgba(255,255,255,.09); background: rgba(4,16,33,.75); backdrop-filter: blur(16px); }
.hero-game-strip .container { display: grid; grid-template-columns: 1.1fr repeat(3, 1fr); }
.strip-intro, .strip-game { min-height: 80px; padding: 1rem 1.2rem; border-right: 1px solid rgba(255,255,255,.08); }
.strip-intro { display: flex; align-items: center; gap: .8rem; padding-left: 0; color: white; font-weight: 800; }
.strip-intro b { color: var(--gold-400); font-family: "Cinzel", Georgia, serif; }
.strip-game { display: flex; align-items: center; gap: .75rem; color: #bdcada; font-size: .84rem; }
.strip-num { color: var(--gold-400); font-family: "Cinzel", Georgia, serif; font-size: 1.15rem; }
.hero-minimal { min-height: 650px; }
.hero-minimal .hero-inner { min-height: 570px; padding-block: 4.2rem; }

.games-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.3rem; }
.game-card {
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  background: #071a33;
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
  transition: transform .26s ease, border-color .26s ease;
}
.game-card:first-child, .game-card:nth-child(2) { grid-column: span 6; }
.game-card:hover { transform: translateY(-6px); border-color: rgba(246,200,95,.4); }
.game-cover {
  position: relative;
  display: flex;
  min-height: 245px;
  align-items: flex-end;
  overflow: hidden;
  padding: 1.25rem;
  isolation: isolate;
}
.game-cover::before { position: absolute; inset: 0; z-index: -2; background: var(--cover); content: ""; }
.game-cover::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .55;
  background: repeating-linear-gradient(115deg, transparent 0 34px, rgba(255,255,255,.06) 35px 36px), linear-gradient(transparent, rgba(1,7,17,.88));
  content: "";
}
.cover-gapshot { --cover: radial-gradient(circle at 72% 24%, #f1b63f, transparent 17%), linear-gradient(140deg, #102d52, #07121f 58%, #24364f); }
.cover-wrong-move { --cover: radial-gradient(circle at 30% 24%, #d53b4f, transparent 18%), linear-gradient(140deg, #171c32, #0b1222 52%, #421724); }
.cover-symbol { position: absolute; top: 18%; right: 10%; color: rgba(255,255,255,.2); font-family: "Cinzel", Georgia, serif; font-size: clamp(4.8rem, 9vw, 8.5rem); font-weight: 700; line-height: 1; }
.game-kicker { color: var(--gold-400); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.game-cover h3 { margin: .45rem 0 0; font-family: "Cinzel", Georgia, serif; font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.1; }
.game-body { padding: 1.4rem; }
.game-body p { min-height: 4.9em; margin: 0; color: #aebdd0; }
.game-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0 1.35rem; }
.pill { display: inline-flex; align-items: center; min-height: 29px; padding: .28rem .65rem; border-radius: 999px; color: #bed0e4; background: rgba(255,255,255,.07); font-size: .72rem; font-weight: 800; }
.pill-status { color: #1b1304; background: var(--gold-400); }

.ecosystem-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.ecosystem-grid.four-grid { grid-template-columns: repeat(4, 1fr); }
.eco-card { min-height: 190px; padding: 1.35rem; border: 1px solid var(--line); border-radius: 18px; background: white; transition: box-shadow .2s ease, transform .2s ease; }
.eco-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.eco-card.active { color: white; border-color: var(--navy-900); background: var(--navy-900); box-shadow: 0 18px 45px rgba(5,22,45,.22); }
.eco-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 12px; color: var(--navy-800); background: #eaf0f7; font-weight: 900; }
.eco-card.active .eco-icon { color: var(--navy-950); background: var(--gold-400); }
.eco-card h3 { margin: 1.25rem 0 .55rem; font-family: "Cinzel", Georgia, serif; font-size: 1.05rem; line-height: 1.35; }
.eco-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.eco-card.active p { color: #bdcada; }
.status-line { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; color: #718096; font-size: .74rem; font-weight: 800; text-transform: uppercase; }
.status-line::before { width: 7px; height: 7px; border-radius: 50%; background: #aab6c5; content: ""; }
.eco-card.active .status-line { color: var(--gold-400); }
.eco-card.active .status-line::before { background: var(--gold-400); box-shadow: 0 0 0 5px rgba(246,200,95,.1); }

.principles { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: start; }
.principles-intro { position: sticky; top: 120px; }
.principles-intro p { color: var(--muted); }
.principle-list { border-top: 1px solid var(--line); }
.principle { display: grid; grid-template-columns: 58px 1fr; gap: 1rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
.principle-num { color: #b27712; font-family: "Cinzel", Georgia, serif; font-size: 1.15rem; }
.principle h3 { margin: 0 0 .35rem; font-family: "Cinzel", Georgia, serif; font-size: 1.25rem; }
.principle p { margin: 0; color: var(--muted); }

.updates-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.3rem; }
.update-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.update-card.featured { min-height: 320px; color: white; border: 0; background: linear-gradient(145deg, var(--navy-800), var(--navy-950)); }
.update-type { color: #a76d08; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.featured .update-type { color: var(--gold-400); }
.update-card h3 { margin: .8rem 0 .7rem; font-family: "Cinzel", Georgia, serif; font-size: clamp(1.3rem, 3vw, 2rem); line-height: 1.25; }
.update-card p { margin: 0; color: var(--muted); }
.featured p { color: #b7c6d8; }
.update-stack { display: grid; gap: 1.3rem; }
.update-date { display: block; margin-top: 1.25rem; color: #7d8a9c; font-size: .78rem; font-weight: 700; }

.about-band { position: relative; overflow: hidden; color: white; background: linear-gradient(135deg, #07152a, #0b2f55); }
.about-band::after { position: absolute; right: -80px; bottom: -230px; width: 460px; height: 460px; border: 1px solid rgba(246,200,95,.2); border-radius: 50%; box-shadow: inset 0 0 70px rgba(246,200,95,.08); content: ""; }
.about-band-inner { position: relative; z-index: 1; display: grid; grid-template-columns: .7fr 1.3fr; gap: 4rem; align-items: center; }
.about-band-mark { width: min(320px, 80vw); filter: drop-shadow(0 20px 40px rgba(0,0,0,.3)); }
.about-band p { max-width: 720px; color: #c3d0df; font-size: 1.07rem; }
.minimal-band { color: white; background: linear-gradient(135deg, #07152a, #0b2f55); }
.minimal-band-inner { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 3rem; }
.minimal-band h2 { margin: 0; font-family: "Cinzel", Georgia, serif; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.minimal-band p { max-width: 680px; margin: .9rem 0 0; color: #c3d0df; }
.email-link { display: grid; gap: .2rem; padding: 1.3rem 1.5rem; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: rgba(255,255,255,.06); transition: transform .2s ease, border-color .2s ease; }
.email-link:hover { transform: translateY(-3px); border-color: var(--gold-400); }
.email-link span { color: var(--gold-400); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.email-link strong { color: white; font-size: clamp(1rem, 2.2vw, 1.3rem); overflow-wrap: anywhere; }
.email-link.light { border-color: var(--line); background: white; box-shadow: var(--shadow); }
.email-link.light strong { color: var(--navy-900); }
.about-simple { display: grid; grid-template-columns: minmax(240px, 420px) 1fr; align-items: center; gap: clamp(2rem, 7vw, 6rem); }
.about-simple img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-simple h2 { margin: 0; font-family: "Cinzel", Georgia, serif; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.12; }
.about-simple p { max-width: 650px; margin: 1rem 0 1.6rem; color: var(--muted); }

.site-footer { color: #a8b6c9; background: #010712; }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding: 4.2rem 0 3rem; }
.footer-main.footer-minimal { padding-block: 3.1rem 2.3rem; }
.footer-brand p { max-width: 410px; margin: 1.25rem 0 0; }
.footer-title { margin: 0 0 1rem; color: white; font-family: "Cinzel", Georgia, serif; font-size: 1rem; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a:hover { color: var(--gold-400); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 0 1.8rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .8rem; }

.page-hero { padding: 6rem 0 4.6rem; color: white; background: radial-gradient(circle at 80% 10%, rgba(233,173,49,.18), transparent 28%), linear-gradient(135deg, var(--navy-950), var(--navy-800)); }
.page-hero.compact-page-hero { padding-block: 4.6rem 3.8rem; }
.page-hero p { max-width: 720px; margin: 1.2rem 0 0; color: #becbdd; font-size: 1.08rem; }
.breadcrumb { display: flex; gap: .5rem; margin-bottom: 1.3rem; color: #8fa3bb; font-size: .82rem; }
.breadcrumb span { color: var(--gold-400); }
.content-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; }
.content-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.content-card h2, .content-card h3 { margin-top: 0; font-family: "Cinzel", Georgia, serif; line-height: 1.25; }
.content-card p { color: var(--muted); }
.timeline { display: grid; gap: 0; border-left: 1px solid var(--line); margin-left: .55rem; }
.timeline-item { position: relative; padding: 0 0 2rem 1.7rem; }
.timeline-item::before { position: absolute; left: -6px; top: .35rem; width: 11px; height: 11px; border: 3px solid white; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 1px var(--gold-500); content: ""; }
.timeline-item h3 { margin: 0 0 .4rem; font-family: "Cinzel", Georgia, serif; }
.timeline-item p { margin: 0; color: var(--muted); }

.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 2rem; }
.contact-panel { padding: 2rem; border-radius: var(--radius); color: white; background: var(--navy-900); }
.contact-panel h2 { margin-top: 0; font-family: "Cinzel", Georgia, serif; }
.contact-panel p { color: #b8c7d9; }
.contact-detail { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.1); }
.contact-detail small { display: block; color: var(--gold-400); font-weight: 800; text-transform: uppercase; }
.contact-form { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .45rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #ccd6e2; border-radius: 12px; padding: .82rem .9rem; color: var(--ink); background: white; }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { margin: .9rem 0 0; color: var(--muted); font-size: .82rem; }
.form-success { display: none; margin-top: 1rem; padding: .85rem 1rem; border-radius: 10px; color: #194525; background: #e7f7eb; font-weight: 700; }
.form-success.show { display: block; }
.contact-simple { max-width: 780px; padding: clamp(1.5rem, 5vw, 3.5rem); border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.contact-simple-label { display: block; margin-bottom: .7rem; color: #a66b06; font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-simple > a { display: inline-block; font-family: "Cinzel", Georgia, serif; font-size: clamp(1.35rem, 4vw, 2.4rem); font-weight: 600; overflow-wrap: anywhere; }
.contact-simple > a:hover { color: #a66b06; }
.contact-simple p { margin: 1rem 0 0; color: var(--muted); }

.policy { max-width: 820px; }
.policy h2 { margin-top: 2.4rem; font-family: "Cinzel", Georgia, serif; }
.policy p, .policy li { color: var(--muted); }
.policy a { color: #8b5906; font-weight: 750; text-decoration: underline; text-underline-offset: .18em; }
.policy ul, .policy ol { padding-left: 1.3rem; }
.policy-meta { margin: 0 0 2rem; color: #6f7e91; font-size: .88rem; }
.details-list { display: grid; gap: .85rem; margin: 1.7rem 0 0; padding: 0; list-style: none; }
.details-list li { padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.details-list strong { display: block; margin-bottom: .15rem; color: var(--ink); }
.notice { padding: 1rem 1.15rem; border-left: 4px solid var(--gold-500); border-radius: 0 12px 12px 0; color: #4d5d70; background: #fff8e8; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes breathe { 50% { transform: translateY(-8px) scale(1.015); } }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 78px 0 auto 0; display: none; max-height: calc(100vh - 78px); overflow: auto; padding: 1rem; border-top: 1px solid rgba(255,255,255,.08); background: #041225; }
  .site-nav.open { display: grid; }
  .site-nav > a:not(.btn) { padding: .9rem 1rem; }
  .site-nav .btn { margin-top: .5rem; }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding: 4.7rem 0 8.2rem; text-align: center; }
  .hero-copy { margin-inline: auto; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .hero-mark { min-height: 360px; }
  .hero-game-strip .container { grid-template-columns: 1fr 1fr 1fr; }
  .strip-intro { display: none; }
  .strip-game { justify-content: center; padding: .8rem; border-left: 1px solid rgba(255,255,255,.08); text-align: left; }
  .ecosystem-grid { grid-template-columns: repeat(3, 1fr); }
  .ecosystem-grid.four-grid { grid-template-columns: repeat(2, 1fr); }
  .principles, .about-band-inner, .contact-layout { grid-template-columns: 1fr; }
  .minimal-band-inner, .about-simple { grid-template-columns: 1fr; }
  .about-simple img { width: min(360px, 100%); }
  .principles-intro { position: static; }
  .about-band-mark { width: 220px; }
}

@media (max-width: 720px) {
  .section { padding: 4rem 0; }
  .section-head { display: block; }
  .section-head .text-link { display: inline-block; margin-top: 1rem; }
  .brand-word { width: 115px; }
  .header-inner { min-height: 70px; }
  .site-nav { top: 70px; }
  .hero-inner { min-height: auto; padding: 4rem 0 7.1rem; }
  .hero-minimal .hero-inner { padding-block: 3.5rem; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.5rem); }
  .hero-mark { min-height: 270px; }
  .hero-mark::before { width: 280px; height: 280px; }
  .hero-mark::after { width: 220px; height: 220px; }
  .hero-logo { width: 260px; }
  .hero-game-strip .container { width: 100%; }
  .strip-game { min-height: 66px; padding: .65rem .55rem; font-size: .72rem; }
  .strip-num { display: none; }
  .games-grid { grid-template-columns: 1fr; }
  .game-card, .game-card:first-child, .game-card:nth-child(2) { grid-column: 1; }
  .game-cover { min-height: 220px; }
  .game-body p { min-height: 0; }
  .ecosystem-grid, .ecosystem-grid.four-grid { grid-template-columns: 1fr 1fr; }
  .updates-grid, .content-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: .35rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
}

@media (max-width: 480px) {
  .ecosystem-grid, .ecosystem-grid.four-grid, .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .hero-actions .btn { width: 100%; }
  .product-actions > .btn, .product-actions > .store-button { width: 100%; }
  .strip-game:nth-child(4) { display: none; }
  .hero-game-strip .container { grid-template-columns: 1fr 1fr; }
  .contact-panel, .contact-form { padding: 1.35rem; }
}

@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; }
}
