:root {
  --bg: #f6f2ec;
  --bg-2: #efe8de;
  --ink: #0e0e0c;
  --ink-2: #2a2a26;
  --muted: #6b675e;
  --line: #d9d2c4;
  --accent: #ff5b1f;
  --accent-2: #ffb547;
  --paper: #ffffff;
  --green: #1f7a4a;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-1: 0 1px 0 rgba(14,14,12,0.05), 0 20px 40px -24px rgba(14,14,12,0.18);
  --shadow-2: 0 30px 80px -40px rgba(14,14,12,0.4);
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Grain overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  opacity: 0.35;
  z-index: 200;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.09 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid #000;
}
.ticker__track {
  display: flex;
  gap: 40px;
  padding: 10px 0;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ticker__track span { flex: 0 0 auto; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  background: rgba(246, 242, 236, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__logo { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.nav__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--ink); color: var(--bg);
  border-radius: 8px;
  font-family: var(--serif); font-weight: 900; font-size: 18px;
  transform: rotate(-4deg);
}
.nav__word {
  font-family: var(--serif); font-weight: 700; font-size: 22px; letter-spacing: -0.02em;
}
.nav__links { display: flex; gap: 26px; font-size: 14px; color: var(--ink-2); }
.nav__links a:hover { color: var(--accent); }
.nav__cta {
  background: var(--ink); color: var(--bg);
  padding: 10px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  transition: transform .15s ease, background .15s ease;
}
.nav__cta:hover { background: var(--accent); transform: translateY(-1px); }

@media (max-width: 720px) {
  .nav { padding: 14px 18px; }
  .nav__links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 32px 120px;
  overflow: hidden;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 30% 40%, black 30%, transparent 75%);
  opacity: 0.55;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: 760px;
  z-index: 2;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,91,31,0.18);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 10px rgba(255,91,31,0); }
}

.hero__title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 128px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  font-variation-settings: "opsz" 144;
}
.hero__title-italic {
  font-style: italic;
  font-weight: 500;
  display: inline-block;
  background: linear-gradient(100deg, var(--accent) 0%, #ff8a3d 60%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__title-strike {
  display: block;
  position: relative;
  font-style: italic;
  font-weight: 500;
  color: var(--ink-2);
  width: fit-content;
}
.hero__title-strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  top: 52%;
  height: 5px;
  background: var(--ink);
  transform: rotate(-2deg);
  border-radius: 2px;
}

.hero__sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 0 32px;
  line-height: 1.55;
}

.hero__form, .final__form {
  display: flex;
  gap: 8px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  max-width: 520px;
  box-shadow: var(--shadow-1);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.hero__form:focus-within, .final__form:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(14,14,12,0.06), var(--shadow-1);
}
.hero__form input, .final__form input {
  flex: 1;
  border: none; outline: none; background: transparent;
  padding: 12px 18px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  min-width: 0;
}
.hero__form button, .final__form button {
  display: inline-flex; align-items: center; gap: 8px;
  border: none;
  background: var(--ink); color: var(--bg);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: background .15s ease, transform .15s ease;
  white-space: nowrap;
}
.hero__form button:hover, .final__form button:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.hero__meta {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.hero__meta strong { color: var(--ink); font-weight: 700; }
.sep { opacity: 0.4; }

/* Floater cards */
.floaters {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
}
.floater {
  position: absolute;
  display: flex; gap: 10px; align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px 10px 10px;
  box-shadow: var(--shadow-1);
  animation: float 8s ease-in-out infinite;
}
.floater__thumb {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  flex: 0 0 auto;
}
.floater__label { font-size: 13px; font-weight: 600; }
.floater__price { font-size: 12px; color: var(--muted); margin-top: 2px; }
.f1 { top: 8%; right: 6%; transform: rotate(3deg); animation-delay: 0s; }
.f2 { top: 40%; right: 3%; transform: rotate(-4deg); animation-delay: 1.5s; }
.f3 { top: 68%; right: 14%; transform: rotate(2deg); animation-delay: 3s; }
.f4 { top: 22%; right: 22%; transform: rotate(-2deg); animation-delay: 4.5s; }
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}
@media (max-width: 900px) {
  .floaters { display: none; }
  .hero { padding: 50px 20px 70px; }
}

/* ---------- Stats ---------- */
.stats {
  background: var(--ink);
  color: var(--bg);
  padding: 40px 32px;
}
.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.stat__num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--bg);
}
.stat__label {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(246, 242, 236, 0.65);
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .stats { padding: 32px 20px; }
  .stats__row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ---------- Section shell ---------- */
.section__head {
  padding: 100px 32px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section__eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.section__title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 900px;
}
.section__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
@media (max-width: 720px) {
  .section__head { padding: 60px 20px 24px; }
}

/* ---------- How ---------- */
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 20px 32px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.step__num {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.step__visual {
  margin: 20px 0 24px;
  height: 180px;
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.step p {
  color: var(--ink-2);
  font-size: 15px;
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .how__grid { grid-template-columns: 1fr; padding: 20px 20px 40px; }
}

/* Phone illustration */
.phone {
  width: 100px; height: 150px;
  background: var(--ink);
  border-radius: 18px;
  padding: 6px;
  position: relative;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.4);
}
.phone__screen {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1a1a17, #2a2a24);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.phone__scanline {
  position: absolute;
  left: 6%; right: 6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 12px var(--accent);
  animation: scan 2.2s ease-in-out infinite;
}
@keyframes scan {
  0%, 100% { top: 10%; }
  50% { top: 85%; }
}
.phone__dot {
  position: absolute;
  width: 8px; height: 8px;
  border: 1.5px solid var(--accent);
  border-radius: 2px;
}
.phone__dot--1 { top: 22%; left: 20%; }
.phone__dot--2 { top: 40%; right: 18%; }
.phone__dot--3 { bottom: 28%; left: 30%; }
.phone__tag {
  position: absolute;
  bottom: 8px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Sell card illustration */
.sell-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  width: 82%;
  font-size: 12px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15);
}
.sell-card__row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}
.sell-card__row:last-child { border-bottom: none; }
.sell-card__row--total {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--ink);
  border-bottom: none;
  font-family: var(--serif);
  font-size: 14px;
}
.sell-card__row--total strong { color: var(--green); }

/* Truck illustration */
.truck {
  position: relative;
  width: 180px; height: 90px;
}
.truck__body {
  position: absolute;
  left: 0; top: 20px;
  width: 100px; height: 50px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 4px;
}
.truck__cab {
  position: absolute;
  left: 100px; top: 32px;
  width: 44px; height: 38px;
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: 4px 8px 0 0;
}
.truck__wheel {
  position: absolute;
  width: 18px; height: 18px;
  background: var(--ink);
  border-radius: 50%;
  top: 66px;
}
.truck__wheel--1 { left: 15px; }
.truck__wheel--2 { left: 115px; }
.road {
  position: absolute;
  left: -20px; right: -20px;
  bottom: 6px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 12px, transparent 12px 20px);
  animation: road 1s linear infinite;
}
@keyframes road {
  from { transform: translateX(0); }
  to { transform: translateX(-20px); }
}

/* ---------- Statement ---------- */
.statement {
  padding: 100px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.statement__body {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
}
.hl {
  background: linear-gradient(180deg, transparent 62%, var(--accent-2) 62%, var(--accent-2) 92%, transparent 92%);
  padding: 0 4px;
  font-style: italic;
}
@media (max-width: 720px) {
  .statement { padding: 60px 20px; }
}

/* ---------- Proof ---------- */
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 32px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .3s ease;
}
.testimonial:hover { transform: translateY(-4px); }
.testimonial.tone-orange { background: linear-gradient(160deg, #ffe9d9, #ffd0b3); border-color: #ffb98a; }
.testimonial.tone-cream { background: var(--paper); }
.testimonial.tone-ink { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.testimonial.tone-ink .testimonial__meta,
.testimonial.tone-ink .testimonial__name span { color: rgba(246,242,236,0.6); }
.testimonial__stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }
.testimonial.tone-ink .testimonial__stars { color: var(--accent-2); }
.testimonial__quote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
}
.testimonial__foot {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c1, #f4d3a2), var(--c2, #e2a56b));
  flex: 0 0 auto;
}
.testimonial__name { font-weight: 600; font-size: 14px; }
.testimonial__name span { display: block; font-weight: 400; color: var(--muted); font-size: 12px; margin-top: 2px; }
.testimonial__payout {
  margin-left: auto;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--green);
}
.testimonial.tone-ink .testimonial__payout { color: var(--accent-2); }
@media (max-width: 900px) {
  .proof__grid { grid-template-columns: 1fr; padding: 20px 20px 40px; }
}

/* ---------- VS ---------- */
.vs__table {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 32px;
}
.vs__row {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  font-size: 15px;
}
.vs__row--head {
  background: var(--ink);
  color: var(--bg);
  border-radius: 14px;
  border-bottom: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.vs__label { font-weight: 600; color: var(--ink-2); }
.vs__cell--good {
  color: var(--green);
  font-weight: 700;
}
@media (max-width: 720px) {
  .vs__table { padding: 0 12px; overflow-x: auto; }
  .vs__row { grid-template-columns: 1.2fr repeat(4, minmax(90px, 1fr)); min-width: 620px; font-size: 13px; padding: 14px 12px; }
}

/* ---------- FAQ ---------- */
.faq__list {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 32px;
}
.faq__item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  cursor: pointer;
  transition: padding .2s ease;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.faq__toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  font-size: 18px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.faq__item.open .faq__toggle { background: var(--accent); color: var(--bg); border-color: var(--accent); transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  color: var(--ink-2);
  transition: max-height .3s ease, margin-top .3s ease;
}
.faq__item.open .faq__a { max-height: 300px; margin-top: 12px; }
.faq__a p { margin: 0; font-size: 16px; line-height: 1.6; max-width: 700px; }

@media (max-width: 720px) {
  .faq__list { padding: 0 20px; }
  .faq__q { font-size: 18px; }
}

/* ---------- Final CTA ---------- */
.final {
  margin: 60px 20px 40px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 32px;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,91,31,0.35), transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(255,181,71,0.25), transparent 50%);
  pointer-events: none;
}
.final__inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.final__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(246,242,236,0.2);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(246,242,236,0.75);
  margin-bottom: 28px;
}
.final__title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
}
.final__title-italic {
  font-style: italic; font-weight: 500;
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.final__sub {
  color: rgba(246,242,236,0.7);
  font-size: 18px;
  max-width: 480px;
  margin: 0 auto 32px;
}
.final__form {
  margin: 0 auto;
  background: rgba(246,242,236,0.08);
  border-color: rgba(246,242,236,0.15);
}
.final__form input { color: var(--bg); }
.final__form input::placeholder { color: rgba(246,242,236,0.4); }
.final__form button { background: var(--accent); color: var(--ink); }
.final__form button:hover { background: var(--accent-2); }
.final__meta {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(246,242,236,0.55);
}
@media (max-width: 720px) {
  .final { padding: 60px 20px; margin: 40px 12px; }
}

/* ---------- Footer ---------- */
.footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 30px 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__left { display: flex; align-items: center; gap: 10px; }
.footer__right { display: flex; gap: 20px; align-items: center; }
.footer__right a:hover { color: var(--accent); }
@media (max-width: 720px) {
  .footer { padding: 24px 20px; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 300;
  box-shadow: var(--shadow-2);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Reveal ---------- */
/* Elements are visible by default; JS adds .reveal-arm to hide, IO adds .in to reveal. */
.reveal-arm {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-arm.in { opacity: 1; transform: translateY(0); }
