﻿:root {
  color-scheme: dark;
  --bg: #0b1326;
  --bg-soft: #101a30;
  --panel: rgba(18, 29, 52, 0.78);
  --panel-strong: rgba(22, 35, 62, 0.94);
  --text: #f7f9ff;
  --muted: #aeb9d4;
  --line: rgba(255, 255, 255, 0.14);
  --green: #00C9A1;
  --blue: #78d5ff;
  --violet: #c9c4ff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Hanken Grotesk", Inter, Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(11, 19, 38, 0) 0, #0b1326 70%),
    radial-gradient(circle at 82% 18%, rgba(57, 255, 20, 0.13), transparent 30rem),
    radial-gradient(circle at 12% 42%, rgba(120, 213, 255, 0.12), transparent 32rem),
    #0b1326;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--green);
  color: #06100a;
  padding: 0.75rem 1rem;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 4.5rem;
  padding: 0 2rem;
  border-bottom: 1px solid var(--line);
  background: rgba(14, 24, 44, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 1.05rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 1.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--muted);
  padding: 1.75rem 0;
}

.nav-links a:hover {
  color: var(--green);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 8rem 1.5rem 5rem;
}

.hero-art,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art {
  z-index: -2;
  object-fit: cover;
  opacity: 0.82;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 19, 38, 0.14), rgba(11, 19, 38, 0.94) 88%),
    radial-gradient(circle at 50% 44%, rgba(11, 19, 38, 0.06), rgba(11, 19, 38, 0.72) 44rem);
}

.hero-content {
  width: min(1180px, 100%);
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.3rem;
  color: #d8ddff;
  font-size: clamp(3.2rem, 8.4vw, 7.25rem);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 5.8rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 680px;
  margin: 0 auto 2.2rem;
  color: #eef3ff;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions,
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 900;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: rgba(57, 255, 20, 0.88);
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.23);
  transform: translateY(-2px);
}

.button-primary,
.button-small {
  background: var(--green);
  color: #071007;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.button-small {
  min-height: 2.35rem;
  padding: 0.55rem 0.95rem;
  font-size: 0.86rem;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 7rem 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.8fr 1.7fr;
  gap: 2rem;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 900px;
}

.section-heading p,
.feed-copy p,
.feature-card p,
.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
}

.poster-rail {
  display: grid;
  grid-auto-columns: minmax(245px, 300px);
  grid-auto-flow: column;
  gap: 1.1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 1rem 0 1.8rem;
  scroll-snap-type: inline mandatory;
}

.poster-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 56%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(5, 9, 18, 0.94));
}

.poster-meta {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
}

.poster-meta p {
  margin-bottom: 0.35rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  padding: 1.5rem;
}

.feature-card svg {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.3rem;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.feed-section {
  width: 100%;
  padding-inline: max(1rem, calc((100% - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    #081020;
}

.feed-copy {
  max-width: 860px;
  margin-bottom: 2.8rem;
}

.feed-layout {
  display: grid;
  grid-template-columns: minmax(250px, 420px);
  gap: 1.25rem;
  align-items: start;
}

.analytics-panel {
  position: sticky;
  top: 6rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.panel-header,
.analytics-panel dl div,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.panel-header {
  margin-bottom: 1.2rem;
  justify-content: flex-start;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.live-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.analytics-panel dl {
  margin: 0;
}

.analytics-panel dl div {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.analytics-panel dt {
  color: var(--muted);
}

.analytics-panel dd {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 900;
}

.mini-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 0.35rem;
  height: 8rem;
  margin-top: 1.2rem;
}

.mini-chart span {
  height: var(--h);
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--green), rgba(120, 213, 255, 0.36));
}

.badges span {
  align-self: flex-start;
  border: 1px solid rgba(57, 255, 20, 0.42);
  border-radius: 999px;
  color: var(--green);
  padding: 0.45rem 0.75rem;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.studio-section {
  width: 100%;
  padding-inline: max(1rem, calc((100% - 1180px) / 2));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--bg);
}

.studio-section .section-kicker {
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 8vw, 7rem);
}

.team-member {
  display: grid;
  justify-items: center;
  text-align: center;
}

.team-member img {
  width: min(100%, 230px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 1rem;
  background: #1b1f2a;
}

.team-copy h2 {
  margin-bottom: 0.2rem;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.team-role {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1;
}

.team-copy p:last-child {
  max-width: 520px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.45;
}

.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  padding: 2rem 0 3rem;
}

.footer-brand {
  margin-bottom: 0.2rem;
  color: var(--text) !important;
  font-weight: 900;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 1rem;
  }

  .nav-links {
    display: none;
  }

  .intro,
  .feature-grid,
  .feed-layout,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 5rem 0;
  }

  .section-heading-row,
  .team-member,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }

  .team-member {
    justify-items: start;
  }

  .team-member img {
    width: min(100%, 260px);
  }

  .team-copy h2 {
    white-space: normal;
  }

  .analytics-panel {
    position: relative;
    top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

