/* ------------------------------------------------------------------
   Honest Feedback Time — committed black + neon pink theme.
   Tokens first; everything styles through them.
   (Token names kept from the original paper theme: --paper is the
   page ground, --ink is the text, --red is the accent — now pink.)
------------------------------------------------------------------- */
:root {
  --paper: #0A0A0C;
  --paper-raised: #141317;
  --ink: #F6F1F5;
  --ink-soft: #C7BEC6;
  --neutral: #857C86;
  --rule: #2A2530;
  --red: #FF2D9A;
  --red-soft: #3A1229;
  --highlight: rgba(255, 45, 154, 0.30);
  --glow: rgba(255, 45, 154, 0.40);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "IBM Plex Sans", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", Consolas, monospace;

  --measure: 62ch;
  --page-pad: clamp(1.25rem, 5vw, 2.5rem);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--red); color: var(--paper); }

a { color: var(--red); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }

.wrap {
  max-width: 44rem;
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

/* ---------- header ---------- */
.site-header {
  border-bottom: 1px solid var(--rule);
  padding: 1.1rem 0;
}
.site-header .wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}
.wordmark .tick { color: var(--red); }
.header-cta {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-decoration: none;
}
.header-cta:hover { color: var(--red); }

/* ---------- hero ---------- */
/* top/bottom only — a `padding` shorthand here would zero out the
   horizontal padding this element gets from .wrap */
.hero {
  padding-top: clamp(3rem, 9vw, 6.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neutral);
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
  max-width: 20ch;
}
.strike {
  position: relative;
  white-space: nowrap;
  color: var(--neutral);
}
.strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  top: 54%;
  height: 0.09em;
  background: var(--red);
  transform: rotate(-1.5deg);
}
.correction {
  color: var(--red);
  font-style: italic;
  text-shadow: 0 0 22px var(--glow);
}
.hero .lede {
  margin-top: 1.6rem;
  max-width: var(--measure);
  font-size: 1.15rem;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.hero .lede strong { color: var(--ink); }
.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border: 2px solid var(--ink);
  border-radius: 3px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease, transform 120ms ease;
}
.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: #0A0A0C;
  box-shadow: 0 0 22px var(--glow);
}
.btn-primary:hover {
  background: #FF5CB0;
  border-color: #FF5CB0;
  box-shadow: 0 0 34px var(--glow);
}
.btn:not(.btn-primary):hover { background: var(--ink); color: var(--paper); }
.btn:active { transform: translateY(1px); }
.price-note {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--neutral);
}

/* ---------- section scaffolding ---------- */
section { padding: clamp(2.5rem, 6vw, 4rem) 0; border-top: 1px solid var(--rule); }
.section-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
}
h2 {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin-bottom: 1.1rem;
}
section p { max-width: var(--measure); color: var(--ink-soft); }
section p + p { margin-top: 1rem; }
section p strong { color: var(--ink); }

/* ---------- credentials ---------- */
.creds {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.5rem;
}
.cred {
  border-left: 3px solid var(--ink);
  padding-left: 1rem;
}
.cred .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 560;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.cred .what {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 0.2rem;
}

/* ---------- sample report ---------- */
.report {
  margin-top: 1.9rem;
  background: var(--paper-raised);
  border: 1px solid var(--rule);
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(255, 45, 154, 0.10);
  padding: clamp(1.25rem, 4vw, 2rem);
  transform: rotate(-0.4deg);
}
.report-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
}
.report-head .title {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.report-head .stamp {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--red);
  border: 1.5px solid var(--red);
  border-radius: 3px;
  padding: 0.15rem 0.5rem;
  transform: rotate(2deg);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.report ol {
  list-style: none;
  counter-reset: item;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.report ol li {
  counter-increment: item;
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.6rem;
}
.report ol li::before {
  content: counter(item, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--red);
  padding-top: 0.2rem;
  font-variant-numeric: tabular-nums;
}
.report ol li .item-title {
  font-weight: 600;
  color: var(--ink);
}
.report ol li .item-desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.margin-note {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--red);
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--rule);
}

/* ---------- how it works ---------- */
.steps {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: var(--measure);
}
.step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
}
.step .n {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 560;
  color: var(--red);
  line-height: 1;
  padding-top: 0.15rem;
  font-variant-numeric: tabular-nums;
}
.step h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
}
.step p { font-size: 0.98rem; margin-top: 0.25rem; }

/* ---------- pricing ---------- */
.price-block {
  margin-top: 1.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.price-figure {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 560;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price-unit {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--neutral);
}
.hl {
  background: linear-gradient(transparent 55%, var(--highlight) 55%, var(--highlight) 92%, transparent 92%);
  color: var(--ink);
}
.guarantee {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: var(--measure);
}
.refund-list {
  list-style: none;
  margin-top: 0.9rem;
  max-width: var(--measure);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.refund-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.refund-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--red);
}
.refund-list strong { color: var(--ink); }
.refund-note {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  color: var(--neutral);
  max-width: var(--measure);
}

/* ---------- FAQ ---------- */
.faq { margin-top: 1.5rem; max-width: var(--measure); }
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 1rem 0;
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--red);
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin-top: 0.6rem;
  font-size: 0.98rem;
}

/* ---------- final CTA ---------- */
.final-cta { text-align: left; }
.final-cta .hero-actions { margin-top: 1.75rem; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 2px solid var(--ink);
  padding: 1.5rem 0 2.5rem;
  margin-top: 1rem;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--neutral);
}
.site-footer a { color: var(--neutral); }
.site-footer a:hover { color: var(--red); }

/* ---------- forms (submit page) ---------- */
.form-page { padding-top: clamp(2.5rem, 6vw, 4rem); }
form.review-form {
  margin-top: 2rem;
  max-width: var(--measure);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-weight: 600;
  font-size: 0.95rem;
}
.field .hint {
  font-size: 0.85rem;
  color: var(--neutral);
}
.field input,
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper-raised);
  border: 1.5px solid var(--rule);
  border-radius: 3px;
  padding: 0.7rem 0.85rem;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--red);
}
.field textarea { resize: vertical; min-height: 7.5rem; }
.form-footnote {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--neutral);
}

/* ---------- mobile spacing ---------- */
@media (max-width: 480px) {
  body { font-size: 1rem; }
  .site-header { padding: 0.85rem 0; }
  .header-cta { font-size: 0.78rem; text-align: right; }
  .hero .lede { margin-top: 1.25rem; font-size: 1.05rem; }
  .hero-actions { margin-top: 1.75rem; gap: 0.9rem; }
  .btn { width: 100%; text-align: center; padding: 0.9rem 1.25rem; }
  .creds { gap: 1.1rem; }
  .steps { gap: 1.25rem; }
  .step { grid-template-columns: 2.25rem 1fr; gap: 0.75rem; }
  .report { transform: none; }
  .report ol { gap: 0.9rem; }
  .report ol li { grid-template-columns: 1.8rem 1fr; gap: 0.45rem; }
  .price-block { margin-top: 1.25rem; }
}

/* ---------- legal pages ---------- */
.legal { padding: clamp(2.5rem, 6vw, 4rem) 0 4rem; }
.legal h1 {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  letter-spacing: -0.01em;
}
.legal .updated {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--neutral);
  margin-top: 0.5rem;
}
.legal h2 {
  font-size: 1.2rem;
  margin-top: 2.25rem;
  margin-bottom: 0.5rem;
}
.legal p, .legal li { color: var(--ink-soft); max-width: var(--measure); }
.legal p + p { margin-top: 0.75rem; }
.legal ul { margin-top: 0.75rem; padding-left: 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; }
.legal strong { color: var(--ink); }

.foot-links a { color: var(--neutral); }
.foot-links a:hover { color: var(--red); }

/* ---------- thanks page ---------- */
.thanks-page { padding: clamp(4rem, 10vw, 7rem) 0; }
.thanks-page h1 {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: -0.01em;
}
.thanks-page p { margin-top: 1.2rem; max-width: var(--measure); color: var(--ink-soft); }
