/* Base reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: #7c573e;
  color: #212121;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --max-w: 880px;
  --pad: 20px;
  --brand: #f6bf2c; /* button background */
  --brand-ink: #1a38ef; /* button text */
  --muted: #a7a7ad;
  --card: #131316;
  --border: #2a2a2f;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  backdrop-filter: blur(6px);
  background: color-mix(in oklab, #7c573e 85%, transparent);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.top-nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px var(--pad);
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
.top-nav a:hover { color: #fff; text-decoration: underline; }
.top-nav .dot { color: var(--border); }

.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--pad);
  text-align: center;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.feature-image {
  width: min(420px, 75vw);
  aspect-ratio: 1 / 1;
  display: block;
  margin: 8px auto 6px;
  border-radius: 12px;
  border: none;
  background: none;
  object-fit: cover;
}

.title {
  margin: 4px 0 4px;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #000000;
}

.subtitle {
  margin: 0 0 12px;
  color: #212121;
  font-size: clamp(16px, 2.6vw, 22px);
}

.cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: transform .06s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button.primary { background: var(--brand); color: var(--brand-ink); }
.button.primary:hover { filter: saturate(1.2); }
.button.secondary { background: var(--brand); color: var(--brand-ink); }
.button.secondary:hover { filter: saturate(1.2); }

.blurb {
  margin: 6px auto 4px;
  color: #212121;
  font-size: 14px;
  max-width: 620px;
}
.blurb a { color: var(--brand-ink); }
.blurb a:hover { color: var(--brand-ink); text-decoration: underline; }

.site-footer {
  border-top: none;
  margin-top: 8px;
  padding: 8px var(--pad) 16px;
  text-align: center;
  color: #212121;
  font-size: 12px;
}

@media (max-width: 520px) {
  .cta { grid-template-columns: 1fr; }
}


