:root {
  --bg: #09090b;
  --surface: #111116;
  --surface-soft: #16161d;
  --text: #f7f4ee;
  --muted: #aaa7a0;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #e1ba72;
  --accent-soft: rgba(225, 186, 114, 0.15);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--text);
  color: var(--bg);
  padding: .75rem 1rem;
  border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem max(1.25rem, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(9, 9, 11, .84);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .13em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: .72rem;
}
.brand-name { font-size: .9rem; }
.site-nav { display: flex; gap: 1.5rem; }
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: .9rem;
  transition: color .2s ease;
}
.site-nav a:hover, .site-nav a:focus { color: var(--text); }
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: .55rem .85rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 8rem 1.25rem 4rem;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  z-index: -1;
  background: linear-gradient(transparent, var(--bg));
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}
.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
}
.hero-glow-one {
  width: 38rem;
  height: 38rem;
  background: rgba(132, 67, 255, .24);
  top: 12%;
  left: -12rem;
}
.hero-glow-two {
  width: 32rem;
  height: 32rem;
  background: rgba(225, 186, 114, .2);
  right: -8rem;
  bottom: 8%;
}
.hero-content {
  width: min(100%, 980px);
  text-align: center;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-size: clamp(5rem, 18vw, 13rem);
  line-height: .82;
  letter-spacing: -.07em;
  font-weight: 900;
  text-shadow: 0 15px 70px rgba(0, 0, 0, .45);
}
.hero-copy {
  max-width: 680px;
  margin: 2rem auto 0;
  color: #d7d3ca;
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: .85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover, .button:focus { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #17120a; }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.035); }
.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 7rem 1.25rem;
}
.section-heading { max-width: 800px; margin-bottom: 3rem; }
.section h2 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: .98;
  letter-spacing: -.05em;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}
.about-copy { color: #c8c5be; font-size: 1.05rem; }
.about-copy .lead { color: var(--text); font-size: clamp(1.35rem, 2.8vw, 2rem); line-height: 1.35; }
.quick-facts {
  border-top: 1px solid var(--line);
}
.quick-facts div {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.quick-facts span { color: var(--muted); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.quick-facts strong { font-size: 1.05rem; }

.release-grid { display: grid; gap: 1rem; }
.release-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: 1.25rem;
}
.release-number { color: var(--accent); font-weight: 900; font-size: 1.1rem; }
.release-label { margin: 0 0 .35rem; color: var(--muted); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; }
.release-card h3 { margin: 0; font-size: clamp(1.8rem, 4vw, 3.2rem); letter-spacing: -.04em; }
.release-card p:not(.release-label) { max-width: 680px; margin-bottom: 0; color: var(--muted); }
.status {
  padding: .45rem .7rem;
  background: var(--accent-soft);
  border: 1px solid rgba(225, 186, 114, .28);
  border-radius: 999px;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
.section-note { color: var(--muted); }

.video-shell {
  max-width: 520px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: var(--surface);
  box-shadow: 0 35px 100px rgba(0,0,0,.4);
}
.video-shell iframe {
  display: block;
  width: 100%;
  min-height: 750px;
  border: 0;
  background: #fff;
}
.video-fallback { text-align: center; color: var(--muted); margin-top: 1.25rem; }
.text-link { color: var(--text); font-weight: 750; text-underline-offset: .3em; }

.quote-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 7vw, 5rem);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(225,186,114,.2), transparent 28%),
    linear-gradient(145deg, var(--surface-soft), #0d0d11);
}
.quote-card blockquote {
  max-width: 900px;
  margin: 0 0 1.2rem;
  font-size: clamp(2rem, 5.2vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 800;
}
.quote-card span { color: var(--muted); }

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: var(--surface);
}
.contact-card p:not(.eyebrow) { max-width: 600px; color: var(--muted); }
.contact-actions { justify-content: flex-end; margin: 0; }

.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: .85rem;
}
.site-footer a { text-decoration: none; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 800px) {
  .menu-button { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + .5rem);
    right: 1rem;
    display: none;
    width: min(260px, calc(100vw - 2rem));
    flex-direction: column;
    gap: 0;
    padding: .6rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(17, 17, 22, .98);
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .85rem; }
  .about-grid, .contact-card { grid-template-columns: 1fr; }
  .release-card { grid-template-columns: auto 1fr; }
  .release-card .status { grid-column: 2; justify-self: start; }
  .contact-actions { justify-content: flex-start; }
  .video-shell iframe { min-height: 690px; }
}

@media (max-width: 520px) {
  .brand-name { display: none; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .button { width: 100%; }
  .section { padding-block: 5rem; }
  .release-card { gap: 1rem; }
  .video-shell iframe { min-height: 620px; }
  .site-footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
