:root {
  --ink: #0c070e;
  --panel: #16101c;
  --line: rgba(255, 245, 230, 0.08);
  --cream: #f7f0e6;
  --muted: #a89bb0;
  --gold: #d4af37;
  --gold-dim: #9a7b2c;
  --rose: #c76b8a;
  --nv-green: #76b900;
  --xsolla-blue: #3b82f6;
  --glow: rgba(212, 175, 55, 0.15);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 400;
  color: var(--cream);
  background: var(--ink);
  line-height: 1.6;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, var(--glow), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 40%, rgba(199, 107, 138, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(118, 185, 0, 0.06), transparent),
    linear-gradient(180deg, #140c18 0%, var(--ink) 45%, #0a060d 100%);
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

/* Studio-style header logo + primary nav + Steam */
header.site-header--studio {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "logo steam"
    "nav nav";
  align-items: center;
  gap: 0.85rem 1rem;
}
header.site-header--studio .site-logo {
  grid-area: logo;
}
header.site-header--studio .header-steam-pill {
  grid-area: steam;
  justify-self: end;
}
header.site-header--studio .header-nav--studio {
  grid-area: nav;
}
@media (min-width: 1100px) {
  header.site-header--studio {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
  }
  header.site-header--studio .site-logo,
  header.site-header--studio .header-steam-pill,
  header.site-header--studio .header-nav--studio {
    grid-area: unset;
  }
  header.site-header--studio .header-nav--studio {
    flex: 1;
    justify-content: center;
    overflow: visible;
    padding-bottom: 0;
  }
  header.site-header--studio .header-steam-pill {
    justify-self: auto;
    flex-shrink: 0;
  }
}

.header-steam-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  line-height: 1;
}
.header-steam-pill:hover {
  border-color: rgba(212, 175, 55, 0.35);
  text-decoration: none;
  color: var(--cream);
}
.header-steam-pill img {
  height: 18px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.header-steam-pill__text {
  display: none;
}
@media (min-width: 400px) {
  .header-steam-pill__text {
    display: inline;
  }
}

nav.header-nav--studio {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.85rem 1.1rem;
  font-size: 0.8rem;
  scrollbar-width: thin;
}
nav.header-nav--studio::-webkit-scrollbar {
  height: 4px;
}
nav.header-nav--studio::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 4px;
}
@media (min-width: 1100px) {
  nav.header-nav--studio {
    font-size: 0.88rem;
    gap: 1.25rem;
  }
}

.site-logo {
  display: flex;
  align-items: center;
  line-height: 0;
}
.site-logo img {
  height: 42px;
  width: auto;
  display: block;
}
.site-logo:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

nav.header-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}
nav.header-nav a {
  color: var(--muted);
  text-decoration: none;
}
nav.header-nav a:hover { color: var(--cream); text-decoration: none; }
nav.header-nav a[aria-current="page"] {
  color: var(--cream);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  isolation: isolate;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 0.35rem;
  text-align: center;
  min-height: min(72vh, 640px);
}

.hero-stack {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  min-height: inherit;
}
.hero-img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-scrim {
  grid-area: 1 / 1;
  pointer-events: none;
  align-self: stretch;
  background: linear-gradient(
    180deg,
    rgba(12, 7, 14, 0.45) 0%,
    rgba(12, 7, 14, 0.72) 45%,
    rgba(12, 7, 14, 0.92) 100%
  );
}

.hero-content {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
  padding: 3.25rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

h1.hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.75rem, 8vw, 4.25rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
}
h1.hero-title em {
  font-style: italic;
  color: var(--rose);
  font-weight: 500;
}

.hero-lead {
  max-width: 36rem;
  margin: 0 auto 1.25rem;
  font-size: 1.125rem;
  color: var(--muted);
  font-weight: 300;
}

/* Hero narrative stack under the title */
.hero-out-now {
  margin: 0 auto 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-out-now a {
  color: inherit;
  text-decoration: none;
}
.hero-out-now a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-narrative {
  max-width: 34rem;
  margin: 0 auto 1rem;
  font-size: 0.98rem;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.55;
  opacity: 0.95;
}
.hero-narrative--deep {
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}
.hero-studio-line {
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  font-size: 0.82rem;
  color: var(--gold-dim);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hero-studio-line a {
  color: var(--gold);
}

.hero-lead--tagline {
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 400;
}
.hero-lead--tagline em {
  color: var(--rose);
  font-style: italic;
  font-weight: 500;
}

/* Inner pages (News, About, …) */
main.simple-page {
  padding-bottom: 2rem;
}
.simple-page .page-body {
  max-width: 40rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  font-size: 1.02rem;
}
.simple-page .page-body p {
  margin: 0 0 1rem;
}
.simple-page .page-body ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}
.simple-page .page-body a {
  font-weight: 500;
}
.simple-page .page-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, #b8922a 100%);
  color: var(--ink);
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.25);
}
.btn--primary:hover {
  box-shadow: 0 6px 32px rgba(212, 175, 55, 0.35);
  text-decoration: none;
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--cream);
}
.btn--ghost:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
}

.btn--with-icon {
  gap: 0.5rem;
}
.btn__icon {
  flex-shrink: 0;
  display: block;
  height: 1.35rem;
  width: auto;
}
/* White Steam mark → dark on gold primary button */
.btn__icon--steam-on-gold {
  filter: brightness(0);
}

.hero-trust__logo--steam {
  height: 28px;
  width: auto;
  display: block;
}

.steam-section-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}
.steam-section-head__logo {
  line-height: 0;
}
.steam-section-head__logo a:hover {
  text-decoration: none;
  opacity: 0.92;
}
.steam-section-head__logo img {
  height: 44px;
  width: auto;
  display: block;
}
.steam-section-head .section-title {
  margin: 0;
}

.steam-store-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 0.65rem;
}
.steam-store-link img {
  height: 1.15rem;
  width: auto;
  display: block;
}
.steam-store-link:hover {
  text-decoration: none;
}
.steam-store-link__hint {
  font-weight: 400;
  opacity: 0.85;
}


.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
}

.badge {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

section {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}

h2.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.section-intro {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 2rem;
  font-weight: 300;
}

.grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem 1.35rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 300;
}

.partners {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.partner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.25rem;
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 245, 230, 0.12);
}
.hero-trust__link {
  line-height: 0;
  opacity: 0.9;
  transition: opacity 0.15s ease;
}
.hero-trust__link:hover {
  opacity: 1;
  text-decoration: none;
}
.hero-trust__logo--xsolla {
  height: 22px;
  width: auto;
  display: block;
}
.hero-trust__logo--nvidia {
  height: 34px;
  width: auto;
  display: block;
}

.partner-brand {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
}
.partner-brand__link {
  line-height: 0;
}
.partner-brand__link:hover {
  text-decoration: none;
  opacity: 0.9;
}
.partner-logo--xsolla {
  height: 28px;
  width: auto;
  max-width: min(200px, 100%);
  display: block;
}
.partner-logo--nvidia {
  height: 42px;
  width: auto;
  display: block;
}
.partner-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--muted);
  margin: 0;
}

.partner h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}
.partner p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  flex: 1;
}
.partner a.inline {
  font-size: 0.9rem;
  font-weight: 500;
}

footer.site-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
footer.site-footer .legal {
  max-width: 42rem;
  line-height: 1.5;
}

footer.site-footer--extended {
  flex-direction: column;
  align-items: stretch;
  gap: 1.75rem;
  padding-bottom: 2rem;
}
.footer-block {
  text-align: center;
}
.footer-block--legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  font-size: 0.88rem;
}
.footer-block--legal a {
  color: var(--cream);
  font-weight: 500;
}
.footer-dot {
  opacity: 0.45;
}
.footer-discord-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-dim);
  font-weight: 600;
}
.footer-discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.75rem;
  border-radius: 10px;
  background: #5865f2;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
}
.footer-discord-btn:hover {
  filter: brightness(1.08);
  text-decoration: none !important;
}
.footer-discord-placeholder {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  justify-content: center;
  font-size: 0.85rem;
}
.footer-social-row a {
  color: var(--muted);
  font-weight: 500;
}
.footer-social-row a:hover {
  color: var(--cream);
  text-decoration: none;
}
.footer-social-placeholder {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.footer-block--meta {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  text-align: left;
}
@media (min-width: 640px) {
  .footer-block--meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
  }
}
.footer-meta-line {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
}
.footer-meta-line a {
  color: var(--gold-dim);
}

.story-split {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .story-split {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
  }
}
.story-split figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}
.story-split img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}
.story-split__text p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
}

.cast-strip {
  margin-bottom: 2rem;
}
.cast-strip h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dim);
  margin: 0 0 1rem;
  font-weight: 600;
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .cast-grid { grid-template-columns: repeat(4, 1fr); }
}
.cast-cell {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 1;
  background: var(--panel);
}
.cast-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-strip h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dim);
  margin: 0 0 1rem;
  font-weight: 600;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.shop-cell {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 1;
  background: var(--panel);
}
.shop-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 0.35rem;
}

/* Inner pages (e.g. features) */
.page-header {
  padding: 2.25rem 0 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.5rem;
}
.page-header__kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin: 0 0 0.5rem;
}
.page-header h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}
.page-header .lead {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.1rem;
}

section.page-section {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
}
section.page-section:first-of-type {
  border-top: none;
  padding-top: 2rem;
}

.feature-block h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.feature-block p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 44rem;
}
.feature-block p:last-child {
  margin-bottom: 0;
}
.feature-block ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-weight: 300;
}
.feature-block li {
  margin-bottom: 0.35rem;
}

.code-inline {
  font-size: 0.85em;
  color: var(--gold-dim);
}

.cta-row--start {
  justify-content: flex-start;
}

/* Long-form game pitch section (home #game) */
.pitch-section {
  padding-top: 2.75rem;
}
.wishlist-shout {
  text-align: center;
  margin: 0 0 1rem;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.wishlist-shout a {
  color: var(--gold);
  text-decoration: none;
  text-shadow: 0 0 28px var(--glow);
}
.wishlist-shout a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.pitch-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 600;
  text-align: center;
  margin: 0 0 1.25rem;
  letter-spacing: 0.03em;
}
.pitch-hook {
  font-size: 1.12rem;
  color: var(--cream);
  font-weight: 400;
  max-width: 38rem;
  margin: 0 auto 1rem;
  text-align: center;
  line-height: 1.55;
}
.pitch-hook--soft {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 44rem;
  margin-bottom: 2rem;
}
.pitch-subhead {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin: 2rem 0 1rem;
  font-weight: 600;
}
.pitch-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem 1rem;
}
.pitch-features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem 0.85rem;
  align-items: start;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}
.pitch-features strong {
  color: var(--cream);
  font-weight: 500;
}
.pitch-ico {
  font-size: 1.25rem;
  line-height: 1.2;
}
.pitch-li-body .code-inline {
  font-size: 0.88em;
}
.pitch-columns {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .pitch-columns {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.pitch-col {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem 1.25rem;
}
.pitch-col--roadmap {
  border-color: rgba(212, 175, 55, 0.15);
}
.pitch-col__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.85rem;
  color: var(--cream);
}
.pitch-ver {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: inline-block;
  margin-left: 0.25rem;
}
.pitch-col__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.55;
}
.pitch-col__list li {
  margin-bottom: 0.5rem;
}
.pitch-col__list li:last-child {
  margin-bottom: 0;
}
.pitch-credits p,
.pitch-shoutouts__list {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 46rem;
}
.pitch-shoutouts__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pitch-shoutouts__list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}
.pitch-shoutouts__list li:last-child {
  border-bottom: none;
}
.pitch-disclaimer {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  border-radius: 12px;
  border: 1px solid rgba(199, 107, 138, 0.25);
  background: rgba(199, 107, 138, 0.06);
}
.pitch-disclaimer p {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}
.pitch-disclaimer p:last-child {
  margin-bottom: 0;
}
.pitch-disclaimer strong {
  color: var(--cream);
}
.pitch-section .cta-row {
  margin-top: 1.75rem;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .hero { min-height: min(85vh, 560px); }
  .hero-content { padding-top: 2.5rem; }
}
