/* Snapback — field-manual design system. Light cream is canonical. */

@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url('/fonts/baloo2.woff2') format('woff2');
}
@font-face {
  font-family: 'Black Ops One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/blackopsone.woff2') format('woff2');
}

:root {
  --bg: #EDE6D2;
  --panel: #F3EDDC;
  --card: #FBF7EA;
  --white: #FFFFFF;
  --ink: #2B2D1E;
  --muted: #5C5E46;
  --faded: #8A8B72;
  --olive: #5B6134;
  --olive-deep: #3F4423;
  --brass: #C9A24B;
  --brass-deep: #9C7A2F;
  --cream: #F3EDDC;
  --on-duty: #6B8F3F;
  --radius: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Baloo 2', 'Trebuchet MS', system-ui, sans-serif;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  color-scheme: light;
}

img { max-width: 100%; display: block; }

a { color: var(--olive); font-weight: 700; }
a:hover { color: var(--olive-deep); }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 22px; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 22px; }

/* ── Type ──────────────────────────────────────────────────────────── */

h1, h2, h3 { font-weight: 800; line-height: 1.12; }
h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); }
h3 { font-size: 1.15rem; }

.eyebrow {
  font-family: 'Black Ops One', 'Baloo 2', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.eyebrow.on-dark { color: var(--brass); }

.lead { font-size: 1.14rem; font-weight: 600; color: var(--muted); }

/* ── Buttons & chips ───────────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.02rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-gold {
  background: var(--brass);
  color: var(--ink);
  box-shadow: 0 5px 0 var(--brass-deep);
}
.btn-gold:hover { color: var(--ink); transform: translateY(1px); box-shadow: 0 4px 0 var(--brass-deep); }
.btn-olive {
  background: var(--olive);
  color: var(--cream);
  box-shadow: 0 5px 0 var(--olive-deep);
}
.btn-olive:hover { color: var(--cream); transform: translateY(1px); box-shadow: 0 4px 0 var(--olive-deep); }

.chip {
  display: inline-block;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--olive);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.9rem;
}

.badge {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 8px;
  background: rgba(201, 162, 75, 0.22);
  color: var(--brass-deep);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Header / footer ───────────────────────────────────────────────── */

header.site {
  background: var(--panel);
  border-bottom: 1.5px solid rgba(43, 45, 30, 0.1);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  font-weight: 800;
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}
header.site nav { display: flex; gap: 20px; align-items: center; }
header.site nav a { text-decoration: none; font-size: 0.98rem; }

footer.site {
  background: var(--ink);
  color: var(--cream);
  margin-top: 90px;
  padding: 44px 0 36px;
}
footer.site a { color: var(--brass); text-decoration: none; }
footer.site .cols {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}
footer.site .fine { margin-top: 26px; font-size: 0.85rem; color: rgba(243, 237, 220, 0.55); }

/* ── Sections ──────────────────────────────────────────────────────── */

section { padding: 74px 0; }
section.tight { padding: 50px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head p { margin-top: 10px; }

/* Hero */
.hero { background: var(--panel); padding: 84px 0 78px; }
.hero .wrap { display: flex; gap: 44px; align-items: center; }
.hero-copy { flex: 1.25; }
.hero-copy .eyebrow { display: block; margin-bottom: 14px; }
.hero-copy .lead { margin: 18px 0 26px; max-width: 34em; }
.hero-art { flex: 0.85; display: flex; justify-content: center; }
.hero-art .disc {
  width: min(330px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 10px 0 var(--olive-deep);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-art img { width: 88%; transform: translateY(6%); }
.store-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.free-chip { margin-top: 16px; display: inline-block; background: rgba(107, 143, 63, 0.16); color: var(--olive-deep); padding: 7px 15px; border-radius: 999px; font-weight: 700; font-size: 0.9rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  background: var(--card);
  border: 2px solid rgba(43, 45, 30, 0.08);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: 0 6px 0 rgba(43, 45, 30, 0.1);
}
.step .num {
  font-family: 'Black Ops One', sans-serif;
  color: var(--brass-deep);
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.step h3 { margin: 8px 0 6px; }
.step p { color: var(--muted); font-size: 0.98rem; }

/* Dark spotlight */
.spotlight {
  background: var(--ink);
  color: var(--cream);
  border-radius: 26px;
  padding: 46px 44px;
  display: flex;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}
.spotlight h2 { color: var(--cream); }
.spotlight p { color: rgba(243, 237, 220, 0.82); margin-top: 12px; }
.spotlight .art { flex: 0 0 260px; }
.spotlight .art img { width: 100%; }
.spotlight .note { margin-top: 16px; font-size: 0.88rem; color: rgba(243, 237, 220, 0.6); }

/* Features */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature {
  background: var(--card);
  border: 2px solid rgba(43, 45, 30, 0.08);
  border-radius: var(--radius);
  padding: 20px;
}
.feature h3 { margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: 0.95rem; }
.feature .ico {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(201, 162, 75, 0.18);
  display: grid; place-items: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

/* Privacy band */
.privacy-band {
  background: var(--panel);
  border-top: 1.5px solid rgba(43, 45, 30, 0.08);
  border-bottom: 1.5px solid rgba(43, 45, 30, 0.08);
}
.privacy-band .inner { display: flex; gap: 40px; align-items: center; }
.privacy-band ul { margin: 14px 0 18px 1.2em; color: var(--muted); }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); gap: 18px; justify-content: center; }
.plan {
  background: var(--white);
  border: 2px solid rgba(43, 45, 30, 0.1);
  border-radius: var(--radius);
  padding: 28px 26px;
  text-align: center;
  position: relative;
}
.plan.lead-plan { border-color: var(--brass); box-shadow: 0 7px 0 var(--brass-deep); }
.plan .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brass); color: var(--ink); }
.plan .price { font-size: 2.6rem; font-weight: 800; margin: 6px 0 2px; }
.plan .cad { color: var(--muted); font-weight: 600; }
.plan ul { list-style: none; margin: 18px 0 22px; color: var(--muted); font-size: 0.95rem; }
.plan ul li { padding: 3px 0; }
.pricing-fine { text-align: center; margin-top: 22px; color: var(--muted); font-size: 0.9rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.free-banner {
  text-align: center;
  background: var(--olive);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 18px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 30px;
  box-shadow: 0 6px 0 var(--olive-deep);
}

/* FAQ */
.faq details {
  background: var(--card);
  border: 2px solid rgba(43, 45, 30, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 10px;
}
.faq summary { font-weight: 800; cursor: pointer; }
.faq details p { margin-top: 10px; color: var(--muted); }

/* ── Legal pages ───────────────────────────────────────────────────── */

.legal { padding: 60px 0 30px; }
.legal h1 { margin-bottom: 6px; }
.legal .date { color: var(--faded); font-weight: 600; margin-bottom: 34px; }
.legal h2 { font-size: 1.35rem; margin: 38px 0 10px; }
.legal p, .legal li { color: #43452F; }
.legal p { margin: 12px 0; }
.legal ul { margin: 12px 0 12px 1.3em; }
.legal li { margin: 6px 0; }
.legal .callout {
  background: var(--panel);
  border-left: 4px solid var(--brass);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 18px 0;
  font-weight: 600;
}

/* ── Responsive ────────────────────────────────────────────────────── */

@media (max-width: 860px) {
  .hero .wrap { flex-direction: column-reverse; text-align: center; }
  .hero-copy .lead { margin-left: auto; margin-right: auto; }
  .store-row { justify-content: center; }
  .steps, .grid { grid-template-columns: 1fr; }
  .spotlight { flex-direction: column; padding: 34px 26px; text-align: center; }
  .spotlight .art { flex-basis: auto; width: 200px; }
  .privacy-band .inner { flex-direction: column; text-align: center; }
  .privacy-band ul { text-align: left; }
  .plans { grid-template-columns: 1fr; }
  header.site nav { gap: 14px; }
}
