/* styles.css */
:root {
  --bg: #ffffff;
  --fg: #0b0b0b;
  --muted: rgba(0, 0, 0, 0.62);
  --muted2: rgba(0, 0, 0, 0.44);
  --line: rgba(0, 0, 0, 0.12);
  --btn-border: rgba(0, 0, 0, 0.22);
  --btn-border-hover: rgba(0, 0, 0, 0.36);
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.45;

  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1;
}

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 20px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: center;
}

.header {
  margin: 0 0 18px 0;
}

/* Text wordmark */
.wordmark {
  font-weight: 600;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  user-select: none;
  white-space: nowrap;
}

.wordmark .mark {
  font-weight: 600;
  font-size: 0.42em;          /* makes ® feel like a mark, not a character */
  vertical-align: super;
  margin-left: 0.06em;
  letter-spacing: 0;
}

.content {
  max-width: 760px;
  text-align: center;
}

.lede {
  margin: 0 0 14px 0;
  font-size: 16px;
  color: var(--muted);
  letter-spacing: -0.01em;
}

.headline {
  margin: 0 0 10px 0;
  font-size: 20px;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.headline strong {
  font-weight: 600;
}

.sublede {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

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

/* Packaging-style signals */
.signal-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 12px 0 0 0;
}

.signal-badge {
  font-weight: 600;           /* Inter Semibold */
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
  white-space: nowrap;
}

.signal-dot {
  font-weight: 600;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.28);
  line-height: 1;
  transform: translateY(-0.5px);
}

.cta {
  margin-top: 26px;
}

.button {
  display: inline-block;
  padding: 12px 16px;
  border: 1px solid var(--btn-border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--fg);
  font-weight: 600;
  letter-spacing: -0.01em;
  background: transparent;
}

.button:hover {
  border-color: var(--btn-border-hover);
}

.hint {
  margin: 10px 0 0 0;
  font-size: 13px;
  color: var(--muted2);
}

.footer {
  margin-top: 34px;
}

.fineprint {
  margin: 0;
  font-size: 12px;
  color: var(--muted2);
}

/* Small screens */
@media (max-width: 420px) {
  .wrap { padding-top: 44px; }
  .headline { font-size: 19px; }
  .signal-badges { gap: 8px; }
}
