:root {
  color-scheme: light;
  --brand: #E8692A;
  --brand-dark: #C9551B;
  --cream: #FAFAFA;
  --text: #1A1A1A;
  --text-muted: #555;
  --border: #E5E5E5;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 720px; margin: 0 auto; padding: 0 24px; }

.header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: white;
}
.header .brand { font-weight: 800; font-size: 18px; color: var(--text); letter-spacing: -0.01em; }
.header .brand-mark { color: var(--brand); }

.hero { text-align: center; padding: 80px 24px 40px; }
.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero h1 .accent { color: var(--brand); }
.hero p.tagline {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 56px 0 40px;
}
.feature {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}
.feature .icon { font-size: 32px; margin-bottom: 12px; }
.feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--text-muted); font-size: 14px; }

.badges { text-align: center; margin: 32px 0 80px; }
.badge-placeholder {
  display: inline-block;
  padding: 14px 28px;
  background: #1A1A1A;
  color: white;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.55;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 36px 24px;
  text-align: center;
  background: white;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-links a { color: var(--text-muted); font-size: 14px; }
.footer-copyright { color: var(--text-muted); font-size: 13px; }

.legal h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 48px 0 8px;
}
.legal .last-updated { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }
.legal h2 { font-size: 20px; font-weight: 700; margin: 40px 0 12px; }
.legal p { margin-bottom: 16px; color: #2A2A2A; }
.legal ul { margin: 0 0 16px 24px; color: #2A2A2A; }
.legal li { margin-bottom: 6px; }
.legal .toc {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0 48px;
}
.legal .toc h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.legal .toc ol { margin-left: 20px; font-size: 14px; }
.legal .toc a { color: var(--text); }

/* Support page */
.support h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 48px 0 8px;
}
.support .lede {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.support h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 12px;
}
.support p { margin-bottom: 16px; color: #2A2A2A; }
.support ul { margin: 0 0 16px 24px; color: #2A2A2A; }
.support li { margin-bottom: 8px; }

.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  margin: 8px 0 40px;
}
.contact-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.contact-email {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  word-break: break-all;
}
.contact-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.btn:hover { opacity: 0.88; text-decoration: none; }
.btn-primary { background: var(--brand); color: white; }
.btn-secondary {
  background: white;
  color: var(--text);
  border-color: var(--border);
}
.contact-copied {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  min-height: 18px;
}
