:root {
  --stagelands-bg: #FAF7F0;
  --stagelands-accent: #B45309;
  --stagelands-accent-hover: #a14604;
  --stagelands-text: #2e2212;
  --stagelands-muted: #8c7a5c;
  --stagelands-shadow: 0 4px 24px 0 rgba(180, 83, 9, 0.05), 0 1.5px 8px 0 rgba(60,40,10,0.07);
  --stagelands-radius-lg: 24px;
  --stagelands-radius-md: 16px;
  --stagelands-radius-sm: 8px;
  --stagelands-gradient: linear-gradient(120deg, rgba(244, 241, 232, 0.50) 0%, rgba(250, 247, 240, 0.92) 100%);
  --stagelands-gradient-block: linear-gradient(120deg, rgba(244, 241, 232, 0.18) 0%, rgba(250, 247, 240, 0.83) 100%);
  --stagelands-border: 1px solid rgba(180, 83, 9, 0.13);
  --stagelands-max-width: 1240px;
  --stagelands-btn-radius: 32px;
  --stagelands-btn-shadow: 0 2px 8px 0 rgba(180, 83, 9, 0.07);
  --stagelands-hero-video-ratio: 16/9;
}

html, body {
  height: 100%;
  box-sizing: border-box;
  font-size: 14px;
  background: var(--stagelands-bg);
  color: var(--stagelands-text);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  scroll-behavior: smooth;
}

body.stagelands-body {
  min-height: 100vh;
  background: var(--stagelands-bg);
  background-image: var(--stagelands-gradient);
}

*, *::before, *::after {
  box-sizing: inherit;
}

a {
  color: var(--stagelands-accent);
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: var(--stagelands-accent-hover);
}

.stagelands-header {
  width: 100%;
  background: var(--stagelands-gradient);
  box-shadow: var(--stagelands-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.stagelands-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--stagelands-max-width);
  margin: 0 auto;
  padding: 18px 32px 10px 32px;
  min-height: 68px;
}
.stagelands-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stagelands-logo__img {
  width: 48px;
  height: 48px;
  border-radius: var(--stagelands-radius-md);
  box-shadow: 0 2px 8px 0 rgba(180, 83, 9, 0.07);
  background: #fff;
  object-fit: contain;
}
.stagelands-nav {
  margin-left: auto;
}
.stagelands-nav__list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.stagelands-nav__link {
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  color: var(--stagelands-text);
}
.stagelands-nav__link:hover, .stagelands-nav__link:focus {
  color: var(--stagelands-accent);
  border-bottom: 1px solid var(--stagelands-accent);
}

.stagelands-main {
  width: 100%;
  max-width: var(--stagelands-max-width);
  margin: 0 auto;
  padding: 0 16px 48px 16px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* HERO */
.stagelands-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: var(--stagelands-gradient-block);
  border-radius: var(--stagelands-radius-lg);
  box-shadow: var(--stagelands-shadow);
  margin-top: 36px;
  overflow: hidden;
  min-height: 340px;
}
.stagelands-hero__media {
  flex: 1 1 350px;
  min-width: 340px;
  max-width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, rgba(180,83,9,0.03) 0%, rgba(250,247,240,0.8) 100%);
  min-height: 320px;
}
.stagelands-hero__video {
  width: 100%;
  aspect-ratio: var(--stagelands-hero-video-ratio);
  object-fit: cover;
  border-radius: var(--stagelands-radius-lg) 0 0 var(--stagelands-radius-lg);
  display: block;
  position: absolute;
  top: 0; left: 0; height: 100%;
  z-index: 1;
  opacity: 0.82;
  background: #eae6db;
}
.stagelands-hero__image {
  width: 100%;
  max-width: 420px;
  object-fit: cover;
  border-radius: var(--stagelands-radius-lg) 0 0 var(--stagelands-radius-lg);
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 16px 0 rgba(180, 83, 9, 0.10);
}
.stagelands-hero__content {
  flex: 1 1 380px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 36px 44px 36px;
  z-index: 2;
  background: transparent;
}
.stagelands-hero__title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--stagelands-accent);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.stagelands-hero__tagline {
  font-size: 1.1rem;
  color: var(--stagelands-text);
  margin-bottom: 20px;
  font-weight: 400;
}
.stagelands-hero__meta {
  margin-bottom: 20px;
}
.stagelands-hero__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.stagelands-hero__list-item {
  margin-bottom: 6px;
  color: var(--stagelands-muted);
  font-size: 0.98em;
}
.stagelands-hero__cta {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.stagelands-btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: var(--stagelands-btn-radius);
  font-weight: 600;
  font-size: 1em;
  background: #fff;
  border: none;
  box-shadow: var(--stagelands-btn-shadow);
  color: var(--stagelands-accent);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
  border: 1px solid transparent;
  letter-spacing: 0.01em;
  position: relative;
}
.stagelands-btn--primary {
  background: var(--stagelands-accent);
  color: #fff;
}
.stagelands-btn--primary:hover, .stagelands-btn--primary:focus {
  background: #fff;
  color: var(--stagelands-accent);
  border: 1px solid var(--stagelands-accent);
}
.stagelands-btn--secondary {
  background: #fff;
  color: var(--stagelands-accent);
  border: 1px solid var(--stagelands-accent);
}
.stagelands-btn--secondary:hover, .stagelands-btn--secondary:focus {
  background: var(--stagelands-accent);
  color: #fff;
}
.stagelands-btn--store {
  background: linear-gradient(90deg, #B45309 80%, #fff 100%);
  color: #fff;
  border: 1px solid var(--stagelands-accent);
}
.stagelands-btn--store:hover, .stagelands-btn--store:focus {
  background: #fff;
  color: var(--stagelands-accent);
}
.stagelands-hero__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.stagelands-hero__link {
  font-size: 0.98em;
  color: var(--stagelands-accent);
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 6px;
  transition: background 0.18s;
}
.stagelands-hero__link:hover, .stagelands-hero__link:focus {
  background: rgba(180, 83, 9, 0.08);
}

/* WORLD */
.stagelands-world {
  background: var(--stagelands-gradient-block);
  border-radius: var(--stagelands-radius-lg);
  box-shadow: var(--stagelands-shadow);
  padding: 0;
  overflow: hidden;
}
.stagelands-world__inner {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: 280px;
}
.stagelands-world__visual {
  flex: 1 1 340px;
  max-width: 40%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: linear-gradient(135deg, rgba(180,83,9,0.03) 0%, rgba(250,247,240,0.8) 100%);
}
.stagelands-world__img {
  width: 100%;
  max-width: 340px;
  object-fit: cover;
  border-radius: 0 var(--stagelands-radius-lg) var(--stagelands-radius-lg) 0;
  max-height: 320px;
  align-self: center;
  box-shadow: 0 2px 16px 0 rgba(180, 83, 9, 0.11);
}
.stagelands-world__text {
  flex: 1 1 400px;
  min-width: 320px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stagelands-world__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--stagelands-accent);
  margin-bottom: 12px;
}
.stagelands-world__lead {
  color: var(--stagelands-text);
  margin-bottom: 18px;
}
.stagelands-world__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stagelands-world__features li {
  position: relative;
  padding-left: 22px;
  color: var(--stagelands-muted);
}
.stagelands-world__features li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 7px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--stagelands-accent);
  opacity: 0.17;
}

/* MECHANICS */
.stagelands-mechanics {
  padding: 0;
  background: var(--stagelands-gradient-block);
  border-radius: var(--stagelands-radius-lg);
  box-shadow: var(--stagelands-shadow);
}
.stagelands-mechanics__inner {
  padding: 40px 36px;
}
.stagelands-mechanics__title {
  font-size: 1.45rem;
  color: var(--stagelands-accent);
  font-weight: 700;
  margin-bottom: 28px;
}
.stagelands-mechanics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stagelands-mechanics__card {
  background: #fff;
  border-radius: var(--stagelands-radius-md);
  box-shadow: 0 1.5px 8px 0 rgba(180, 83, 9, 0.04);
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  transition: box-shadow 0.18s, transform 0.18s;
  border: var(--stagelands-border);
}
.stagelands-mechanics__card:hover, .stagelands-mechanics__card:focus-within {
  box-shadow: 0 6px 32px 0 rgba(180, 83, 9, 0.10);
  transform: translateY(-2px) scale(1.01);
}
.stagelands-mechanics__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--stagelands-accent);
  margin-bottom: 10px;
}
.stagelands-mechanics__card p {
  color: var(--stagelands-text);
  font-size: 0.99em;
}

/* HOWTO */
.stagelands-howto {
  background: var(--stagelands-gradient-block);
  border-radius: var(--stagelands-radius-lg);
  box-shadow: var(--stagelands-shadow);
  padding: 0;
}
.stagelands-howto__inner {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: stretch;
}
.stagelands-howto__steps {
  flex: 2 1 380px;
  min-width: 320px;
  padding: 40px 36px;
  margin: 0;
  list-style: none;
  counter-reset: howto;
}
.stagelands-howto__steps li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 13px;
  color: var(--stagelands-text);
}
.stagelands-howto__steps li::before {
  counter-increment: howto;
  content: counter(howto) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--stagelands-accent);
  font-weight: 700;
}
.stagelands-howto__aside {
  flex: 1 1 240px;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(180,83,9,0.03) 0%, rgba(250,247,240,0.8) 100%);
  border-radius: 0 var(--stagelands-radius-lg) var(--stagelands-radius-lg) 0;
  padding: 0 20px;
}
.stagelands-howto__img {
  width: 100%;
  max-width: 220px;
  object-fit: cover;
  border-radius: var(--stagelands-radius-md);
  box-shadow: 0 2px 16px 0 rgba(180, 83, 9, 0.09);
}

/* RHYTHM */
.stagelands-rhythm {
  background: var(--stagelands-gradient-block);
  border-radius: var(--stagelands-radius-md);
  box-shadow: var(--stagelands-shadow);
  padding: 32px 28px;
}
.stagelands-rhythm__title {
  font-size: 1.35rem;
  color: var(--stagelands-accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.stagelands-rhythm__lead {
  color: var(--stagelands-text);
  margin-bottom: 18px;
}
.stagelands-rhythm__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.stagelands-rhythm__bullets li {
  position: relative;
  padding-left: 18px;
  color: var(--stagelands-muted);
}
.stagelands-rhythm__bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--stagelands-accent);
  opacity: 0.13;
}

/* FEATURES */
.stagelands-features {
  background: var(--stagelands-gradient-block);
  border-radius: var(--stagelands-radius-lg);
  box-shadow: var(--stagelands-shadow);
  padding: 0;
  overflow: hidden;
}
.stagelands-features__inner {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  align-items: stretch;
}
.stagelands-features__visual {
  flex: 1 1 340px;
  max-width: 40%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: linear-gradient(135deg, rgba(180,83,9,0.03) 0%, rgba(250,247,240,0.8) 100%);
}
.stagelands-features__img {
  width: 100%;
  max-width: 340px;
  object-fit: cover;
  border-radius: 0 var(--stagelands-radius-lg) var(--stagelands-radius-lg) 0;
  max-height: 320px;
  align-self: center;
  box-shadow: 0 2px 16px 0 rgba(180, 83, 9, 0.11);
}
.stagelands-features__text {
  flex: 1 1 400px;
  min-width: 320px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stagelands-features__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--stagelands-accent);
  margin-bottom: 12px;
}
.stagelands-features__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stagelands-features__list li {
  position: relative;
  padding-left: 20px;
  color: var(--stagelands-muted);
}
.stagelands-features__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--stagelands-accent);
  opacity: 0.13;
}

/* CONTENT */
.stagelands-content {
  background: var(--stagelands-gradient-block);
  border-radius: var(--stagelands-radius-md);
  box-shadow: var(--stagelands-shadow);
  padding: 32px 28px;
}
.stagelands-content__title {
  font-size: 1.25rem;
  color: var(--stagelands-accent);
  font-weight: 700;
  margin-bottom: 14px;
}
.stagelands-content__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 36px;
}
.stagelands-content__list li {
  position: relative;
  padding-left: 18px;
  color: var(--stagelands-text);
  font-size: 0.98em;
}
.stagelands-content__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--stagelands-accent);
  opacity: 0.10;
}

/* IMPRESSIONS */
.stagelands-impressions {
  background: var(--stagelands-gradient-block);
  border-radius: var(--stagelands-radius-md);
  box-shadow: var(--stagelands-shadow);
  padding: 32px 28px;
}
.stagelands-impressions__title {
  font-size: 1.25rem;
  color: var(--stagelands-accent);
  font-weight: 700;
  margin-bottom: 14px;
}
.stagelands-impressions__lead {
  color: var(--stagelands-text);
  margin-bottom: 18px;
}
.stagelands-impressions__quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stagelands-quote {
  background: #fff;
  border-radius: var(--stagelands-radius-md);
  box-shadow: 0 1.5px 8px 0 rgba(180, 83, 9, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 18px 18px 18px;
  border: var(--stagelands-border);
  min-height: 160px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.stagelands-quote:hover, .stagelands-quote:focus-within {
  box-shadow: 0 6px 32px 0 rgba(180, 83, 9, 0.09);
  transform: scale(1.012);
}
.stagelands-quote__img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px 0 rgba(180, 83, 9, 0.08);
}
.stagelands-quote__text {
  font-size: 0.97em;
  color: var(--stagelands-text);
  text-align: center;
  margin: 0;
}

/* SCREENSHOTS */
.stagelands-screenshots {
  background: var(--stagelands-gradient-block);
  border-radius: var(--stagelands-radius-lg);
  box-shadow: var(--stagelands-shadow);
  padding: 32px 24px;
}
.stagelands-screenshots__title {
  font-size: 1.25rem;
  color: var(--stagelands-accent);
  font-weight: 700;
  margin-bottom: 18px;
}
.stagelands-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stagelands-screenshots__item {
  background: #fff;
  border-radius: var(--stagelands-radius-sm);
  box-shadow: 0 1.5px 8px 0 rgba(180, 83, 9, 0.05);
  padding: 0 0 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: var(--stagelands-border);
  transition: box-shadow 0.18s, transform 0.18s;
}
.stagelands-screenshots__item:hover, .stagelands-screenshots__item:focus-within {
  box-shadow: 0 6px 32px 0 rgba(180, 83, 9, 0.09);
  transform: scale(1.012);
}
.stagelands-screenshots__img {
  width: 100%;
  max-width: 100%;
  min-height: 100px;
  max-height: 160px;
  object-fit: cover;
  border-radius: var(--stagelands-radius-sm) var(--stagelands-radius-sm) 0 0;
  box-shadow: 0 2px 8px 0 rgba(180, 83, 9, 0.08);
}
.stagelands-screenshots__caption {
  font-size: 0.95em;
  color: var(--stagelands-muted);
  text-align: center;
  margin-top: 7px;
  padding: 0 8px;
}

/* FAQ */
.stagelands-faq {
  background: var(--stagelands-gradient-block);
  border-radius: var(--stagelands-radius-md);
  box-shadow: var(--stagelands-shadow);
  padding: 32px 28px;
}
.stagelands-faq__title {
  font-size: 1.25rem;
  color: var(--stagelands-accent);
  font-weight: 700;
  margin-bottom: 14px;
}
.stagelands-faq__list {
  margin: 0;
  padding: 0;
  width: 100%;
}
.stagelands-faq__list dt {
  font-weight: 600;
  color: var(--stagelands-accent);
  margin-top: 18px;
  margin-bottom: 3px;
  font-size: 1em;
  transition: color 0.16s;
}
.stagelands-faq__list dd {
  margin: 0 0 8px 0;
  color: var(--stagelands-text);
  font-size: 0.97em;
  background: #fff;
  border-radius: var(--stagelands-radius-sm);
  padding: 10px 16px;
  box-shadow: 0 1.5px 8px 0 rgba(180, 83, 9, 0.03);
  border-left: 3px solid var(--stagelands-accent);
}

/* FOOTER */
.stagelands-footer {
  background: var(--stagelands-gradient);
  box-shadow: 0 -2px 12px 0 rgba(180, 83, 9, 0.07);
  border-top: var(--stagelands-border);
  margin-top: 48px;
  padding: 0;
}
.stagelands-footer__inner {
  max-width: var(--stagelands-max-width);
  margin: 0 auto;
  padding: 36px 24px 28px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.stagelands-footer__col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.stagelands-footer__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--stagelands-accent);
  margin-bottom: 4px;
}
.stagelands-footer__desc {
  color: var(--stagelands-muted);
  font-size: 0.97em;
  margin-bottom: 8px;
}
.stagelands-footer__subtitle {
  font-size: 1em;
  font-weight: 600;
  color: var(--stagelands-accent);
  margin-bottom: 4px;
}
.stagelands-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.stagelands-footer__link {
  color: var(--stagelands-text);
  font-size: 0.97em;
  transition: color 0.18s;
  border-bottom: 1px solid transparent;
  padding: 2px 0;
}
.stagelands-footer__link:hover, .stagelands-footer__link:focus {
  color: var(--stagelands-accent);
  border-bottom: 1px solid var(--stagelands-accent);
}

/* COOKIE BANNER */
.stagelands-cookie {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 9999;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(180, 83, 9, 0.12);
  border-radius: var(--stagelands-radius-lg);
  padding: 20px 28px;
  min-width: 260px;
  max-width: 96vw;
  align-items: center;
  gap: 18px;
  flex-direction: row;
}
.stagelands-cookie__text {
  color: var(--stagelands-text);
  font-size: 0.98em;
  margin: 0 16px 0 0;
}
.stagelands-cookie__btn {
  background: var(--stagelands-accent);
  color: #fff;
  border: none;
  border-radius: var(--stagelands-btn-radius);
  padding: 8px 28px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  box-shadow: var(--stagelands-btn-shadow);
}
.stagelands-cookie__btn:hover, .stagelands-cookie__btn:focus {
  background: #fff;
  color: var(--stagelands-accent);
  border: 1px solid var(--stagelands-accent);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .stagelands-main {
    max-width: 100vw;
    padding: 0 4vw 48px 4vw;
  }
  .stagelands-header__inner {
    padding: 18px 4vw 10px 4vw;
  }
  .stagelands-footer__inner {
    padding: 36px 4vw 28px 4vw;
  }
  .stagelands-mechanics__grid,
  .stagelands-impressions__quotes,
  .stagelands-screenshots__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stagelands-content__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .stagelands-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .stagelands-nav__list {
    gap: 18px;
  }
  .stagelands-world__inner,
  .stagelands-features__inner,
  .stagelands-howto__inner {
    flex-direction: column;
    gap: 0;
  }
  .stagelands-world__visual,
  .stagelands-features__visual,
  .stagelands-howto__aside {
    max-width: 100%;
    border-radius: var(--stagelands-radius-lg) var(--stagelands-radius-lg) 0 0;
    min-height: 180px;
    padding: 0;
  }
  .stagelands-world__img,
  .stagelands-features__img {
    border-radius: var(--stagelands-radius-lg) var(--stagelands-radius-lg) 0 0;
    max-height: 220px;
    max-width: 100%;
  }
  .stagelands-howto__img {
    max-width: 160px;
  }
  .stagelands-world__text,
  .stagelands-features__text,
  .stagelands-howto__steps {
    padding: 28px 18px;
  }
  .stagelands-mechanics__grid,
  .stagelands-impressions__quotes,
  .stagelands-screenshots__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .stagelands-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .stagelands-header__inner {
    padding: 10px 2vw 10px 2vw;
  }
  .stagelands-main {
    padding: 0 2vw 36px 2vw;
    gap: 36px;
  }
  .stagelands-footer__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 2vw 20px 2vw;
  }
  .stagelands-hero {
    flex-direction: column;
    min-height: unset;
  }
  .stagelands-hero__media,
  .stagelands-hero__content {
    max-width: 100%;
    min-width: 0;
    padding: 0;
  }
  .stagelands-hero__content {
    padding: 24px 12px 24px 12px;
  }
  .stagelands-hero__title {
    font-size: 1.25rem;
  }
  .stagelands-hero__tagline {
    font-size: 1em;
  }
  .stagelands-world__text,
  .stagelands-features__text,
  .stagelands-howto__steps,
  .stagelands-mechanics__inner,
  .stagelands-rhythm,
  .stagelands-content,
  .stagelands-impressions,
  .stagelands-faq {
    padding: 18px 8px;
  }
  .stagelands-screenshots {
    padding: 18px 4px;
  }
  .stagelands-screenshots__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stagelands-impressions__quotes {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .stagelands-mechanics__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .stagelands-cookie {
    min-width: 0;
    padding: 12px 8px;
    font-size: 0.95em;
    bottom: 12px;
  }
}