:root {
  color-scheme: dark;
  --bg: #090d10;
  --panel: #11181d;
  --panel-2: #162027;
  --text: #f4f1ea;
  --muted: #aab5b6;
  --line: #26343b;
  --teal: #39c7bd;
  --teal-2: #188982;
  --coral: #ff7661;
  --gold: #ffc857;
  --max: 1120px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
  background: rgb(9 13 16 / 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  min-height: 64px;
  margin: 0 auto;
  padding: 0 22px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 64px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(9 13 16 / 0.98) 0%, rgb(9 13 16 / 0.84) 48%, rgb(9 13 16 / 0.38) 100%),
    url("assets/playpause-mark-transparent-v2.png") right 8vw center / min(58vw, 720px) no-repeat;
  opacity: 0.98;
}

.hero-inner {
  position: relative;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 88px 22px 116px;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  margin-top: 14px;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.08rem;
}

.lead {
  margin: 22px 0 0;
  max-width: 610px;
  color: #d8dfdd;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 8px;
  background: var(--teal);
  color: #061011;
  font-weight: 760;
  text-decoration: none;
}

.button.secondary {
  background: rgb(255 255 255 / 0.06);
  color: var(--text);
}

.store-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.band {
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px 22px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature {
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature .marker {
  width: 32px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 99px;
  background: var(--teal);
}

.feature:nth-child(2) .marker,
.feature:nth-child(5) .marker {
  background: var(--coral);
}

.feature:nth-child(3) .marker,
.feature:nth-child(6) .marker {
  background: var(--gold);
}

.feature p,
.legal-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: start;
}

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
  color: #dce4e1;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.legal-card {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  text-decoration: none;
}

.legal-card:hover {
  border-color: rgb(57 199 189 / 0.62);
}

.page {
  max-width: 860px;
  margin: 0 auto;
  padding: 74px 22px 96px;
}

.page h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.page .meta {
  margin: 16px 0 40px;
  color: var(--muted);
}

.prose {
  display: grid;
  gap: 28px;
}

.prose section {
  padding-bottom: 28px;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.prose h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

/* FAQ questions inside a prose section. */
.prose h3 {
  margin: 22px 0 6px;
  font-size: 1.06rem;
  font-weight: 600;
  color: #eef4f3;
}

.prose h3:first-of-type {
  margin-top: 14px;
}

.prose em {
  color: #eef4f3;
  font-style: normal;
  font-weight: 600;
}

.prose p,
.prose li {
  color: #c7d0cf;
}

.prose ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.site-footer {
  border-top: 1px solid rgb(255 255 255 / 0.08);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 22px;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
}

.attribution {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px 28px;
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

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

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgb(9 13 16 / 0.94) 0%, rgb(9 13 16 / 0.82) 54%, rgb(9 13 16 / 0.96) 100%),
      url("assets/playpause-mark-transparent-v2.png") center 28px / 86vw no-repeat;
  }

  .hero-inner {
    padding-top: 66vw;
    padding-bottom: 74px;
  }

  .grid,
  .split,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 18px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
