:root {
  --bg: #f3f4f6;
  --panel: rgba(255,255,255,0.84);
  --line: #e1e4e8;
  --text: #171717;
  --muted: #575757;
  --accent: #7a63d3;
  --accent-soft: rgba(122,99,211,0.10);
  --shadow: 0 24px 60px rgba(0,0,0,0.07), 0 6px 18px rgba(0,0,0,0.04);
  --radius: 22px;
  --max: 1040px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(122,99,211,0.10), transparent 28%),
    radial-gradient(circle at top left, rgba(0,0,0,0.035), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31,41,55,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,41,55,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.32), transparent 72%);
  z-index: -1;
}

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

.page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 72px;
  color: var(--text);
}

.brand img {
  width: auto;
  height: 26px;
  display: block;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  letter-spacing: -0.01em;
}

.hero {
  max-width: 760px;
  margin-bottom: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(122,99,211,0.20);
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(48px, 8vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 650;
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: -0.015em;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(225,228,232,0.78);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(122,99,211,0.36);
  box-shadow: 0 30px 70px rgba(0,0,0,0.09), 0 8px 22px rgba(0,0,0,0.05);
}

.card h2 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

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

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  color: var(--accent);
  font-weight: 650;
}

.path {
  color: #777777;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 500;
}

footer {
  margin-top: 64px;
  color: #777777;
  font-size: 14px;
}

@media (max-width: 640px) {
  .page { padding: 32px 0; }
  .brand { margin-bottom: 52px; }
  .hero { margin-bottom: 34px; }
  .card { padding: 22px; }
}
