:root {
  --bg: #09090b;
  --surface: #111114;
  --surface-2: #18181c;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --accent: #818cf8;
  --accent-soft: rgba(129, 140, 248, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1080px;
  --max-home: 1360px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 0% -10%, rgba(129, 140, 248, 0.12), transparent 55%),
    radial-gradient(900px 600px at 100% 0%, rgba(56, 189, 248, 0.08), transparent 50%),
    var(--bg);
  line-height: 1.6;
}

.home-body {
  background:
    radial-gradient(1400px 900px at 15% 0%, rgba(129, 140, 248, 0.18), transparent 58%),
    radial-gradient(1100px 800px at 85% 10%, rgba(56, 189, 248, 0.12), transparent 55%),
    radial-gradient(900px 700px at 50% 100%, rgba(255, 255, 255, 0.04), transparent 60%),
    var(--bg);
}

a {
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

.page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 48px;
}

.page--home {
  width: min(var(--max-home), calc(100% - 48px));
  padding: 40px 0 64px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.site-header--home {
  margin-bottom: 48px;
}

.logo {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}

.logo--large {
  font-size: 0.95rem;
  letter-spacing: 0.22em;
}

.logo strong {
  color: var(--text);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-link:hover {
  border-color: var(--border-hover);
  background: var(--surface-2);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 12px 0 20px;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  min-height: min(78vh, 820px);
  margin-bottom: 48px;
}

.hero-copy {
  display: grid;
  gap: 14px;
  text-align: center;
}

.hero-copy--large {
  gap: 22px;
  text-align: left;
  align-self: center;
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow--large {
  font-size: 0.92rem;
  letter-spacing: 0.28em;
}

.hero-title {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero-title--xl {
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.hero-text {
  margin: 0 auto;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1rem;
}

.hero-text--large {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
  color: #c4c4cc;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid rgba(129, 140, 248, 0.35);
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.22), rgba(56, 189, 248, 0.12));
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(129, 140, 248, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(129, 140, 248, 0.55);
  box-shadow: 0 24px 60px rgba(129, 140, 248, 0.24);
}

.hero-card {
  position: relative;
  display: block;
  width: min(420px, 100%);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-card--xl {
  width: 100%;
  max-width: none;
  min-height: min(72vh, 760px);
  border-radius: 32px;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.55);
}

.hero-card--xl:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 48px 140px rgba(0, 0, 0, 0.62),
    0 0 80px rgba(129, 140, 248, 0.12);
}

.hero-card__glow {
  position: absolute;
  inset: 10% 8% auto;
  height: 55%;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.28), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-card--xl img {
  width: 100%;
  height: 100%;
  min-height: min(72vh, 760px);
  aspect-ratio: auto;
  object-fit: cover;
}

.hero-card__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
}

.hero-card--xl .hero-card__overlay {
  padding: 28px 32px;
}

.hero-card__label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card--xl .hero-card__label {
  font-size: 1rem;
  letter-spacing: 0.16em;
}

.panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(17, 17, 20, 0.82);
  backdrop-filter: blur(12px);
}

.panel--wide {
  padding: clamp(28px, 4vw, 40px);
  font-size: 1.02rem;
}

.panel--wide p {
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.75;
}

.info-section {
  display: grid;
  gap: 28px;
  margin-top: 12px;
  padding: clamp(32px, 5vw, 48px);
  border-radius: 32px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(24, 24, 28, 0.92), rgba(17, 17, 20, 0.88));
  box-shadow: var(--shadow);
}

.info-section__head {
  display: grid;
  gap: 10px;
  max-width: 640px;
}

.info-section__title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(129, 140, 248, 0.28);
  background: rgba(129, 140, 248, 0.05);
}

.info-card__num {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.info-card h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.info-card p {
  margin: 0;
  color: #c4c4cc;
  font-size: 0.98rem;
  line-height: 1.7;
}

.info-note {
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #a1a1aa;
  font-size: 0.92rem;
  line-height: 1.6;
}

.info-note strong {
  color: #d4d4d8;
}

.site-footer {
  display: grid;
  gap: 18px;
  margin-top: 36px;
  padding-bottom: 12px;
  text-align: center;
}

.site-footer__line {
  width: min(240px, 60%);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.site-footer p {
  margin: 0;
  color: #71717a;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel p {
  margin: 0.65rem 0 0;
  color: #d4d4d8;
  font-size: 0.95rem;
}

.panel p:first-child {
  margin-top: 0;
}

.disclaimer {
  margin-top: 8px;
  color: #71717a !important;
  font-size: 0.82rem !important;
}

.footer {
  margin-top: 28px;
  text-align: center;
  color: #71717a;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.page-heading h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
}

.page-heading p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

.browse-body {
  background:
    radial-gradient(1400px 900px at 20% 0%, rgba(129, 140, 248, 0.16), transparent 58%),
    radial-gradient(1100px 800px at 80% 10%, rgba(56, 189, 248, 0.1), transparent 55%),
    var(--bg);
}

.page--browse {
  width: min(1180px, calc(100% - 48px));
  min-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0 56px;
}

.browse-hero {
  display: grid;
  gap: 14px;
  margin-bottom: 40px;
  text-align: center;
  justify-items: center;
}

.browse-hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.browse-hero__text {
  margin: 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
}

.browse-hero__stats {
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.choice-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.choice-card__count {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.choice-card__meta h2 {
  margin: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.choice-grid--large {
  gap: 24px;
}

.choice-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  min-height: 280px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.choice-card--feature {
  padding: 0;
  min-height: auto;
  overflow: hidden;
  border-radius: 28px;
}

.choice-card--feature:hover {
  transform: translateY(-6px);
  border-color: rgba(129, 140, 248, 0.4);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(129, 140, 248, 0.1);
}

.choice-card__preview {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0c;
}

.choice-card__preview img,
.choice-card__preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.choice-card--feature:hover .choice-card__preview img,
.choice-card--feature:hover .choice-card__preview video {
  transform: scale(1.04);
}

.choice-card__preview--video video {
  filter: brightness(0.72);
}

.choice-card__preview-video {
  display: block;
  pointer-events: none;
}

.choice-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.choice-card__play svg {
  width: 56px;
  height: 56px;
  padding: 16px;
  border-radius: 50%;
  fill: rgba(255, 255, 255, 0.95);
  background: rgba(129, 140, 248, 0.35);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.choice-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 9, 11, 0.72);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.choice-card__body {
  display: grid;
  gap: 10px;
  padding: 22px 24px 26px;
}

.choice-card--feature .choice-card__body h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
}

.choice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(129, 140, 248, 0.35);
  background: linear-gradient(180deg, rgba(129, 140, 248, 0.08), var(--surface));
}

.choice-card--feature:hover {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
}

.choice-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.35rem;
}

.choice-card h2 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.choice-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.choice-card__cta {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.media-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #101014;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.media-item::after {
  content: "View";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(9, 9, 11, 0.45);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 180ms ease;
}

.media-item:hover {
  transform: scale(1.02);
  border-color: rgba(129, 140, 248, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.media-item:hover::after {
  opacity: 1;
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #101014;
  pointer-events: none;
}

.media-item--gif img {
  object-fit: contain;
}

.gallery-body {
  background:
    radial-gradient(1400px 900px at 10% 0%, rgba(129, 140, 248, 0.1), transparent 58%),
    radial-gradient(1100px 800px at 90% 5%, rgba(56, 189, 248, 0.06), transparent 55%),
    var(--bg);
}

.page--gallery {
  width: min(1400px, calc(100% - 32px));
  padding: 32px 0 64px;
}

.gallery-hero {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.gallery-hero__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.gallery-hero__count {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gallery-hero__title {
  margin: 6px 0 0;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.gallery-hero__text {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.gallery-hero__line {
  height: 1px;
  background: linear-gradient(90deg, rgba(129, 140, 248, 0.35), rgba(255, 255, 255, 0.08), transparent);
}

@media (max-width: 640px) {
  .gallery-hero__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px 72px;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__img {
  max-width: min(96vw, 1400px);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65);
}

.lightbox__count {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 17, 20, 0.78);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(17, 17, 20, 0.82);
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.lightbox__nav:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(129, 140, 248, 0.4);
}

.lightbox__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.lightbox__nav--prev {
  left: 20px;
}

.lightbox__nav--next {
  right: 20px;
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(17, 17, 20, 0.82);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .lightbox {
    padding: 64px 16px 24px;
  }

  .lightbox__nav {
    top: auto;
    bottom: 24px;
    transform: none;
  }

  .lightbox__nav--prev {
    left: 24px;
  }

  .lightbox__nav--next {
    right: 24px;
  }
}

.video-grid {
  display: grid;
  gap: 22px;
}

.video-card {
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.video-card h2 {
  margin: 0 0 12px;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.video-card video {
  width: 100%;
  border-radius: calc(var(--radius) - 4px);
  background: #000;
}

.section-label {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 960px) {
  .page--browse {
    min-height: auto;
    justify-content: flex-start;
  }

  .browse-hero {
    margin-bottom: 28px;
  }

  .gallery-hero {
    margin-bottom: 24px;
  }

  .choice-grid,
  .choice-grid--large {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 32px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy--large {
    text-align: center;
    justify-items: center;
  }

  .hero-title--xl {
    max-width: none;
  }

  .hero-text--large {
    max-width: 52ch;
  }

  .hero-card--xl {
    min-height: 420px;
  }

  .hero-card--xl img {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero,
  .hero-stage,
  .browse-hero,
  .gallery-hero,
  .choice-grid--large,
  .info-section,
  .choice-grid,
  .media-grid,
  .video-grid {
    animation: fadeUp 420ms ease-out both;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
