:root {
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #100d0b;
  color: #f6eee5;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(186, 117, 61, .22), transparent 42rem),
    linear-gradient(180deg, #17110d, #0e0b09);
}
main {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 56px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}
.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0,0,0,.34);
}

.brand {
  letter-spacing: .08em;
  font-size: 14px;
  opacity: .72;
}
h1 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 8vw, 60px);
  line-height: 1.04;
}
.lead {
  font-size: clamp(18px, 4vw, 23px);
  line-height: 1.55;
  color: #ead9c8;
}
.card {
  margin-top: 34px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.description {
  white-space: pre-wrap;
  line-height: 1.8;
  color: #e9ded3;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
a {
  color: #ffc88f;
  text-decoration: none;
}
a:hover { text-decoration: underline; }
footer {
  margin-top: 44px;
  font-size: 13px;
  opacity: .62;
}

h2 {
  margin: 28px 0 10px;
  font-size: 22px;
  line-height: 1.25;
}
.card h2:first-child,
.card article:first-child h2 {
  margin-top: 0;
}
.card p {
  line-height: 1.75;
  color: #e9ded3;
}
.card p + p {
  margin-top: 12px;
}
.support-grid article + article,
.policy h2:not(:first-child) {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 24px;
  margin-top: 24px;
}
.contact-link {
  display: inline-block;
  overflow-wrap: anywhere;
  font-weight: 700;
}
.updated {
  margin-top: 30px !important;
  font-size: 13px;
  opacity: .68;
}
