:root {
  --bg: #060606;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-border: rgba(255, 255, 255, 0.1);
  --text: #f5f5f5;
  --muted: #a1a1aa;
  --accent: #ffffff;
  --accent-soft: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  margin: 0 auto;
  max-width: 1080px;
  padding: 32px 24px 48px;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  height: 48px;
  width: 48px;
  place-items: center;
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  background: var(--surface);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-name,
.brand-tag,
.site-footer p {
  margin: 0;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero {
  padding: 96px 0 56px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-text {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 32px;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 12px;
}

.info-card {
  padding: 28px;
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  background: var(--surface);
  backdrop-filter: blur(10px);
}

.info-card h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 42px;
  margin-top: 42px;
  border-top: 1px solid var(--accent-soft);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 20px 18px 36px;
  }

  .hero {
    padding: 72px 0 44px;
  }

  .site-footer {
    flex-direction: column;
  }
}
