:root {
  --bg: #0e0f12;
  --surface: #15171c;
  --text: #ededed;
  --muted: #a1a1aa;
  --accent: #4f6bed;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.25;
}

.site-header {
  border-bottom: 1px solid #1f2229;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  position: relative;
  width: 36px;
  height: 36px;
  background: var(--surface);
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.logo-p {
  font-weight: 700;
}

.star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.star-a { top: 8px; left: 8px; }
.star-b { bottom: 8px; right: 8px; }

.hero {
  padding: 96px 0;
}

.hero-subline {
  font-style: italic;
  color: var(--muted);
}

.primary-cta {
  margin-top: 32px;
  padding: 14px 24px;
  background: var(--accent);
  border: none;
  color: white;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
}

.apps-overview,
.trust,
.final-cta {
  padding: 96px 0;
}

.app-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.app-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 12px;
}

.site-footer {
  border-top: 1px solid #1f2229;
  padding: 48px 0;
  color: var(--muted);
}

.easter-egg {
  font-size: 13px;
}
