:root {
  color-scheme: light;
  --bg: #fffdf8;
  --fg: #181411;
  --muted: #6f625a;
  --line: #e8ded4;
  --accent: #ffcf24;
  --accent-fg: #17110a;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--fg);
}

body {
  margin: 0;
}

a {
  color: inherit;
  font-weight: 800;
}

.page {
  min-height: 100vh;
  padding: 40px 20px;
}

.shell {
  width: min(680px, 100%);
  margin: 0 auto;
}

.invite-shell {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  background: var(--accent);
  color: var(--accent-fg);
  font-size: 34px;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(24, 20, 17, 0.12);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 8vw, 52px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 32px 0 8px;
  font-size: 20px;
  letter-spacing: 0;
}

p,
li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.actions {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--fg);
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.button.secondary {
  background: var(--panel);
  color: var(--fg);
  border: 1px solid var(--line);
}

.note {
  margin-top: 28px;
  font-size: 14px;
}

.top-link {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--muted);
  text-decoration: none;
}

section {
  border-top: 1px solid var(--line);
  padding-top: 8px;
}
