:root {
  --primary: #ff6b35;
  --primary-dark: #e85a24;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --bg: #fafafa;
  --card: #ffffff;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.logo {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  text-decoration: none;
}

nav a {
  margin-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

nav a:hover {
  color: var(--primary);
}

.hero {
  background: linear-gradient(160deg, #fff5f0 0%, var(--bg) 50%);
  padding: 4rem 0 5rem;
}

.hero-inner {
  max-width: 640px;
}

.badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.12);
  color: var(--primary-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.features li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.soon {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.section {
  padding: 3.5rem 0;
}

.section-muted {
  background: var(--card);
  border-top: 1px solid var(--border);
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: white;
  font-weight: 700;
  border-radius: 50%;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.35rem;
}

.step p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.small {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.legal {
  padding: 3rem 0 4rem;
}

.legal h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.updated {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.125rem;
  margin: 1.75rem 0 0.5rem;
}

.legal p,
.legal ul {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.legal ul {
  padding-left: 1.25rem;
}

.legal li {
  margin-bottom: 0.35rem;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  background: var(--card);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}
