:root {
  --bg: #f3efe6;
  --ink: #1c1a16;
  --muted: #5c564c;
  --accent: #0b6e4f;
  --panel: rgba(255, 255, 255, 0.55);
  --line: rgba(28, 26, 22, 0.12);
  --display: "Fraunces", Georgia, serif;
  --body: "Source Sans 3", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
}

.wash {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 500px at 0% 0%, #d9e8df 0%, transparent 55%),
    radial-gradient(700px 480px at 100% 10%, #e7dcc8 0%, transparent 50%),
    linear-gradient(180deg, #f7f3ea, #ebe4d6);
  pointer-events: none;
}

main {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 5rem) 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: in 0.7s ease both;
}

.brand {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 11vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.label {
  margin: 1.4rem 0 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 7vw, 3.2rem);
  line-height: 1.1;
  word-break: break-all;
  animation: pop 0.8s ease 0.08s both;
}

.copy {
  align-self: flex-start;
  margin-top: 1rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: var(--accent);
  color: #f4fff9;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.copy:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.meta {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--panel);
  backdrop-filter: blur(6px);
  display: grid;
  gap: 0.65rem;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.98rem;
}

.row span {
  color: var(--muted);
}

.row strong {
  font-weight: 600;
  text-align: right;
}

.hint {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hint a {
  color: var(--accent);
}

@keyframes in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
