body {
  margin: 0;
  padding: 0;
  background: #faf8f6;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #202020;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

header {
  text-align: center;
  background: #c7001bc2; /* Pinterest red */
  color: #fff;
  padding: 2rem 1rem;
}
footer {
  padding: 1.2rem 0;
  font-size: 0.96rem;
  color: #777;
  text-align: center;
  border-top: 1px solid #f1d7de;
  background: #faf2f7;
}
.logo {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 900;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  color: #D46A6A; /* Muted red */
  background: linear-gradient(45deg, #D46A6A, #b44545);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(180, 70, 70, 0.7);
  transition: color 0.3s ease;
  user-select: none;
  cursor: default;
  margin-bottom: 0.5rem;
  letter-spacing: 0.2em;
  margin-top: 3rem;
}
.logo:hover {
  color: #b44545;
  text-shadow: 2px 2px 6px rgba(180, 70, 70, 0.9);
}
.subtitle {
  color: #666;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.status {
  background: #ffe6ea;
  color: #b44545;
  display: inline-block;
  padding: 0.6em 1.4em;
  border-radius: 2em;
  font-size: 1.1em;
  margin-bottom: 1rem;
  font-weight: 500;
}
a.button {
  display: inline-block;
  background: #D46A6A; /* Muted red */
  color: white;
  text-decoration: none;
  border-radius: 2em;
  padding: 0.9em 2em;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  transition: background 0.2s;
}
a.button:hover {
  background: #b44545;
}

.links a {
  color: #D46A6A;
  text-decoration: none;
  margin: 0 1em;
}
.links a:hover {
  text-decoration: underline;
}
section {
  margin-bottom: 2rem;
}
h2 {
  font-weight: 700;
  color: #D46A6A;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}
p, li {
  line-height: 1.5;
  color: #333;
  font-size: 1rem;
}
ul {
  margin-left: 1.2rem;
  margin-bottom: 1rem;
}
a {
  color: #D46A6A;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.links a {
  margin: 0 1em;
  color: #D46A6A;
}

h1 {
  font-weight: 700;
  color: #b44545;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}


/* --- Features section --- */
.features-wrap {
  max-width: 980px;
  margin: 16px auto 0;
  padding: 0 20px;
}

.features-wrap h2 {
  margin: 0 0 14px;
  font-size: 1.6rem;
  color: #D46A6A;
}

.features-sub {
  margin: 0 0 18px;
  color: #555;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px 14px 14px 44px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.feature-card::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: #D46A6A;
  line-height: 1;
}

.feature-title {
  margin: 0 0 6px;
  font-weight: 700;
}

.feature-desc {
  margin: 0;
  color: #555;
  font-size: 0.97rem;
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 999px;
  background: #f4f4f4;
  color: #444;
  margin-left: 8px;
}

.badge.soon { background: #ffe9ee; color: #b3001e; }
.badge.alpha { background: #eef5ff; color: #1243a3; }
