:root {
  color-scheme: dark;
  --ink: #050607;
  --charcoal: #101317;
  --iron: #8f8a81;
  --paper: #f3eadc;
  --muted: #b9ada0;
  --ember: #ff2718;
  --ember-hot: #ff6658;
  --gold: #e0b86c;
  --line: rgba(226, 214, 196, 0.22);
  --focus: #8fd3ff;
  --panel: rgba(10, 12, 15, 0.72);
  font-family: "Trebuchet MS", "Aptos", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ink);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(145deg, #050607 0%, #12161b 48%, #090607 100%);
  background-size: 4.5rem 4.5rem, 4.5rem 4.5rem, auto;
}

a {
  color: var(--gold);
  text-underline-offset: 0.18em;
}

a:hover {
  color: #ffe0a3;
}

a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 5px;
}

.launch-shell {
  min-height: 100vh;
}

.launch-hero {
  display: grid;
  grid-template-columns: minmax(17rem, 0.9fr) minmax(18rem, 0.78fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 5rem);
  width: min(100% - 2rem, 72rem);
  min-height: 92svh;
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 4rem) 0;
}

.studio-mark,
.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.studio-mark {
  position: fixed;
  top: 1.2rem;
  left: 1.25rem;
  z-index: 2;
}

.sigil {
  width: min(100%, 41rem);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 0 1.4rem rgba(255, 39, 24, 0.36));
}

.launch-copy {
  max-width: 33rem;
}

h1 {
  margin: 0.45rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 9vw, 6.6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

.subtitle {
  margin: 1.35rem 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.store-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  font-weight: 800;
  text-decoration: none;
}

.store-link {
  color: #150706;
  background: linear-gradient(135deg, var(--ember-hot), var(--ember) 48%, var(--gold));
  border-color: rgba(255, 102, 88, 0.7);
  box-shadow: 0 0 2rem rgba(255, 39, 24, 0.22);
}

.store-link:hover {
  color: #150706;
}

.text-link {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.035);
}

.policy-page {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #0d1014;
  background-size: 4rem 4rem, 4rem 4rem, auto;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 0.75rem 1rem;
  color: #091017;
  background: var(--focus);
  transform: translateY(-120%);
}

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

.policy-page main {
  width: min(100% - 2rem, 52rem);
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 5.5rem) 0 4rem;
}

.policy-page header {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.policy-page h1,
.policy-page h2 {
  line-height: 1.2;
  text-wrap: balance;
}

.policy-page h1 {
  font-size: clamp(2rem, 8vw, 3.4rem);
  line-height: 1.05;
}

.policy-page h2 {
  margin: 2.5rem 0 0.8rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.policy-page p,
.policy-page ul {
  max-width: 72ch;
}

.policy-page ul {
  padding-left: 1.4rem;
}

.policy-page li + li {
  margin-top: 0.45rem;
}

.effective-date {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.summary {
  margin: 2rem 0 0;
  padding: 1.2rem 1.3rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 0.35rem solid var(--ember);
  border-radius: 0.45rem;
}

.summary strong {
  color: #fff7e8;
}

footer {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0.25rem 0;
}

@media (max-width: 760px) {
  .launch-hero {
    grid-template-columns: 1fr;
    align-content: center;
    min-height: auto;
    padding: 5rem 0 3rem;
  }

  .sigil {
    width: min(100%, 26rem);
    margin: 0 auto;
  }

  .launch-copy {
    max-width: none;
  }

  .launch-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media print {
  :root {
    color-scheme: light;
    --ink: #fff;
    --charcoal: #fff;
    --paper: #111;
    --muted: #444;
    --gold: #5d3b00;
    --ember: #5d3b00;
    --line: #aaa;
    --panel: #f4f4f4;
  }

  body,
  .policy-page {
    background: #fff;
  }

  .policy-page main {
    width: 100%;
    padding: 0;
  }

  .launch-actions,
  .studio-mark,
  .sigil {
    display: none;
  }

  a {
    color: inherit;
  }
}
