/* Blank scaffold — minimal reset + design tokens.
   Edit freely once a site is generated from this scaffold. */

:root {
  --bg:        #f7f6f2;
  --surface:   #ffffff;
  --ink:       #111827;
  --ink-soft:  #4b5563;
  --ink-muted: #6b7280;
  --accent:    #0f172a;
  --accent-hi: #1e293b;
  --gold:      #f59e0b;
  --rule:      #e5e7eb;
  --radius:    14px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 6px 24px rgba(15, 23, 42, 0.08);
  --body:      "Inter", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --display:   "Inter", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.hero {
  width: 100%;
  max-width: 720px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 56px 48px;
  text-align: center;
}

.hero .eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 18px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 14px;
}

.hero p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 32px;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: background 120ms ease, transform 120ms ease;
}
.cta:hover { background: var(--accent-hi); transform: translateY(-1px); }
.cta:active { transform: translateY(0); }

@media (max-width: 520px) {
  .hero { padding: 40px 24px; }
}
