@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --text: #fff;
  --text-soft: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.5);
  --accent: #c0162a;
  --accent-soft: rgba(192, 22, 42, 0.18);
  --sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --display: "Satoshi", ui-sans-serif, system-ui, sans-serif;
  --mono: "Manrope", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--sans);
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  position: relative;
}

.nav {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 4%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0));
}

.logo img {
  width: 180px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a,
.nav-cta,
.mobile-nav-overlay a {
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.nav-links a:hover,
.nav-cta:hover,
.mobile-nav-overlay a:hover {
  opacity: 0.76;
  transform: translateY(-2px);
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
}

.mobile-menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 2px 0;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.open span:first-child {
  transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  background: rgba(0, 0, 0, 0.96);
}

.mobile-nav-overlay.open {
  display: flex;
}

.mobile-nav-overlay a {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image,
.hero-video-overlay,
.hero-glow,
.grid-bg {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.06) brightness(0.42);
}

.hero-video-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.75) 70%),
    radial-gradient(circle at 70% 18%, rgba(192, 22, 42, 0.24), transparent 28%);
}

.hero-glow {
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.08), transparent 25%),
    radial-gradient(circle at 78% 72%, rgba(192, 22, 42, 0.2), transparent 22%);
}

.grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 0),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 0);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse 82% 54% at 50% 50%, black 48%, transparent 100%);
}

.hero-content,
.section-header,
.contact-panel,
.recognition-panel,
.proof-grid,
.content-grid,
.deliverables-grid,
.production-section,
.process-grid,
.collaborators-section,
.values-grid,
footer {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 1120px;
  padding: 10rem 2rem 5rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.display,
.headline,
h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.display {
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.94;
  font-weight: 900;
}

.headline {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-subtitle,
.body,
.proof-copy,
.hero-note {
  color: var(--text-soft);
}

.hero-subtitle {
  max-width: 760px;
  margin: 1.4rem auto 0;
  font-size: 1.2rem;
  line-height: 1.7;
}

.hero-note {
  margin: 1.15rem 0 0;
  font-size: 0.96rem;
}

.cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  color: #000;
  background: #fff;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof-strip {
  max-width: 960px;
  margin: 3rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.proof-chip,
.studio-pill {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
}

section {
  padding: 7rem 5%;
}

.proof-section,
.content-section,
.deliverables-section,
.process-section,
.values-section,
.collaborators-section {
  max-width: 1320px;
  margin: 0 auto;
}

.section-header {
  max-width: 920px;
  margin: 0 auto 3rem;
  text-align: center;
}

.body {
  margin: 1.2rem auto 0;
  max-width: 760px;
  line-height: 1.7;
  font-size: 1.02rem;
}

.body-lead {
  color: var(--text-muted);
}

.proof-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.proof-card,
.content-card,
.deliverable-group,
.spec-card,
.process-card,
.value-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.proof-card {
  min-height: 240px;
  padding: 1.6rem;
  border-radius: 24px;
}

.proof-label,
.content-kicker {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-number {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.proof-text {
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  line-height: 1.02;
}

.proof-copy {
  margin-top: 1rem;
  line-height: 1.65;
  font-size: 0.96rem;
}

.logo-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 3.5rem;
}

.logo-strip-eyebrow {
  margin: 0 0 1.75rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.studio-strip {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.content-grid,
.process-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.content-card,
.process-card,
.value-card {
  border-radius: 24px;
  padding: 1.6rem;
}

.content-card h3,
.process-card h3,
.value-card h3 {
  font-size: 1.32rem;
  line-height: 1.25;
  font-weight: 700;
}

.process-card p,
.value-card p {
  margin: 0.9rem 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.deliverable-group {
  border-radius: 24px;
  padding: 1.6rem;
}

.deliverable-group h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.deliverable-group ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--text-soft);
}

.deliverable-group li {
  margin-bottom: 0.7rem;
  line-height: 1.55;
}

.production-section {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: start;
}

.production-copy {
  position: sticky;
  top: 6rem;
}

.spec-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.spec-card {
  padding: 1.1rem 1rem;
  border-radius: 18px;
}

.spec-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-card strong {
  font-family: var(--display);
  font-size: 1rem;
  text-transform: uppercase;
}

.production-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.production-images .venue-image-card:first-child {
  grid-column: 1 / -1;
}

.venue-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.venue-image-card-wide {
  aspect-ratio: 16 / 9;
}

.venue-image-card-feature {
  aspect-ratio: 4 / 5;
}

.venue-image-card-tall {
  aspect-ratio: 4 / 5;
}

.venue-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.78);
}

.venue-image-card-feature img {
  filter: none;
}

.venue-image-card figcaption {
  padding: 0.85rem 1rem 1rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
}

.recognition-section {
  padding-top: 3rem;
}

.recognition-panel,
.contact-panel {
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 20%, rgba(192, 22, 42, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  padding: 3rem;
}

.recognition-panel .body,
.contact-panel .body {
  max-width: 760px;
  margin-inline: 0;
}

.founders-section {
  padding-top: 3rem;
}

.founders-panel {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.founders-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.founder-image {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #080808;
}

.founder-image-shared {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.founder-image-portrait {
  aspect-ratio: 4 / 5;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founders-copy {
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 20%, rgba(192, 22, 42, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  padding: 3rem;
}

.founders-copy .body {
  max-width: 760px;
}

.founder-badges {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.founder-note {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.speaker-card-container {
  position: relative;
}

.speaker-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.collab-face {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}

.collab-meta {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9) 54%);
}

.trading-card-badge {
  margin: 0 0 0.45rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trading-card-name {
  font-size: 1.5rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.trading-card-title {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.contact-section {
  padding-top: 5rem;
}

footer {
  max-width: 1320px;
  margin: 0 auto;
  padding: 3rem 5%;
}

.footer-content {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
}

.footer-brand {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.86rem;
  line-height: 1.8;
}

.footer-brand a:hover,
.contact-panel a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .proof-grid,
  .deliverables-grid,
  .content-grid,
  .process-grid,
  .values-grid,
  .speakers-grid,
  .production-section,
  .founders-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .production-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-content {
    padding-top: 8rem;
  }

  .display {
    font-size: clamp(2.5rem, 12vw, 4.5rem);
  }
}

@media (max-width: 700px) {
  section {
    padding: 5rem 5%;
  }

  .proof-grid,
  .deliverables-grid,
  .content-grid,
  .process-grid,
  .values-grid,
  .speakers-grid,
  .production-section,
  .founders-panel,
  .founders-media,
  .production-images,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-content {
    padding: 8rem 1.25rem 4rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .cta-group .btn {
    width: 100%;
  }

  .recognition-panel,
  .founders-copy,
  .contact-panel {
    padding: 2rem 1.2rem;
    border-radius: 24px;
  }

  .proof-card,
  .content-card,
  .deliverable-group,
  .process-card,
  .value-card,
  .speaker-card {
    border-radius: 20px;
  }

  .speaker-card {
    min-height: 360px;
  }

  .collab-face {
    min-height: 360px;
  }
}
