:root {
  --bg:        #1a1410;
  --bg-2:      #221912;
  --panel:     #2a1f18;
  --line:      #3a2c22;
  --oak:       #c89868;
  --brass:     #d4a574;
  --cream:     #f4ede2;
  --muted:     #a8978a;
  --serif:     "Fraunces", Georgia, serif;
  --sans:      "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: radial-gradient(ellipse at 50% -20%, #2a1f18 0%, var(--bg) 55%);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: 1.25rem;
  color: var(--cream);
}
.brand-mark { width: 28px; height: 28px; }
.brand.small { font-size: 1.05rem; }
.nav nav { display: flex; gap: 1.6rem; font-size: 0.95rem; color: var(--muted); }
.nav nav a { transition: color 0.2s; }
.nav nav a:hover { color: var(--cream); }

/* ---------- Hero ---------- */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3rem) clamp(2rem, 5vw, 5rem);
}
.hero-inner { max-width: 760px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--oak);
  box-shadow: 0 0 12px var(--oak);
}

.headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 7vw, 5.25rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 1.4rem;
}
.headline .line { display: block; }
.headline .italic { font-style: italic; color: var(--brass); }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--cream);
  opacity: 0.85;
  max-width: 56ch;
  margin: 0 0 2.5rem;
}

.cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.badge {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--cream);
}
.badge.ghost { background: transparent; color: var(--muted); }

/* ---------- Hero board diagram ---------- */
.board {
  position: relative;
  margin: 3rem 0 2rem;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #20170f 0%, #150f0a 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
  overflow: hidden;
}
.peg {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--brass), #8a6038);
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.peg.pa { left: 22%; top: 38%; }
.peg.pb { left: 58%; top: 38%; }
.peg.pc { left: 30%; top: 64%; }
.peg.pd { left: 70%; top: 64%; }

.plank {
  position: absolute;
  height: 22px;
  background: linear-gradient(180deg, #b48457 0%, #8a6038 100%);
  border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 4px 8px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}
.hole {
  width: 8px; height: 8px;
  background: #1a1410;
  border-radius: 50%;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.6);
}
.plank.p1 { left: 14%; right: 50%; top: 33%; animation: sway 6s ease-in-out infinite; }
.plank.p2 { left: 50%; right: 14%; top: 33%; animation: sway 6s ease-in-out infinite reverse; }
.plank.p3 { left: 22%; right: 22%; top: 59%; animation: sway 7s ease-in-out infinite 1s; }

@keyframes sway {
  0%, 100% { transform: rotate(-1.2deg); }
  50%      { transform: rotate(1.2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .plank { animation: none; }
}

/* ---------- Sections ---------- */
section { padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem); }
.how, .features { max-width: 1200px; margin: 0 auto; }

.section-head { max-width: 700px; margin: 0 0 3rem; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.steps li {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
}
.step-num {
  font-family: var(--serif);
  color: var(--brass);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}
.steps h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  margin: 0.6rem 0 0.5rem;
  color: var(--cream);
}
.steps p { margin: 0; color: var(--muted); font-size: 0.97rem; }

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.feature-grid article {
  background: var(--bg-2);
  padding: 1.75rem 1.5rem;
}
.feature-grid h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--brass);
}
.feature-grid p { margin: 0; color: var(--muted); font-size: 0.97rem; }

/* ---------- Footer ---------- */
.foot {
  border-top: 1px solid var(--line);
  margin-top: 4rem;
}
.foot-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.foot-meta { color: var(--muted); font-size: 0.9rem; margin: 0; }
.foot-meta a { color: var(--muted); transition: color 0.2s; }
.foot-meta a:hover { color: var(--cream); }
.foot-meta .sep { margin: 0 0.6rem; opacity: 0.5; }

/* ---------- Privacy page ---------- */
.doc {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2rem);
}
.doc h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.doc .updated { color: var(--muted); font-size: 0.9rem; margin: 0 0 2.5rem; }
.doc h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--brass);
}
.doc p, .doc li { color: var(--cream); opacity: 0.9; }
.doc a { color: var(--brass); border-bottom: 1px solid var(--line); }
.doc a:hover { color: var(--cream); }
