/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: #0f0f10;
  color: #e8e8e8;
  line-height: 1.6;
  padding: 2rem 1rem;
}

/* === LAYOUT === */
.centerd {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

/* === TYPOGRAPHY === */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #f0f0f0;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 0.78rem;
  font-weight: 600;
  color: #8b5cf6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 0.75rem;
  color: #444;
  font-weight: 400;
  text-align: center;
  margin-top: 1.5rem;
}

h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 3px;
}

p {
  font-size: 1rem;
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* === DIVIDER === */
hr {
  border: none;
  border-top: 1px solid #2a2a2e;
  margin: 1.5rem 0;
}

/* === APP CARDS === */
.app-container {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #18181b;
  border: 1px solid #2a2a2e;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s ease;
  text-decoration: none;
}

.app-container:hover {
  border-color: #8b5cf6;
}

.app-container img {
  border-radius: 12px;
  flex-shrink: 0;
}

.app-text h4 {
  margin-top: 0;
  margin-bottom: 4px;
}

.app-text p {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 8px;
  line-height: 1.5;
}

.app-text a {
  font-size: 0.82rem;
  color: #8b5cf6;
  text-decoration: none;
  font-weight: 500;
}

.app-text a:hover {
  color: #a78bfa;
  text-decoration: underline;
}

/* coming soon links */
.app-text a[href=""] {
  color: #555;
  pointer-events: none;
  cursor: default;
}

/* === CONTACT === */
ul {
  list-style: none;
  margin-bottom: 1rem;
}

ul li {
  font-size: 0.85rem;
  color: #888;
  padding: 2px 0;
}
