:root {
  --paper: #f4ece0;
  --paper-2: #efe4d3;
  --ink: #16140f;
  --ink-soft: #4a463c;
  --red: #e23b2e;
  --gold: #f3b50b;
  --blue: #2b6cb0;
  --line: #16140f;
  --card: #fffaf0;
  --shadow: 6px 6px 0 var(--ink);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
  font-size: 17px;
  /* subtle dotted texture */
  background-image: radial-gradient(rgba(22,20,15,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
}

h1, h2, h3, .display {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 .4em;
}

a { color: var(--ink); }

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 22px; }

/* ---------- top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; max-width: 1040px; margin: 0 auto; gap: 12px;
}
.brand {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  font-size: 22px; display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.brand .dot {
  width: 14px; height: 14px; background: var(--red); border-radius: 50%;
  border: 2px solid var(--ink); display: inline-block;
}
.nav-links { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--red); }
.btn {
  display: inline-block; cursor: pointer; border: 3px solid var(--ink);
  background: var(--gold); color: var(--ink); font-weight: 700;
  padding: 11px 20px; font-family: "Space Grotesk", sans-serif;
  text-decoration: none; box-shadow: 4px 4px 0 var(--ink);
  transition: transform .08s ease, box-shadow .08s ease; font-size: 16px;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.btn.red { background: var(--red); color: #fff; }
.btn.ghost { background: var(--card); }
.btn.big { font-size: 19px; padding: 16px 28px; }
@media (max-width: 720px){ .nav-links a:not(.btn){ display:none; } }

/* ---------- hero ---------- */
.hero { position: relative; padding: 70px 0 50px; }
.hero .eyebrow {
  display: inline-block; background: var(--ink); color: var(--paper);
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: .14em; padding: 7px 12px; transform: rotate(-2deg); margin-bottom: 22px;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(38px, 7vw, 76px); max-width: 14ch; }
.hero h1 .hl { background: var(--gold); padding: 0 .1em; box-decoration-break: clone; }
.hero p.lead { font-size: clamp(18px, 2.5vw, 22px); max-width: 46ch; color: var(--ink-soft); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.qmark {
  position: absolute; right: 4%; top: 40px; font-family: "Space Grotesk", sans-serif;
  font-size: 180px; font-weight: 700; color: var(--red); opacity: .16;
  transform: rotate(8deg); line-height: 1; pointer-events: none;
}
@media (max-width: 720px){ .qmark{ font-size: 110px; top: 10px; } }

/* ---------- generic section ---------- */
.section { padding: 56px 0; border-top: 3px dashed var(--ink); }
.section h2 { font-size: clamp(28px, 4.5vw, 44px); }
.section .sub { color: var(--ink-soft); max-width: 52ch; margin-bottom: 30px; }

/* sticker label */
.sticker {
  display: inline-block; border: 3px solid var(--ink); background: var(--card);
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; padding: 6px 10px;
  transform: rotate(-1.5deg); margin-bottom: 14px;
}

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px){ .steps{ grid-template-columns: 1fr; } }
.step {
  background: var(--card); border: 3px solid var(--ink); box-shadow: var(--shadow);
  padding: 22px; transform: rotate(-.6deg);
}
.step:nth-child(2){ transform: rotate(.8deg); }
.step:nth-child(3){ transform: rotate(-.4deg); }
.step .num {
  font-family: "Space Grotesk", sans-serif; font-size: 40px; font-weight: 700;
  color: var(--red); line-height: 1;
}
.step h3 { margin: 8px 0 6px; font-size: 22px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }

/* ---------- inside grid ---------- */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 820px){ .cats{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .cats{ grid-template-columns: 1fr; } }
.cat {
  background: var(--paper-2); border: 2px solid var(--ink); padding: 16px;
  font-weight: 600; display: flex; gap: 10px; align-items: center;
}
.cat .emo { font-size: 26px; }

/* ---------- pricing ---------- */
.price-card {
  background: var(--ink); color: var(--paper); border: 3px solid var(--ink);
  box-shadow: var(--shadow); padding: 34px; max-width: 620px; margin: 0 auto;
  text-align: center;
}
.price-card .amount { font-family: "Space Grotesk", sans-serif; font-size: 76px; font-weight: 700; line-height: 1; }
.price-card .amount small { font-size: 24px; opacity: .8; }
.price-card .per { letter-spacing: .1em; text-transform: uppercase; font-size: 14px; opacity: .85; margin-top: 6px; }
.price-card ul { list-style: none; padding: 0; margin: 22px auto; max-width: 360px; text-align: left; }
.price-card li { padding: 6px 0; border-bottom: 1px dashed rgba(244,236,224,.25); display:flex; gap:10px; }
.price-card li .tick { color: var(--gold); font-weight: 700; }

#subscribe form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
#subscribe input[type=email] {
  border: 3px solid var(--paper); background: var(--paper); color: var(--ink);
  padding: 14px 16px; font-size: 17px; min-width: 260px; font-family: inherit;
}
#subscribe input[type=email]:focus { outline: 3px solid var(--gold); }
.note { font-size: 14px; opacity: .8; margin-top: 14px; }
#sub-msg { margin-top: 14px; font-weight: 600; min-height: 1.2em; }
#sub-msg.err { color: #ffd2cc; }
#sub-msg.ok { color: var(--gold); }

/* ---------- faq ---------- */
.faq { max-width: 760px; }
.faq details {
  border: 3px solid var(--ink); background: var(--card); margin-bottom: 12px;
  box-shadow: 4px 4px 0 var(--ink);
}
.faq summary {
  cursor: pointer; font-family: "Space Grotesk", sans-serif; font-weight: 700;
  padding: 14px 18px; list-style: none; display: flex; justify-content: space-between; align-items:center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { color: var(--red); font-size: 22px; }
.faq details[open] summary .pm { transform: rotate(45deg); }
.faq .ans { padding: 0 18px 16px; color: var(--ink-soft); }

/* ---------- support ---------- */
.support { text-align: center; }
.support .mail {
  display: inline-block; margin-top: 14px; font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 4vw, 34px); font-weight: 700; border-bottom: 4px solid var(--red);
  text-decoration: none; color: var(--ink);
}

/* ---------- footer ---------- */
.footer { border-top: 3px solid var(--ink); padding: 30px 0; font-size: 14px; color: var(--ink-soft); }
.footer a { color: var(--ink-soft); }

/* wavy divider */
.wave { display: block; width: 100%; height: 34px; color: var(--ink); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
