:root {
  --bg: #050505;
  --border: #232326;
  --text: #f5f5f7;
  --muted: #8a8a92;
  --blue: #4f8ff7;
  --card-gray: #1d1d1e;
  --card-border: #2a2a2d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(79, 143, 247, 0.15), transparent 24%),
    linear-gradient(180deg, #09090a 0%, var(--bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1080px, calc(100% - 64px));
  margin: 0 auto;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero {
  padding: 80px 0;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 11vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.lede {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.9rem;
  font-weight: 500;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.link:hover {
  transform: translateY(-1px);
  border-color: #3a3a3e;
  background: rgba(255, 255, 255, 0.04);
}

.arrow {
  width: 14px;
  height: 14px;
  color: var(--muted);
  flex-shrink: 0;
}

.projects {
  margin-top: 56px;
}

.section-label {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: var(--card-gray);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.project-card:hover {
  transform: translateY(-2px);
  border-color: #3a3a3e;
  background: #222224;
}

.project-info {
  flex: 1;
  min-width: 0;
}

.project-name {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 600;
}

.project-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.project-card .arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .page {
    width: min(1080px, calc(100% - 40px));
  }
}

@media (max-width: 560px) {
  .page {
    width: min(1080px, calc(100% - 28px));
  }

  h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }
}
