:root {
  --bg: #f8f7f3;
  --ink: #0b0b0b;
  --muted: #66625f;
  --card: #ffffff;
  --accent-red: #e53b2d;
  --accent-yellow: #f4c63d;
  --accent-green: #37b86a;
  --accent-blue: #3bb6f3;
  --shadow: 0 30px 60px rgba(15, 15, 15, 0.15);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.page {
  min-height: 100vh;
  padding: clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 48px);
  background:
    radial-gradient(60% 60% at 10% 10%, rgba(229, 59, 45, 0.08), transparent 60%),
    radial-gradient(50% 50% at 90% 20%, rgba(59, 182, 243, 0.12), transparent 55%),
    radial-gradient(50% 50% at 70% 85%, rgba(244, 198, 61, 0.14), transparent 60%);
  position: relative;
  overflow: hidden;
}

.page::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 47px, rgba(0, 0, 0, 0.04) 48px),
    linear-gradient(90deg, transparent 47px, rgba(0, 0, 0, 0.04) 48px);
  background-size: 96px 96px;
  opacity: 0.4;
  pointer-events: none;
}

.top,
.hero,
.foot {
  position: relative;
  z-index: 1;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.tab {
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--card);
}

.tab:hover,
.tab:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.studio {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
}

.logo-studio {
  background: #000000;
  padding: 6px;
}

.logo-mark {
  width: 56px;
  height: 56px;
}

.pill {
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: clamp(8px, 2vw, 24px);
}

.title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

h1 {
  font-family: "Bebas Neue", "Oswald", "Impact", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: 0.12em;
  margin: 0;
}

.tagline {
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  font-weight: 600;
  margin: 0;
}

.sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 32ch;
  margin: 0;
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.badge[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  position: relative;
}

.badge[aria-disabled="true"]::after {
  content: "Coming soon";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  background: #111111;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.badge[aria-disabled="true"]:hover::after,
.badge[aria-disabled="true"]:focus-visible::after {
  opacity: 1;
}

.meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  background: #111111;
  color: #ffffff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  align-self: start;
  max-width: 640px;
  justify-self: end;
  position: relative;
}

.shot-video {
  align-self: stretch;
  width: 100%;
}

.shot {
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow);
  transform-origin: center;
}

.shot img,
.shot video,
.img-fallback {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

.shot video {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #ffffff;
}

.img-fallback {
  aspect-ratio: 9 / 16;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--muted);
  border: 2px dashed rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #ffffff, #f0efea);
}

.shot-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.foot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal {
  max-width: 860px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
}

.legal h2 {
  font-size: 1.6rem;
  margin: 0 0 10px;
}

.legal h3 {
  font-size: 1.1rem;
  margin: 18px 0 8px;
}

.legal p {
  margin: 0 0 12px;
}

.legal ul {
  margin: 0 0 12px 18px;
  padding: 0;
}

.legal li {
  margin: 0 0 6px;
}

.meta-line {
  font-size: 0.85rem;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }
}

@media (min-width: 1100px) {
  .page {
    padding: clamp(16px, 2.2vw, 32px);
    gap: clamp(16px, 2.2vw, 32px);
  }

  .hero {
    gap: clamp(20px, 3vw, 48px);
  }

  .hero-media {
    max-width: min(680px, 44vh);
  }
}

@media (max-width: 640px) {
  .top {
    flex-direction: column;
    align-items: flex-start;
  }

  .pill {
    order: 2;
  }

  .title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .tabs {
    margin-left: 0;
  }

  .hero-media {
    max-width: 320px;
    justify-self: center;
  }

  .shot-video {
    align-self: stretch;
    width: 100%;
  }

  .shot-row {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .badge {
    transition: none;
  }
}
