/* Sell Your Binder — public site.
   Palette + type from Joe's Claude Design homepage (2026-07-25):
   warm cream, tan/brown accents, Lora display + Source Sans 3 body. */
:root {
  --page: #faf6ef; --ink: #3a2f24; --kraft: #b0793d; --kraftD: #8a5a2b;
  --kraft-paper: #f2e9db; --hl: #F0E27A; --sleeve: #eadfcd; --sleeveD: #8a5a2b;
  --display: 'Lora', 'Georgia', serif;
  --body: 'Source Sans 3', 'Georgia', sans-serif;
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;            /* audience reads on a phone with reading glasses */
  line-height: 1.55;
}

/* highlighter swipes — the signature marks */
.hl, .hl-soft {
  background: linear-gradient(104deg, transparent 2%, var(--hl) 6%, var(--hl) 94%, transparent 98%);
  padding: 0 0.15em;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.hl-soft { background: linear-gradient(104deg, transparent 2%, #F0E27A99 6%, #F0E27A99 94%, transparent 98%); font-weight: 700; }

.wordmark-row { padding: 18px 20px 0; max-width: 680px; margin: 0 auto; }
.wordmark { font-family: var(--display); font-size: 24px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }

main { max-width: 680px; margin: 0 auto; padding: 0 20px 40px; }
section { margin-top: 56px; }

h1 { font-family: var(--display); font-weight: 700; font-size: clamp(32px, 7.5vw, 46px); line-height: 1.15; letter-spacing: -0.015em; }
h2 { font-family: var(--display); font-weight: 600; font-size: clamp(24px, 5.5vw, 30px); margin-bottom: 18px; }

.hero { margin-top: 40px; text-align: left; }
.hero .sub { margin-top: 18px; font-size: 20px; }
.tiny-reassure { margin-top: 12px; font-size: 15px; color: #5c554e; }

@media (prefers-reduced-motion: no-preference) {
  .rise { animation: rise 0.7s ease-out both; }
  @keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
}

.cta {
  display: inline-block; margin-top: 26px;
  background: var(--kraft); color: #fffdf8; text-decoration: none;
  font-family: var(--body); font-weight: 700; font-size: 21px;
  padding: 16px 34px; border-radius: 14px; border: none; cursor: pointer;
  box-shadow: 0 6px 18px rgba(138, 90, 43, 0.28);
}
.cta:hover { background: #9a6832; }
.cta:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 3px solid var(--sleeveD); outline-offset: 2px;
}

/* How it works — the journey a box takes */
.steps { list-style: none; padding: 0; display: grid; gap: 22px; position: relative; }
.steps li { display: flex; gap: 16px; align-items: flex-start; }
.stepnum {
  flex: 0 0 44px; height: 44px; border-radius: 50%;
  background: var(--kraft); color: #fff;
  font-family: var(--display); font-size: 22px;
  display: grid; place-items: center;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.15);
}
.steps { --line-x: 21px; }
.steps::before {
  content: ''; position: absolute; left: var(--line-x); top: 44px; bottom: 22px;
  border-left: 3px dashed var(--kraft); opacity: 0.5;
}

/* What we're looking for — a pure-CSS binder page (we've seen a hundred of these) */
.looking-flex { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.binderpage {
  flex: 0 0 180px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  background: var(--sleeve); padding: 12px; border-radius: 8px;
  border: 1px solid #A9BDCD;
  box-shadow: 0 2px 6px rgba(84,114,140,0.25);
  position: relative;
}
.binderpage::before { /* binder holes */
  content: ''; position: absolute; left: -5px; top: 14px; bottom: 14px; width: 10px;
  background: radial-gradient(circle 5px at 5px 10%, var(--page) 4.5px, transparent 5px),
              radial-gradient(circle 5px at 5px 50%, var(--page) 4.5px, transparent 5px),
              radial-gradient(circle 5px at 5px 90%, var(--page) 4.5px, transparent 5px);
}
.sleeve {
  aspect-ratio: 63/88; border-radius: 4px;
  background: linear-gradient(160deg, #FBFDFE 0%, #DCE7EE 100%);
  border: 1px solid #B9CBD8;
}
.sleeve.holo { background: linear-gradient(150deg, #f8f0c8 0%, #e8d27f 45%, #cfe3f0 100%); }
.looking-copy { flex: 1 1 300px; display: grid; gap: 12px; }

/* The form — a kraft shipping label with packing tape (signature element) */
.form-section { margin-top: 64px; }
.label-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #eadfcd;
  border-radius: 14px;
  padding: 30px 22px 26px;
  box-shadow: 0 2px 8px rgba(90, 70, 45, 0.05);
}
.tape {
  position: absolute; top: -14px; width: 110px; height: 30px;
  background: rgba(240,235,215,0.65); border: 1px solid rgba(138,98,56,0.25);
  transform: rotate(-3deg);
}
.tape-l { left: 8%; } .tape-r { right: 8%; transform: rotate(2.5deg); }
.form-intro { margin-bottom: 20px; color: #5c5347; }

form { display: grid; gap: 18px; }
label { display: grid; gap: 6px; font-weight: 700; font-size: 17px; }
.opt { font-weight: 400; color: #6d6355; font-size: 15px; }
.req { font-weight: 400; color: var(--kraftD); font-size: 15px; }
input[type=text], input[type=email], input[type=tel], select, textarea {
  font: inherit; font-size: 18px; padding: 12px 12px; min-height: 48px;
  border: 1.5px solid #d8c9ae; border-radius: 10px; background: #fffdf8; color: var(--ink);
  width: 100%;
}
textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }

.photo-block { display: grid; gap: 8px; }
.photo-label { font-weight: 700; font-size: 17px; }
.photo-help { font-size: 15px; color: #6d6355; }
.photo-btn {
  font: inherit; font-size: 19px; font-weight: 700;
  padding: 18px; border-radius: 14px; cursor: pointer;
  border: 3px dashed var(--kraft); background: var(--kraft-paper); color: var(--kraftD);
}
.photo-btn:hover { background: #ecdfc9; }
.thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; }
.thumbs .th { position: relative; aspect-ratio: 1; border-radius: 6px; overflow: hidden; border: 1px solid #B9A583; }
.thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumbs .rm {
  position: absolute; top: 2px; right: 2px; border: 0; border-radius: 50%;
  width: 26px; height: 26px; background: rgba(43,38,34,0.75); color: #fff; cursor: pointer; font-size: 14px;
}
.check { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; font-size: 16px; }
.check input { width: 22px; height: 22px; margin-top: 2px; flex: 0 0 auto; }
.submit-btn { width: 100%; margin-top: 4px; }
.submit-btn[disabled] { opacity: 0.6; cursor: wait; }
.form-error { color: #9c2f21; font-weight: 700; min-height: 1em; }
.form-done h3 { font-family: var(--display); font-size: 26px; margin-bottom: 10px; }
.form-done a { color: var(--sleeveD); }

.trust ul { list-style: none; padding: 0; display: grid; gap: 12px; font-size: 18px; }
.trust li::before { content: '✓  '; color: var(--kraftD); font-weight: 700; }

footer { max-width: 680px; margin: 60px auto 0; padding: 24px 20px 46px; border-top: 2px dashed var(--kraft); }
footer a { color: var(--sleeveD); }
footer .tiny { font-size: 14px; color: #6d6355; margin-top: 6px; }

/* Status page */
.status-steps { list-style: none; padding: 0; display: grid; gap: 14px; margin-top: 24px; }
.status-steps li { display: flex; gap: 12px; align-items: baseline; }
.status-steps .dot { flex: 0 0 16px; height: 16px; border-radius: 50%; background: #CBD6DD; align-self: center; }
.status-steps li.done .dot { background: var(--kraftD); }
.status-steps li.done { font-weight: 700; }
.status-steps .when { margin-left: auto; font-size: 14px; color: #6d6355; }

.prose { display: grid; gap: 14px; }
.prose h2 { margin-top: 18px; margin-bottom: 0; }
