:root {
  --bg: #fafafa;
  --ink: #111111;
  --muted: #6f6f6f;
  --line: rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(0, 0, 0, 0.06), transparent 60%),
    radial-gradient(520px 520px at -10% 110%, rgba(0, 0, 0, 0.045), transparent 60%),
    radial-gradient(520px 520px at 110% 30%, rgba(0, 0, 0, 0.04), transparent 60%);
}

.frame {
  min-height: 100vh;
  padding: clamp(2.5rem, 6vw, 6rem) clamp(1.5rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 450;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.content {
  max-width: 720px;
}

.statement {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.subtle {
  margin: 1.75rem 0 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.divider {
  margin: 2.25rem 0 1.5rem 0;
  height: 1px;
  background: var(--line);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.meta-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.meta-link:hover {
  border-bottom-color: var(--line);
}

.footer {
  color: var(--muted);
  font-size: 0.8rem;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--muted);
  text-decoration: none;
}

.icon-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.icon-link:hover {
  color: var(--ink);
}
