@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600&family=STIX+Two+Text:wght@400;500&display=swap');

:root {
  color-scheme: light;
  --paper: #f7f7f4;
  --ink: #0f0f0f;
  --muted: #525252;
  --line: #1e1e1e;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.035), transparent 60%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.06) 1px, transparent 1px, transparent 120px);
}

main {
  width: min(960px, 100%);
}

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

a:hover {
  opacity: 0.7;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.header .brand {
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 18px;
}

.hero {
  margin-top: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.05;
  font-weight: 600;
  text-transform: uppercase;
}

.hero p {
  margin-top: 18px;
  font-size: 18px;
  max-width: 520px;
  color: var(--muted);
}

.hero .meta {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero .meta span,
.hero .meta a {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  object-fit: cover;
  filter: grayscale(0%);
  box-shadow: var(--shadow);
}

.card {
  margin-top: 56px;
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.card strong {
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card span {
  font-size: 14px;
  color: var(--muted);
}

.page {
  font-family: "STIX Two Text", "Times New Roman", serif;
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px 42px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.page h1 {
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}

.page h2 {
  font-family: "Space Grotesk", "Helvetica Neue", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 28px;
  margin-bottom: 8px;
}

.page p {
  color: var(--muted);
  margin-bottom: 16px;
}

.page ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.page li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.page li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--ink);
}

.footer {
  margin-top: 28px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s ease forwards;
}

.reveal.delay-1 { animation-delay: 0.1s; }
.reveal.delay-2 { animation-delay: 0.2s; }
.reveal.delay-3 { animation-delay: 0.3s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  body {
    padding: 32px 18px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .card {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    flex-direction: column;
    gap: 6px;
  }
}
