/* IntoReality — shared static-site styles */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: #3a3a3a;
  background: #faf8f3;
  padding: 2rem 1rem;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

h1 {
  font-size: 1.8rem;
  color: #b85c38;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.25rem;
  color: #c97c5d;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

p,
li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

ul {
  padding-left: 1.5rem;
}

.date {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

a {
  color: #b85c38;
}

.footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8dcc4;
  font-size: 0.85rem;
  color: #888;
}

.disclaimer {
  margin-top: 0.75rem;
  font-style: italic;
}

.links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

/* Landing page */
.hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero .mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: block;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.25rem;
}

.hero .tagline {
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 1.5rem;
}

.hero .cta {
  font-size: 1rem;
  color: #b85c38;
  font-weight: 600;
}

.section {
  margin-top: 2rem;
}

.section h2 {
  color: #b85c38;
}

.habit {
  margin-bottom: 1rem;
}

.habit strong {
  color: #c97c5d;
}

.badge-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #b85c38;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.badge:hover {
  opacity: 0.9;
}

/* Delete-account numbered steps */
.steps {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}

.steps li {
  counter-increment: step;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: #c97c5d;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.5rem;
  font-weight: 600;
}
