:root {
  --ground: #EEDADD;
  --ink: #2D1825;
  --copper: #A8542C;
  --muted: #6B5560;
  --max-width: 640px;
  --gap: 2rem;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.wordmark .ring {
  width: 48px;
  height: 48px;
}

.wordmark .seven {
  fill: var(--copper);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 36px;
}

.wordmark .brand {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.story p {
  font-size: 18px;
  margin: 0;
}

.story a {
  color: var(--copper);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.apps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.app-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.35);
  border-radius: 12px;
}

.app-card .icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  flex-shrink: 0;
}

.app-card h3 {
  margin: 0 0 0.25rem;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 20px;
}

.app-card p {
  margin: 0 0 0.5rem;
  font-size: 15px;
  color: var(--muted);
}

.app-card a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--copper);
  text-decoration: none;
}

.newsletter h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 0.5rem;
}

.newsletter p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 15px;
}

footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(45,24,37,0.15);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
}

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

@media (max-width: 480px) {
  main { padding: 2rem 1.25rem; }
  .app-card { flex-direction: column; }
}
