/* Beast of Burden Studios — studio site.
   Palette lifted from the game's UI (MVP.uss): near-black ground,
   accent cyan, ember orange, cool grey text. Type: Orbitron for display,
   Exo 2 for body — the same pairing the game uses. */

:root {
  --bg: #0a0e12;
  --bg-raised: #10161c;
  --bg-panel: #131b22;
  --fg: #ebf0f5;
  --muted: #a0aab4;
  --dim: #6e7880;
  --accent: #40e0ff;
  --accent-deep: #1a9cb4;
  --ember: #e6965a;
  --rule: rgba(64, 224, 255, 0.14);
  --max: 1080px;
  --display: "Orbitron", "Eurostile", "Bank Gothic", system-ui, sans-serif;
  --body: "Exo 2", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: #a0eeff; text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, .brand-name, .button, .eyebrow {
  font-family: var(--display);
  letter-spacing: 0.02em;
}
h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
  font-weight: 700;
}
h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0;
  font-weight: 700;
}
.eyebrow {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  font-weight: 500;
}
.muted { color: var(--muted); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  background: rgba(10, 14, 18, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--fg);
}
.brand:hover { text-decoration: none; color: var(--fg); }
.brand-mark { flex-shrink: 0; }
.brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-thin { font-weight: 500; color: var(--muted); }
.site-nav { display: flex; gap: 1.5rem; }
.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}
.site-nav a:hover { color: var(--accent); text-decoration: none; }

/* Layout */
main { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section {
  padding: 4.5rem 0;
  border-top: 1px solid var(--rule);
}
.section-head { margin-bottom: 2rem; }
.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 2rem 4rem;
}
.section-split .section-head { margin-bottom: 0; }
.prose p { margin: 0 0 1rem; }
.prose p:last-child { margin-bottom: 0; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  align-items: center;
  gap: 3rem;
  padding: 5rem 0 5.5rem;
  min-height: min(70vh, 640px);
}
.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 0 2rem;
}
.hero-actions, .game-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.hero-art {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  width: 100%;
  justify-self: center;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 80, 70, 0.28) 0%, rgba(220, 80, 70, 0) 68%);
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0.35;
  transform: rotate(-18deg) scaleY(0.36);
}
.hero-sun {
  position: absolute;
  width: 62%;
  left: 19%;
  top: 14%;
  filter: drop-shadow(0 0 40px rgba(220, 80, 70, 0.35));
  animation: drift 14s ease-in-out infinite;
}
.hero-planet {
  position: absolute;
  width: 20%;
  right: 4%;
  bottom: 14%;
  filter: drop-shadow(0 0 16px rgba(64, 224, 255, 0.35));
  animation: drift 9s ease-in-out infinite reverse;
}
@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-sun, .hero-planet { animation: none; }
  html { scroll-behavior: auto; }
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.4rem;
  border: 1.5px solid var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.button:hover { text-decoration: none; }
.button-primary { background: var(--accent); color: var(--bg); }
.button-primary:hover { background: #7ae9ff; color: var(--bg); box-shadow: 0 0 24px rgba(64, 224, 255, 0.35); }
.button-ghost:hover { background: rgba(64, 224, 255, 0.12); color: var(--accent); }
.button-disabled {
  border-color: var(--dim);
  color: var(--muted);
  cursor: default;
}
.text-link { font-size: 0.95rem; }

/* Game card */
.game-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  position: relative;
}
.game-card::before,
.game-card::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent);
}
.game-card::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.game-card::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.game-icon {
  width: 160px;
  height: 160px;
  border-radius: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}
.game-card + .game-card { margin-top: 2rem; }
.game-title {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  margin: 0 0 0.25rem;
  font-weight: 700;
}
/* Temptation has no sourced art yet: an honest placeholder panel, same
   footprint as the Umbral icon, never a stand-in illustration. */
.game-art--placeholder {
  width: 160px;
  height: 160px;
  border-radius: 36px;
  border: 1.5px dashed rgba(230, 150, 90, 0.5);
  background: rgba(230, 150, 90, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  position: relative;
}
.game-art--placeholder svg { width: 96px; height: 96px; }
.game-art-note {
  position: absolute;
  bottom: 12px;
  font-family: var(--display);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
}
.game-card--fantasy::before,
.game-card--fantasy::after { border-color: var(--ember); }
.feature-list.feature-list--ember li::before { background: var(--ember); }
.game-tag {
  color: var(--ember);
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0.25rem 0 1rem;
}
.game-body p { margin-top: 0; }
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.75rem;
}
.feature-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--muted);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.feature-title { color: var(--fg); font-weight: 600; }

/* Screenshot strip — horizontally scrollable row of portrait phone
   captures inside the Umbral card; snap per shot, no scrollbar chrome
   theming beyond a thin accent track. */
.screenshot-strip {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 0.75rem;
  scrollbar-color: var(--accent-deep) var(--bg-raised);
  scrollbar-width: thin;
}
.screenshot {
  margin: 0;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.screenshot img {
  height: 380px;
  width: auto;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: var(--bg);
}
.screenshot figcaption {
  margin-top: 0.5rem;
  font-family: var(--display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* Footer */
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer p { margin: 0.25rem 0; }

/* Responsive */
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; padding: 3rem 0 3.5rem; min-height: 0; }
  .hero-art { max-width: 300px; order: -1; }
  .section-split { grid-template-columns: 1fr; gap: 1.25rem; }
  .game-card { grid-template-columns: 1fr; }
  .game-icon, .game-art--placeholder { width: 120px; height: 120px; border-radius: 27px; }
  .game-art--placeholder svg { width: 72px; height: 72px; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .site-header { padding: 0.75rem 1rem; }
  .brand-name { display: none; }
  .site-nav { gap: 1rem; }
  main { padding: 0 1rem; }
  .game-card { padding: 1.5rem; }
  .button { width: 100%; }
  .screenshot img { height: 300px; }
}

.game-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--fg);
  margin: 0 0 1.25rem;
}
.game-quote {
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--ember);
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
}
