/* ============================================================================
   THE BUYING BUDDY — notebook aesthetic
   Mechanic's notepad. Cream paper. Red margin. Hand-circled accent.
   Recoleta serif display + DM Sans body + Caveat handwriting accent.
   ============================================================================ */

:root {
  --paper: #f4efe6;
  --paper-soft: #ece5d7;
  --paper-deep: #faf6ee;
  --ink: #1f1d1a;
  --ink-soft: #4a443d;
  --ink-faint: #7a7368;
  --line: rgba(31, 29, 26, 0.12);
  --line-soft: rgba(31, 29, 26, 0.06);
  --red: #da4b3c;
  --red-deep: #b8392c;
  --red-soft: #f4d4cf;
  --good: #2d6a3e;
  --warn: #b8801f;
  --bad: #da4b3c;
  --gold: #c9a44c;

  --radius: 6px;
  --radius-sm: 4px;

  --shadow-sm: 0 1px 0 rgba(31, 29, 26, 0.08), 0 1px 3px rgba(31, 29, 26, 0.06);
  --shadow-md: 3px 3px 0 rgba(31, 29, 26, 0.12);
  --shadow-lg: 4px 4px 0 var(--ink);

  --font-display: 'Recoleta', Georgia, 'Times New Roman', serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-hand: 'Caveat', 'Bradley Hand', cursive;

  --margin-x: 60px; /* Notebook red margin position on desktop */
  --margin-x-mobile: 32px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============================================================================
   NOTEBOOK BACKGROUND — paper lines + red margin
   ============================================================================ */
.paper-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--paper);
  background-image:
    /* horizontal ruling */
    linear-gradient(transparent 27px, rgba(31, 29, 26, 0.05) 27px, rgba(31, 29, 26, 0.05) 28px, transparent 28px);
  background-size: 100% 28px;
}
.paper-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: 0.06;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.paper-margin {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--margin-x-mobile);
  width: 1px;
  background: rgba(218, 75, 60, 0.45);
}
@media (min-width: 720px) {
  .paper-margin { left: var(--margin-x); }
}

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 0 calc(var(--margin-x-mobile) + 16px);
  width: 100%;
}
@media (min-width: 720px) {
  .wrap {
    padding: 0 32px 0 calc(var(--margin-x) + 24px);
  }
}

.hidden { display: none !important; }

/* ============================================================================
   HEADER
   ============================================================================ */
.site-header {
  border-bottom: 1.5px solid var(--ink);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px 14px calc(var(--margin-x-mobile) + 16px);
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .header-inner { padding-left: calc(var(--margin-x) + 24px); }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--paper);
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.5px;
  transform: rotate(-3deg);
  box-shadow: 2px 2px 0 var(--ink);
  flex-shrink: 0;
}
.brand-words {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.4px;
  color: var(--ink);
}
.brand-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--ink-faint);
  margin-top: 2px;
  font-weight: 500;
}
.header-stamp {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--red);
  border: 1.5px solid var(--red);
  padding: 5px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  transform: rotate(2deg);
  flex-shrink: 0;
}

/* ============================================================================
   VIEWS
   ============================================================================ */
main { padding: 40px 0 80px; min-height: 60vh; }
.view { animation: fadeIn 0.3s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 14px;
  position: relative;
  padding-left: 18px;
}
.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--red);
  transform: translateY(-50%);
}

/* ============================================================================
   HERO
   ============================================================================ */
.hero { margin-bottom: 32px; }

.hero-meta {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 18px;
  font-weight: 700;
}
.hero-meta::before {
  content: "Re: ";
  color: var(--red);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 8.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 20px;
}
.circle-word {
  position: relative;
  display: inline-block;
  z-index: 1;
  white-space: nowrap;
}
.circle-word::after {
  content: "";
  position: absolute;
  inset: -6px -12px;
  border: 3px solid var(--red);
  border-radius: 50%;
  transform: rotate(-3deg) scaleX(1.15);
  z-index: -1;
  opacity: 0.85;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 580px;
}

/* ============================================================================
   FORM CARD
   ============================================================================ */
.form-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px 24px;
  margin-bottom: 24px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.form-tab {
  position: absolute;
  top: -1px;
  left: 22px;
  background: var(--ink);
  color: var(--paper);
  padding: 5px 14px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0 0 6px 6px;
}

.field {
  display: block;
  margin-bottom: 14px;
}
.field-half { margin-bottom: 0; }
.field-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 8px;
  display: block;
}
.field-label-spaced { margin-top: 6px; }

textarea, input[type="number"], input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper-deep);
  transition: all 0.15s;
  -webkit-appearance: none;
}
textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
  font-family: var(--font-sans);
}
textarea:focus, input:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 29, 26, 0.06);
}
textarea::placeholder, input::placeholder {
  color: var(--ink-faint);
  font-style: italic;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .row { grid-template-columns: 1fr; gap: 14px; }
}

.input-prefix {
  position: relative;
}
.input-prefix .prefix {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-faint);
  pointer-events: none;
}
.input-prefix input { padding-left: 30px; }

.btn-primary {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 18px 24px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: -0.2px;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover { background: var(--red); }
.btn-primary:active { transform: translateY(1px); }
.btn-primary:disabled { opacity: 0.55; cursor: wait; }
.btn-arrow {
  display: inline-block;
  transition: transform 0.2s;
  font-size: 20px;
}
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.disclaimer {
  text-align: center;
  color: var(--ink-faint);
  font-size: 13px;
  margin-top: 14px;
  font-family: var(--font-sans);
  font-style: italic;
}

/* ============================================================================
   FOUNDER SIGNATURE (under form)
   ============================================================================ */
.founder-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-faint);
  text-align: center;
  margin-bottom: 56px;
}
.founder-signature strong {
  color: var(--red);
  font-weight: 600;
  font-style: normal;
}

/* ============================================================================
   HOW IT WORKS
   ============================================================================ */
.how { margin-bottom: 48px; }
.how-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}
.how-list li {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}
.how-list li:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-md);
}
.how-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -1px;
}
.how-list h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
  color: var(--ink);
}
.how-list p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============================================================================
   FOUNDER STRIP
   ============================================================================ */
.founder-strip {
  margin-bottom: 48px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
}
.founder-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 239, 230, 0.04) 1px, transparent 1px);
  background-size: 100% 24px;
  pointer-events: none;
}
.founder-strip-inner {
  position: relative;
  z-index: 1;
}
.founder-strip .section-eyebrow { color: rgba(244, 239, 230, 0.55); }
.founder-strip .section-eyebrow::before { background: var(--paper); }
.founder-strip h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 5vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--paper);
}
.founder-strip p {
  color: rgba(244, 239, 230, 0.82);
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 14px;
}
.founder-strip p:last-of-type { margin-bottom: 12px; }
.founder-sign {
  font-family: var(--font-hand);
  font-size: 28px !important;
  color: var(--red-soft) !important;
  margin-top: 14px !important;
  margin-bottom: 0 !important;
  font-weight: 600;
}

/* ============================================================================
   FAQ
   ============================================================================ */
.faq { margin-bottom: 24px; }
.faq h2.section-eyebrow { margin-bottom: 12px; }
.faq-item {
  border-bottom: 1.5px solid var(--line);
  padding: 18px 0;
}
.faq-item:first-of-type { border-top: 1.5px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.2px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--red);
  transition: transform 0.2s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 720px;
}

/* ============================================================================
   LOADING VIEW
   ============================================================================ */
.view-loading { padding: 40px 0; }
.loading {
  text-align: center;
  padding: 50px 20px;
  max-width: 540px;
  margin: 0 auto;
}
.loading-stamp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 32px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 var(--red);
  margin-bottom: 28px;
}
.loading-stamp-text {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 14px;
}
.spinner {
  width: 28px;
  height: 28px;
  border: 2.5px solid rgba(244, 239, 230, 0.18);
  border-top-color: var(--paper);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.loading-sub {
  color: var(--ink-faint);
  font-size: 14px;
  margin-bottom: 28px;
  font-style: italic;
}
.loading-steps {
  list-style: none;
  text-align: left;
  display: inline-block;
  padding: 0;
}
.loading-step {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink-faint);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.loading-step::before {
  content: "○";
  font-size: 14px;
}
.loading-step.active { color: var(--ink); font-weight: 600; }
.loading-step.active::before { content: "●"; color: var(--red); }
.loading-step.done { color: var(--ink-soft); }
.loading-step.done::before { content: "✓"; color: var(--good); }

/* ============================================================================
   RESULT VIEW
   ============================================================================ */
.view-result { padding-top: 12px; }

.btn-back {
  background: none;
  border: none;
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 14px;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 20px;
  font-weight: 600;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
  -webkit-tap-highlight-color: transparent;
}
.btn-back:hover { color: var(--red); }

/* ============================================================================
   REPORT CARD — the screenshot
   ============================================================================ */
.report-shell {
  margin-bottom: 20px;
  position: relative;
}

.report-card {
  background: var(--paper-deep);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 32px 28px 26px;
  position: relative;
  box-shadow: 4px 4px 0 rgba(31, 29, 26, 0.18);
  overflow: hidden;
}
.report-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 24px, rgba(31, 29, 26, 0.04) 24px, rgba(31, 29, 26, 0.04) 25px, transparent 25px);
  background-size: 100% 25px;
  pointer-events: none;
}
.report-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: 0.06;
  mix-blend-mode: multiply;
  pointer-events: none;
}

@media (max-width: 600px) {
  .report-card { padding: 22px 18px 20px; }
}

.rc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1.5px solid var(--ink);
  position: relative;
  gap: 12px;
}
.rc-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.rc-brand-mark {
  width: 26px;
  height: 26px;
  background: var(--red);
  color: var(--paper-deep);
  display: grid;
  place-items: center;
  border-radius: 5px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: -0.3px;
  transform: rotate(-3deg);
}
.rc-brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.rc-meta {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: flex;
  gap: 6px;
  font-weight: 600;
  flex-wrap: wrap;
}
.rc-meta-sep { color: var(--line); }

.rc-stamp {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red);
  border: 2px solid var(--red);
  padding: 5px 10px;
  border-radius: 3px;
  transform: rotate(4deg);
  white-space: nowrap;
  flex-shrink: 0;
}

.rc-subject {
  margin-bottom: 22px;
}
.rc-subject-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.rc-subject-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 4vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--ink);
}

/* THE GRADE BLOCK */
.rc-grade-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px 26px;
  background: var(--ink);
  color: var(--paper-deep);
  border-radius: var(--radius);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.rc-grade-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 239, 230, 0.025) 1px, transparent 1px);
  background-size: 100% 24px;
  pointer-events: none;
}
@media (max-width: 480px) {
  .rc-grade-block { grid-template-columns: 1fr; gap: 12px; padding: 20px; text-align: center; }
}
.rc-grade-side {
  display: flex;
  align-items: center;
}
.rc-grade-label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 3px;
  font-weight: 700;
  color: rgba(244, 239, 230, 0.5);
  line-height: 1.15;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border-left: 2px solid rgba(244, 239, 230, 0.18);
  padding-left: 10px;
  position: relative;
  z-index: 1;
}
@media (max-width: 480px) {
  .rc-grade-label {
    writing-mode: horizontal-tb;
    transform: none;
    border-left: none;
    border-bottom: 2px solid rgba(244, 239, 230, 0.18);
    padding: 0 0 8px 0;
  }
}
.rc-grade-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.rc-grade {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(68px, 13vw, 100px);
  line-height: 0.85;
  letter-spacing: -3px;
  color: var(--paper-deep);
  display: inline-block;
}
.rc-grade-a { color: #6dd393; }
.rc-grade-b { color: #b8d36d; }
.rc-grade-c { color: #ffb84d; }
.rc-grade-d { color: #ff8c5a; }
.rc-grade-f { color: #ff6b62; }
.rc-grade-burn {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(15px, 2.5vw, 17px);
  line-height: 1.4;
  color: rgba(244, 239, 230, 0.92);
  max-width: 520px;
}

/* Sections */
.rc-section {
  padding: 20px 0;
  border-top: 1.5px solid var(--line);
  position: relative;
}
.rc-section:last-of-type { border-bottom: 1.5px solid var(--line); }

.rc-section-title {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rc-section-title::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--red);
}

.rc-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) {
  .rc-price-row { grid-template-columns: 1fr; gap: 12px; }
}
.rc-price-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rc-cell-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 700;
}
.rc-cell-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 3vw, 23px);
  letter-spacing: -0.5px;
  color: var(--ink);
}
.rc-cell-good { color: var(--good); }
.rc-cell-warn { color: var(--warn); }
.rc-cell-bad { color: var(--bad); }

/* Watch list */
.rc-watch-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
.rc-watch-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  padding: 12px 14px;
  background: rgba(218, 75, 60, 0.05);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  position: relative;
  z-index: 1;
}
.rc-watch-num {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.5px;
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 24px;
}

/* Mikey's note */
.rc-note {
  background: rgba(31, 29, 26, 0.025);
  margin: 0 -28px;
  padding: 22px 28px;
}
@media (max-width: 600px) {
  .rc-note { margin: 0 -18px; padding: 22px 18px; }
}
.rc-note-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.rc-note-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 700;
}
.rc-note-signature {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 22px;
  color: var(--red);
}
.rc-note-text {
  font-family: var(--font-display);
  font-size: clamp(15px, 2.4vw, 17px);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
}

/* Report footer */
.rc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-top: 4px;
  border-top: 2px solid var(--ink);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--ink-faint);
  font-weight: 600;
  flex-wrap: wrap;
  gap: 10px;
}
.rc-footer-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rc-footer-tool { color: var(--ink); font-weight: 700; }
.rc-footer-url { color: var(--red); }
.rc-footer-disclaim {
  font-style: italic;
  letter-spacing: 0.3px;
}

/* ============================================================================
   SHARE BAR
   ============================================================================ */
.share-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.share-btn {
  flex: 1;
  min-width: 130px;
  background: #fff;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  padding: 16px 18px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: -0.2px;
  -webkit-tap-highlight-color: transparent;
}
.share-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 0 var(--ink);
}
.share-btn:active { transform: translateY(0); box-shadow: none; }
.share-btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.share-btn-primary:hover {
  background: var(--red);
  border-color: var(--red);
}
.share-icon { font-size: 16px; }

/* ============================================================================
   SELLER MESSAGE
   ============================================================================ */
.seller-section { margin-bottom: 48px; }
.seller-header { margin-bottom: 18px; }
.seller-header h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 4vw, 28px);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.seller-header p {
  color: var(--ink-soft);
  font-size: 15px;
}
.seller-message-card {
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.seller-message {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  white-space: pre-wrap;
  word-wrap: break-word;
  margin-bottom: 18px;
}
.seller-copy-btn {
  background: var(--red);
  color: var(--paper);
  border: none;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  -webkit-tap-highlight-color: transparent;
}
.seller-copy-btn:hover { background: var(--red-deep); }

/* ============================================================================
   NEXT STEPS
   ============================================================================ */
.next-steps { margin-bottom: 32px; }
.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 720px) {
  .next-grid { grid-template-columns: 1fr; }
}
.next-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.2s;
}
.next-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.next-card-disabled {
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}
.next-card-num {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--ink-faint);
  font-weight: 700;
}
.next-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
  color: var(--ink);
}
.next-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============================================================================
   ERROR
   ============================================================================ */
.error-card {
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  max-width: 520px;
  margin: 40px auto;
  box-shadow: 4px 4px 0 var(--red);
}
.error-stamp {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--red);
  border: 2px solid var(--red);
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 18px;
  transform: rotate(-3deg);
}
.error-card h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.error-card p {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin-bottom: 24px;
  line-height: 1.55;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer {
  border-top: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.site-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  padding: 40px 24px 28px calc(var(--margin-x-mobile) + 16px);
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .site-footer-inner { padding-left: calc(var(--margin-x) + 24px); }
}
@media (max-width: 600px) {
  .site-footer-inner { grid-template-columns: 1fr; gap: 24px; }
}
.brand-footer .brand-name { color: var(--paper); }
.brand-footer .brand-tag { color: rgba(244, 239, 230, 0.5); }
.footer-blurb {
  font-size: 14px;
  color: rgba(244, 239, 230, 0.7);
  line-height: 1.6;
  margin-top: 14px;
}
.footer-fine {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-eyebrow {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
  font-weight: 700;
  margin-bottom: 2px;
}
.footer-fine p {
  font-size: 13px;
  color: rgba(244, 239, 230, 0.7);
  line-height: 1.6;
}
.footer-strip {
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(244, 239, 230, 0.5);
  flex-wrap: wrap;
  gap: 8px;
  max-width: 960px;
  margin: 0 auto;
}

/* ============================================================================
   TOAST
   ============================================================================ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--paper);
  padding: 12px 22px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(31, 29, 26, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 100;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================================
   RESPONSIVE TUNING
   ============================================================================ */
@media (max-width: 540px) {
  main { padding: 28px 0 60px; }
  .form-card { padding: 28px 18px 20px; }
  .hero { margin-bottom: 28px; }
  .header-inner { padding-right: 18px; }
  .brand-mark { width: 36px; height: 36px; font-size: 14px; }
  .brand-name { font-size: 16px; }
  .brand-tag { font-size: 10px; }
  .header-stamp { font-size: 9px; padding: 4px 8px; }
  .founder-strip { padding: 26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
