:root {
  color-scheme: dark;
  --ink: #f7f4fb;
  --muted: #b7afc2;
  --quiet: #82798f;
  --black: #05040d;
  --night: #0a0716;
  --navy: #071747;
  --panel: rgba(11, 8, 26, 0.84);
  --panel-solid: #0c091b;
  --line: rgba(255, 255, 255, 0.13);
  --magenta: #ef2db6;
  --magenta-deep: #7c0d60;
  --gold: #f4c84c;
  --gold-soft: #ffe596;
  --content: 1180px;
  --radius: 8px;
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family: "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #171009;
  background: var(--gold-soft);
  border-radius: 4px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  width: min(var(--content), calc(100% - 48px));
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
}

.brand-link img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
}

.site-nav a,
.site-footer a,
.legal-header a {
  transition: color 180ms var(--ease);
}

.site-nav a:hover,
.site-footer a:hover,
.legal-header a:hover {
  color: var(--gold-soft);
}

.hero {
  position: relative;
  min-height: min(900px, 90svh);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--night);
  background-image: url("/assets/stage-hero.jpg");
  background-position: center;
  background-size: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(2, 1, 10, 0.56);
}

.hero-content {
  width: min(820px, calc(100% - 40px));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 110px 0 54px;
  text-align: center;
}

.hero-logo {
  width: clamp(180px, 27vw, 320px);
  height: auto;
  margin-bottom: 18px;
  border-radius: 50%;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.46)) drop-shadow(0 0 20px rgba(239, 45, 182, 0.2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.hero h1,
.section-heading h2,
.privacy-band h2,
.closing h2,
.legal-hero h1 {
  margin: 0;
  font-weight: 700;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1;
}

.hero-lead {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(247, 244, 251, 0.76);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.58;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 650;
  transition: transform 180ms var(--ease), background-color 180ms var(--ease), border-color 180ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.98);
}

.button-primary {
  color: #1d0818;
  background: var(--gold);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34), 0 0 22px rgba(244, 200, 76, 0.16);
}

.button-primary:hover {
  background: var(--gold-soft);
}

.button-secondary {
  color: var(--ink);
  background: rgba(6, 4, 15, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button-secondary:hover {
  background: rgba(20, 13, 38, 0.76);
  border-color: rgba(255, 255, 255, 0.46);
}

.platform-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.fact-band {
  min-height: 110px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(244, 200, 76, 0.2);
  border-bottom: 1px solid var(--line);
  background: #080611;
}

.fact-band > div {
  display: grid;
  place-content: center;
  gap: 3px;
  padding: 22px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.fact-band > div:last-child {
  border-right: 0;
}

.fact-band strong {
  color: var(--gold-soft);
  font-size: 18px;
  font-weight: 650;
}

.fact-band span {
  color: var(--quiet);
  font-size: 11px;
}

.section {
  padding: 116px 28px;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.section-heading-left {
  width: min(var(--content), 100%);
  text-align: left;
}

.section-heading h2,
.privacy-band h2,
.closing h2 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.07;
}

.section-heading > p:last-child,
.privacy-band > div > p:last-child,
.closing > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.section-heading > p:last-child {
  max-width: 690px;
  margin: 22px auto 0;
}

.screens {
  width: min(1000px, 100%);
  display: grid;
  grid-template-columns: 0.86fr 1fr 0.86fr;
  align-items: end;
  gap: clamp(18px, 4vw, 48px);
  margin: 72px auto 0;
}

.screen {
  margin: 0;
}

.screen img {
  width: 100%;
  aspect-ratio: 0.46;
  object-fit: cover;
  object-position: top;
  border: 7px solid #17131f;
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.screen-side {
  padding-bottom: 28px;
}

.screen-side img {
  opacity: 0.76;
}

.screen figcaption {
  display: grid;
  gap: 4px;
  padding: 20px 4px 0;
  text-align: center;
}

.screen figcaption strong {
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 600;
}

.screen figcaption span {
  color: var(--quiet);
  font-size: 12px;
  line-height: 1.45;
}

.section-features {
  background: #f3f1f5;
  color: #17121d;
}

.section-features .eyebrow {
  color: #7b245f;
}

.feature-grid {
  width: min(var(--content), 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 62px auto 0;
  border-top: 1px solid rgba(23, 18, 29, 0.18);
  border-left: 1px solid rgba(23, 18, 29, 0.18);
}

.feature {
  min-height: 240px;
  padding: 30px;
  border-right: 1px solid rgba(23, 18, 29, 0.18);
  border-bottom: 1px solid rgba(23, 18, 29, 0.18);
}

.feature-index {
  color: #9b2877;
  font-size: 12px;
  font-weight: 700;
}

.feature h3 {
  margin: 46px 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.feature p {
  margin: 0;
  color: #67606e;
  font-size: 14px;
  line-height: 1.65;
}

.privacy-band {
  width: min(var(--content), calc(100% - 56px));
  min-height: 380px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  margin: 0 auto;
  padding: 94px 0;
}

.privacy-band > div {
  max-width: 760px;
}

.privacy-band > div > p:last-child {
  max-width: 660px;
  margin: 22px 0 0;
}

.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.text-link span {
  transition: transform 180ms var(--ease);
}

.text-link:hover span {
  transform: translateX(4px);
}

.closing {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 88px 28px;
  text-align: center;
  background-color: #0a0615;
  background-image: url("/assets/stage-hero.jpg");
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
}

.closing img {
  width: 146px;
  margin-bottom: 24px;
  border-radius: 50%;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.46));
}

.closing > p:not(.eyebrow) {
  max-width: 580px;
  margin: 20px 0 28px;
}

.site-footer {
  width: min(var(--content), calc(100% - 48px));
  min-height: 168px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px 42px;
  margin: 0 auto;
  padding: 42px 0;
}

.site-footer > div {
  display: grid;
  gap: 5px;
}

.site-footer strong {
  font-size: 15px;
}

.site-footer span,
.site-footer p,
.site-footer nav {
  color: var(--quiet);
  font-size: 11px;
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  line-height: 1.55;
}

/* Legal and support pages */
.legal-body {
  min-height: 100vh;
  background: #f4f2f5;
  color: #17121d;
}

.legal-body .site-header {
  position: relative;
  color: var(--ink);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.legal-top {
  color: var(--ink);
  background-color: var(--night);
  background-image: url("/assets/stage-hero.jpg");
  background-position: center 42%;
  background-size: cover;
  box-shadow: inset 0 0 0 100vw rgba(2, 1, 10, 0.66);
}

.legal-top .brand-link img {
  box-shadow: none;
}

.legal-hero {
  width: min(880px, calc(100% - 48px));
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
  padding: 74px 0 68px;
}

.legal-hero h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.03;
}

.legal-hero p:last-child {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(247, 244, 251, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.legal-document {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0 110px;
}

.legal-document section {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 48px;
  padding: 34px 0;
  border-top: 1px solid rgba(23, 18, 29, 0.17);
}

.legal-document section:last-child {
  border-bottom: 1px solid rgba(23, 18, 29, 0.17);
}

.legal-document h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.legal-copy > :first-child {
  margin-top: 0;
}

.legal-copy > :last-child {
  margin-bottom: 0;
}

.legal-copy p,
.legal-copy li {
  color: #5f5866;
  font-size: 15px;
  line-height: 1.75;
}

.legal-copy a {
  color: #7d145f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 54px;
  padding: 26px 28px;
  color: var(--ink);
  background: var(--panel-solid);
  border: 1px solid rgba(239, 45, 182, 0.34);
  border-radius: var(--radius);
}

.contact-panel span {
  display: grid;
  gap: 4px;
}

.contact-panel small {
  color: var(--quiet);
  font-size: 12px;
}

.contact-panel a {
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 600;
}

.legal-body .site-footer {
  color: var(--ink);
  border-top: 1px solid rgba(23, 18, 29, 0.13);
}

.legal-body .site-footer span,
.legal-body .site-footer p,
.legal-body .site-footer nav {
  color: #6d6674;
}

.legal-body .site-footer strong {
  color: #17121d;
}

.legal-body .site-footer p {
  border-top-color: rgba(23, 18, 29, 0.13);
}

@media (max-width: 800px) {
  .site-header {
    width: min(100% - 32px, var(--content));
    min-height: 72px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-body .site-nav a:nth-child(2) {
    display: none;
  }

  .brand-link span {
    display: none;
  }

  .hero {
    min-height: 86svh;
    background-position: center;
  }

  .hero-content {
    padding-top: 96px;
  }

  .fact-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-band > div:nth-child(2) {
    border-right: 0;
  }

  .fact-band > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 84px 20px;
  }

  .screens {
    width: min(560px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
    margin-top: 52px;
  }

  .screen-focus {
    grid-column: 1 / -1;
    grid-row: 1;
    width: min(72%, 330px);
    justify-self: center;
  }

  .screen-side {
    padding-bottom: 0;
  }

  .screen-side img {
    opacity: 1;
  }

  .screen img {
    border-width: 5px;
    border-radius: 24px;
  }

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

  .privacy-band {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    padding: 76px 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 36px 0;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .legal-document section {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .site-body .site-nav a:first-child {
    display: none;
  }

  .site-nav {
    gap: 14px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-logo {
    width: min(56vw, 220px);
  }

  .hero-actions {
    width: min(340px, 100%);
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .feature {
    min-height: 210px;
  }

  .screens {
    gap: 24px 10px;
  }

  .screen-focus {
    width: min(82%, 320px);
  }

  .screen figcaption span {
    display: none;
  }

  .closing {
    min-height: 560px;
  }

  .legal-hero,
  .legal-document,
  .site-footer {
    width: calc(100% - 36px);
  }

  .legal-hero {
    min-height: 310px;
    padding-bottom: 54px;
  }

  .legal-document {
    padding: 62px 0 84px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
