@font-face {
  font-family: "Benjamin Aurelius";
  src: url("assets/fonts/BenjaminAurelius-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #020305;
  --black-2: #07090d;
  --panel: rgba(13, 17, 22, 0.86);
  --panel-2: rgba(22, 27, 35, 0.78);
  --bone: #f7f0df;
  --muted: #a6adba;
  --dim: #6f7887;
  --gold: #e4bc66;
  --gold-2: #f6d88b;
  --cyan: #5de9ff;
  --green: #69f0ac;
  --pink: #ff5e91;
  --line: rgba(247, 240, 223, 0.14);
  --line-strong: rgba(93, 233, 255, 0.34);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 4%, rgba(93, 233, 255, 0.11), transparent 32%),
    linear-gradient(90deg, rgba(93, 233, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(247, 240, 223, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, #020305 0%, #08090d 48%, #020305 100%);
  background-size: auto, 64px 64px, 64px 64px, auto;
  color: var(--bone);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: var(--cyan);
  color: var(--black);
}

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

.signal-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.42;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 32px;
  background: rgba(2, 3, 5, 0.78);
  border-bottom: 1px solid rgba(93, 233, 255, 0.16);
  backdrop-filter: blur(18px);
}

.site-header.is-solid {
  background: rgba(2, 3, 5, 0.95);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  white-space: nowrap;
}

.brand-lockup span {
  color: var(--gold);
  font-family: "Benjamin Aurelius", Georgia, serif;
  font-size: 22px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(228, 188, 102, 0.34);
  border-radius: 6px;
  object-fit: cover;
  background: var(--black);
}

.nav-links {
  display: flex;
  gap: 22px;
  color: rgba(247, 240, 223, 0.7);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a,
.header-action,
.footer-links a,
.text-link {
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.nav-links a:hover,
.header-action:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--cyan);
}

.header-action {
  border: 1px solid rgba(93, 233, 255, 0.42);
  border-radius: 6px;
  padding: 11px 18px;
  color: var(--cyan);
  background: rgba(93, 233, 255, 0.06);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.section-inner {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.hero-section {
  padding: 34px 0 76px;
}

.hero-layout {
  min-height: calc(100vh - 132px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.78fr);
  gap: 22px;
  align-items: stretch;
}

.hero-copy,
.player-shell,
.release-card,
.usage-copy,
.signup-form,
.link-grid a,
.contact-list a,
.lane-grid div,
.legal-page {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(93, 233, 255, 0.06), rgba(228, 188, 102, 0.045)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 5vw, 64px);
  overflow: hidden;
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: 8%;
  width: 44%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(93, 233, 255, 0.52), transparent);
}

.hero-mark {
  width: 90px;
  height: 90px;
  margin-bottom: 34px;
  border: 1px solid rgba(228, 188, 102, 0.34);
  border-radius: 8px;
  object-fit: cover;
  background: var(--black);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--bone);
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  color: var(--bone);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  color: var(--bone);
  font-size: 20px;
  line-height: 1.1;
}

.lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(247, 240, 223, 0.84);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.35;
}

.hero-actions,
.player-actions,
.footer-inner,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 6px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.button:hover,
.release-card button:hover,
.link-grid a:hover,
.contact-list a:hover,
.filter-button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid rgba(93, 233, 255, 0.74);
  color: #031017;
  background: linear-gradient(135deg, var(--cyan), var(--green));
}

.button-secondary {
  border: 1px solid rgba(228, 188, 102, 0.58);
  color: var(--gold-2);
  background: rgba(228, 188, 102, 0.08);
}

.button-ghost {
  border: 1px solid rgba(255, 94, 145, 0.48);
  color: #ffc5d6;
  background: rgba(255, 94, 145, 0.08);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 42px;
}

.proof-grid div,
.track-stats span {
  border: 1px solid rgba(247, 240, 223, 0.12);
  border-radius: 7px;
  background: rgba(2, 3, 5, 0.5);
}

.proof-grid div {
  padding: 16px;
}

.proof-grid strong,
.lane-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: 24px;
  line-height: 1;
}

.proof-grid span,
.lane-grid span,
.release-body span,
.player-topline,
.track-stats,
.signup-legal,
.contact-list strong,
.legal-page p,
.legal-page li {
  color: rgba(247, 240, 223, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.player-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0;
  overflow: hidden;
}

.player-art-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.player-art-wrap img,
.release-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-art-wrap::after,
.release-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(2, 3, 5, 0.78));
  pointer-events: none;
}

.play-orb {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(93, 233, 255, 0.58);
  border-radius: 50%;
  background: rgba(2, 3, 5, 0.72);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.play-orb span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--cyan);
}

.player-content {
  padding: clamp(22px, 3vw, 34px);
}

.player-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-content h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4.4vw, 56px);
}

.player-content p,
.section-heading p,
.catalog-intro p,
.usage-copy p {
  color: rgba(247, 240, 223, 0.72);
  font-size: 16px;
  line-height: 1.62;
}

.meter {
  height: 84px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 7px;
  margin: 22px 0;
  padding: 14px;
  border: 1px solid rgba(247, 240, 223, 0.12);
  border-radius: 7px;
  background: rgba(2, 3, 5, 0.48);
}

.meter span {
  height: var(--h);
  min-height: 10px;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, var(--cyan), var(--gold));
  animation: wave 2.8s ease-in-out infinite;
  animation-delay: calc(var(--h) * -0.018);
}

@keyframes wave {
  0%, 100% {
    transform: scaleY(0.72);
    transform-origin: bottom;
  }

  50% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

.track-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.track-stats span {
  min-height: 52px;
  padding: 10px 12px;
}

.track-stats strong {
  color: var(--bone);
}

.embed-frame {
  border-top: 1px solid rgba(247, 240, 223, 0.12);
  background: #050608;
}

.embed-frame iframe {
  display: block;
  width: 100%;
  height: 166px;
  border: 0;
}

.new-section,
.catalog-section,
.usage-section,
.updates-section,
.links-section,
.contact-section {
  padding: 92px 0;
}

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

.section-heading h2 {
  margin-bottom: 12px;
}

.section-heading p {
  max-width: 680px;
  margin-bottom: 0;
}

.text-link {
  flex: 0 0 auto;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.release-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.release-card {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  transition: transform 170ms ease, border-color 170ms ease, opacity 170ms ease;
}

.release-card.is-active,
.release-card:hover {
  border-color: var(--line-strong);
}

.release-card.is-hidden {
  display: none;
}

.release-body {
  position: relative;
  z-index: 2;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(2, 3, 5, 0.88) 12%);
}

.release-body span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.release-body p {
  min-height: 68px;
  margin-bottom: 16px;
  color: rgba(247, 240, 223, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.release-card button,
.filter-button {
  border: 1px solid rgba(93, 233, 255, 0.36);
  border-radius: 6px;
  color: var(--cyan);
  background: rgba(93, 233, 255, 0.07);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.release-card button {
  min-height: 40px;
  padding: 0 14px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 22px;
  align-items: start;
}

.catalog-intro {
  padding-right: 24px;
}

.catalog-intro h2 {
  margin-bottom: 16px;
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.filter-button {
  min-height: 44px;
  padding: 0 16px;
}

.filter-button.is-active {
  border-color: rgba(228, 188, 102, 0.68);
  color: var(--gold-2);
  background: rgba(228, 188, 102, 0.1);
}

.lane-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.lane-grid div {
  padding: 18px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.usage-copy,
.signup-form {
  padding: clamp(22px, 4vw, 36px);
}

.note-line {
  color: var(--gold-2) !important;
}

.signup-form {
  display: grid;
  gap: 16px;
}

.signup-form label {
  display: grid;
  gap: 8px;
}

.signup-form label span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(247, 240, 223, 0.16);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--bone);
  background: rgba(2, 3, 5, 0.58);
  outline: none;
}

.signup-form input:focus,
.signup-form select:focus {
  border-color: var(--cyan);
}

.signup-legal {
  margin-bottom: 0;
}

.signup-legal a {
  color: var(--cyan);
}

.link-grid,
.contact-list {
  display: grid;
  gap: 10px;
}

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

.link-grid a,
.contact-list a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  color: var(--bone);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.link-grid a::after {
  content: "Open";
  color: var(--cyan);
  font-size: 11px;
}

.contact-list span {
  display: block;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-list strong {
  overflow-wrap: anywhere;
  font-weight: 700;
  text-transform: none;
}

.site-footer {
  border-top: 1px solid rgba(247, 240, 223, 0.12);
  padding: 28px 0;
  color: var(--dim);
  font-size: 13px;
}

.footer-inner {
  align-items: center;
  justify-content: space-between;
}

.legal-page {
  width: min(100% - 48px, 860px);
  margin: 76px auto;
  padding: clamp(24px, 4vw, 42px);
}

.legal-page h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.legal-page h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(24px, 4vw, 38px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1020px) {
  .site-header {
    flex-wrap: wrap;
    min-height: auto;
    padding: 16px 24px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-layout,
  .catalog-layout,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
  }

  .catalog-intro {
    padding-right: 0;
  }

  .filter-panel {
    justify-content: flex-start;
  }

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

@media (max-width: 720px) {
  .section-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero-section {
    padding-top: 16px;
  }

  .hero-copy {
    padding: 24px;
  }

  .proof-grid,
  .track-stats,
  .lane-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
    gap: 16px;
    align-items: start;
  }

  .release-wall {
    grid-template-columns: 1fr;
  }

  .release-card {
    min-height: 340px;
  }

  .new-section,
  .catalog-section,
  .usage-section,
  .updates-section,
  .links-section,
  .contact-section {
    padding: 64px 0;
  }

  .brand-lockup span {
    font-size: 19px;
  }

  .header-action {
    padding: 10px 14px;
  }
}
