/* Design tokens from the madelabs.dev landing page handoff. */
:root {
  --bg: #fcfcfd;
  --ink: #14161a;
  --link-hover: #5b6472;
  --muted: #7b8493;
  --muted-small: #8b93a0;
  --rule: #e6e8ec;
  --underline: #c9ced6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  color: var(--ink);
  font-family: Archivo, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--ink);
  color: var(--bg);
}

/* Responsiveness is entirely fluid — 8vw gutters, a clamped headline, vh
   vertical rhythm, and two wrapping flex rows. No media queries. */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0 8vw;
}

.header {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 38px 0 0;
}

.mark {
  width: 9px;
  height: 9px;
  background: var(--ink);
}

.wordmark {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16vh 0 14vh;
}

.headline {
  margin: 0;
  max-width: 19ch;
  font-size: clamp(44px, 7vw, 104px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.meta {
  margin-top: 52px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 40px;
}

.email {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-bottom: 1px solid var(--underline);
  padding-bottom: 3px;
  transition: color 120ms ease;
}

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

.status {
  font-size: 15px;
  color: var(--muted);
  letter-spacing: -0.01em;
}

.footer {
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 32px;
  padding: 20px 0 32px;
  font-size: 13px;
  color: var(--muted-small);
  letter-spacing: 0.02em;
}

@media (prefers-reduced-motion: reduce) {
  .email {
    transition: none;
  }
}
