:root {
  --bg: #050607;
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.08);
  --text: #f5f5f5;
  --muted: #a7b0ba;
  --accent: linear-gradient(120deg, #ff7a18, #af002d 70%, #319197);
  --accent-solid: #ff7a18;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, rgba(30, 36, 44, 0.9), var(--bg));
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

main {
  padding: 120px 7vw 80px;
}

.section-heading {
  margin-bottom: 2.5rem;
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 0.6rem;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6vw;
  background: rgba(5, 6, 7, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.site-header nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.pill-cta {
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  background-image: var(--accent);
  color: #050607;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.hero-media {
  background: var(--card);
  border-radius: 28px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-frame {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.hero-slide__image {
  height: 360px;
  background-size: cover;
  background-position: center;
  transition: background-image 0.6s ease;
}

.hero-slide__meta {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  padding: 0.6rem 1rem;
  background: rgba(5, 6, 7, 0.7);
  border-radius: 12px;
  font-size: 0.85rem;
}

.hero-copy .lede {
  color: var(--muted);
  max-width: 560px;
}

.hero-stats {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.hero-stats li {
  flex: 1 1 140px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.01);
}

.stat {
  font-size: 2.2rem;
  font-weight: 600;
  display: block;
}

.hero-controls {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.progress {
  flex: 1;
  height: 2px;
  background: var(--border);
  position: relative;
}

.progress span {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-image: var(--accent);
  width: 0;
  transition: width 0.3s ease;
}

.facets {
  margin-bottom: 5rem;
}

.facet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.facet-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  min-height: 320px;
}

.facet-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.timeline-marquee {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.timeline-track {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  animation: scroll 25s linear infinite;
  will-change: transform;
}

.timeline-card {
  padding: 1rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  font-weight: 500;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.stories {
  margin: 5rem 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.chip.active {
  background-image: var(--accent);
  color: #050607;
  border-color: transparent;
}

.story-grid {
  columns: 3;
  column-gap: 1rem;
}

.story {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
}

.story img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.story figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.story.is-video .play {
  position: absolute;
  inset: 0;
  margin: auto;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(5, 6, 7, 0.6);
  backdrop-filter: blur(4px);
  color: var(--text);
  cursor: pointer;
}

.story.hidden {
  display: none;
}

.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 5rem;
  align-items: center;
  justify-content: center;
}

.brand-chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-media img {
  border-radius: 28px;
  border: 1px solid var(--border);
}

.role-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.role-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.contact {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 6vw 2.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    gap: 1rem;
  }

  .story-grid {
    columns: 2;
  }
}

@media (max-width: 600px) {
  main {
    padding: 100px 5vw;
  }

  .site-header nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
  }

  .story-grid {
    columns: 1;
  }

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