:root {
  --bg0: #090D15;
  --bg1: #111622;
  --bg2: #19202A;
  --bg3: #222935;
  --hairline: rgba(34, 41, 53, 0.6);
  --text1: #F9F5EC;
  --text2: #B2ADA4;
  --text3: #6E757F;
  --gold: #EDB24D;
  --gold-dim: #C3851A;
  --gold-bg: rgba(117, 61, 0, 0.30);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg0);
  color: var(--text2);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 56px;
}
.brand-name {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--text1);
}
.brand-sub {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1.6px;
  color: var(--text3);
}

/* Hero icon: the real app icon, presented as a rounded app-icon badge. */
.icon-badge {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  border-radius: 21px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(237,178,77,0.18);
}

h1 {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 34px;
  color: var(--text1);
  text-align: center;
  margin: 0 0 12px;
}

.lede {
  text-align: center;
  color: var(--text2);
  font-size: 15px;
  max-width: 440px;
  margin: 0 auto 40px;
}

/* Contact card */
.card {
  background: var(--bg1);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 16px;
}
.card-contact {
  text-align: center;
}
.card-contact p {
  margin: 0 0 18px;
  color: var(--text2);
  font-size: 14px;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--bg0);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(237,178,77,0.22);
}
.reply-note {
  margin-top: 14px !important;
  font-size: 12.5px;
  color: var(--text3);
}

/* Section heading */
.section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text3);
  margin: 40px 4px 14px;
}

/* FAQ group, styled like the app's inset-grouped settings list */
.group {
  background: var(--bg1);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
}
.faq {
  padding: 18px 22px;
  border-bottom: 1px solid var(--hairline);
}
.faq:last-child { border-bottom: none; }
.faq h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text1);
  margin: 0 0 6px;
}
.faq p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text2);
}

/* Legal document body (privacy policy) */
.legal-meta {
  text-align: center;
  font-size: 12.5px;
  color: var(--text3);
  margin: 0 0 40px;
}
.legal p {
  font-size: 14px;
  margin: 0 0 16px;
}
.legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal li {
  font-size: 14px;
  margin-bottom: 8px;
}
.legal section {
  margin-bottom: 28px;
}
.legal h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text1);
  margin: 0 0 10px;
}
.legal a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(237,178,77,0.35);
}

footer {
  text-align: center;
  margin-top: 56px;
  font-size: 12px;
  color: var(--text3);
}
footer a {
  color: var(--text3);
  text-decoration: underline;
}
footer .footer-links {
  margin-bottom: 8px;
}
footer .footer-links a {
  margin: 0 8px;
}
