:root {
  --bg: #0e0e0e;
  --panel: #141414;
  --panel-2: #1b1b1b;
  --panel-3: #222222;
  --text: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.68);
  --faint: rgba(245, 245, 245, 0.12);
  --accent: #ccff00;
  --accent-text: #101100;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --max: 1180px;
  --nav-h: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(204, 255, 0, 0.09), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(204, 255, 0, 0.08), transparent 20%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.page {
  overflow-x: clip;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 10, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand__wordmark {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--accent);
  font-style: italic;
}

.brand__tag {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  color: rgba(245, 245, 245, 0.72);
  text-transform: uppercase;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  transition: color 180ms ease;
}

.nav__links a:hover {
  color: var(--accent);
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--solid {
  background: var(--accent);
  color: var(--accent-text);
  box-shadow: 0 10px 30px rgba(204, 255, 0, 0.16);
}

.btn--solid:hover {
  box-shadow: 0 0 0 1px rgba(204, 255, 0, 0.2), 0 14px 34px rgba(204, 255, 0, 0.18);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding-top: var(--nav-h);
  background:
    linear-gradient(to top, rgba(14, 14, 14, 0.96) 0%, rgba(14, 14, 14, 0.7) 38%, rgba(14, 14, 14, 0.3) 100%),
    url("https://lh3.googleusercontent.com/aida-public/AB6AXuAq7CDxz2UsQzRIHltyF_44V532VUqpytzwCpdV546u4DfZlZo6gRGEt9I-Pjevnet-KNYLCePvQF4lvRYASzrXg5DbwON48TWgrBKBXADOxaQD4tr-qUVqOcZuHM0GU8hpInGlAoxTgOn74f-gIftntk0-UMM54Jc57PXMaKmoKF421RyS1QEH2_xFaYNka_DBkEwqH7F4kDg733AWNvyLLqn23vwT3ChbbccDhXiupVnXUfBNLgNoJsoTb7gRXGuqsarRfJDvImwU") center/cover no-repeat;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 82px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(204, 255, 0, 0.92);
  color: #0b0b0b;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  max-width: 10ch;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(4rem, 11vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  font-style: italic;
}

.hero__title span {
  color: var(--accent);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.hero__play {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(245, 245, 245, 0.94);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero__play-icon {
  min-width: 54px;
  min-height: 54px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(204, 255, 0, 0.6);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.hero__side {
  position: absolute;
  right: -56px;
  bottom: 120px;
  color: rgba(255, 255, 255, 0.07);
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(4.8rem, 10vw, 9.4rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right bottom;
  pointer-events: none;
  user-select: none;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(0, 0, 0, 0.25);
  background: var(--accent);
  color: #111;
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 16px 0;
  animation: marquee 28s linear infinite;
}

.marquee__item {
  white-space: nowrap;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 96px 0;
}

.section--compact {
  padding: 72px 0;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 38px;
}

.section__title {
  margin: 0;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  font-style: italic;
}

.section__copy {
  max-width: 54ch;
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

.section__badge {
  color: var(--accent);
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  font-style: italic;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  min-height: 760px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 100%;
}

.card--wide {
  grid-column: span 2;
}

.card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.06));
}

.card__body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
}

.card__body--center {
  justify-content: center;
}

.card__kicker {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.card__title {
  margin: 0;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.3vw, 2.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.05em;
}

.card__title--large {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.card__text {
  margin: 14px 0 0;
  color: var(--muted);
}

.card--stat {
  background: linear-gradient(180deg, #202020 0%, #141414 100%);
}

.card--stat .card__body {
  justify-content: space-between;
}

.card__icon {
  align-self: flex-start;
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(204, 255, 0, 0.08);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.story-list {
  display: grid;
  gap: 54px;
}

.story {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.story--reverse {
  grid-template-columns: 0.9fr 1.2fr;
}

.story__visual {
  position: relative;
}

.story__number {
  position: absolute;
  top: -42px;
  left: 0;
  color: rgba(255, 255, 255, 0.07);
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(7rem, 18vw, 12rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.story__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-inline: 36px;
}

.story__photo {
  overflow: hidden;
  border-radius: 24px;
  background: var(--panel-2);
  box-shadow: var(--shadow);
}

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

.story__photo--offset {
  transform: translateY(42px);
}

.story__photo--tall {
  aspect-ratio: 3 / 4;
}

.story__meta {
  padding-inline: 4px;
}

.story__name {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 800;
}

.story__quote {
  margin: 0 0 22px;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 0.98;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.06em;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics__label {
  margin: 0 0 6px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.metrics__value {
  margin: 0;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #0f0f0f;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 760px;
  height: 760px;
  translate: -50% -50%;
  border-radius: 50%;
  background: rgba(204, 255, 0, 0.18);
  filter: blur(110px);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.cta__title {
  margin: 0 0 28px;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  font-style: italic;
}

.cta__title span {
  color: var(--accent);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer {
  padding: 40px 0 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0a;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.footer__links {
  display: grid;
  gap: 14px;
}

.footer__links a,
.footer__social a {
  color: rgba(245, 245, 245, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  transition: color 180ms ease;
}

.footer__links a:hover,
.footer__social a:hover {
  color: var(--accent);
}

.footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.footer__copy {
  margin: 18px 0 0;
  color: rgba(245, 245, 245, 0.26);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

@media (max-width: 1080px) {
  .nav__links {
    display: none;
  }

  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story,
  .story--reverse,
  .footer__grid,
  .section__head {
    grid-template-columns: 1fr;
    display: grid;
  }

  .story__photos {
    padding-inline: 0;
  }

  .footer__social {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .nav__inner {
    gap: 12px;
  }

  .brand__wordmark {
    font-size: 1.1rem;
  }

  .btn {
    padding: 12px 18px;
    font-size: 0.75rem;
  }

  .hero__inner,
  .section,
  .section--compact {
    padding-block: 64px;
  }

  .hero__side {
    display: none;
  }

  .hero__title {
    max-width: 8ch;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .card--large,
  .card--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .story__photos {
    gap: 12px;
  }

  .story__photo--offset {
    transform: translateY(28px);
  }

  .metrics {
    gap: 14px;
  }
}
