/* cakewalk.ai — company site. Mobile first; no external fonts or scripts. */

:root {
  --ink: #123329;
  --ink-2: #1b4637;
  --ink-3: #0b231c;
  --paper: #f7f5ee;
  --sand: #edefe6;
  --card: #ffffff;
  --lime: #c7d84b;
  --lime-2: #d6e36c;
  --clay: #e08161;
  --clay-ink: #a8492c;
  --text: #16211c;
  --muted: #4b5e55;
  --line: #d8dccf;
  --on-ink: #eef2e8;
  --on-ink-muted: #b6c4bb;
  --display: "Archivo", "Inter Tight", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  --radius: 14px;
  --wrap: 1160px;
  --gutter: 20px;
  --shadow: 0 24px 50px -30px rgba(18, 51, 41, .45);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font: 17px/1.55 var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
figure { margin: 0; }
a { color: var(--clay-ink); text-underline-offset: 3px; }
h1, h2, h3 { font-family: var(--display); color: var(--ink); margin: 0; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; border-radius: 4px; }
.hero :focus-visible, .section-ink :focus-visible, .offer :focus-visible { outline-color: var(--lime); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }
.sr, .hp {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.i {
  width: 24px; height: 24px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.skip {
  position: absolute; left: 12px; top: -48px; z-index: 20;
  background: var(--lime); color: var(--ink); padding: 10px 14px; border-radius: 8px;
  font-weight: 700; text-decoration: none;
}
.skip:focus { top: 12px; }
.muted { color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border-radius: 999px; border: 2px solid transparent;
  font: 700 16px/1 var(--body); text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .12s ease, background-color .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--lime-2); }
.btn-ink { background: var(--ink); color: var(--on-ink); }
.btn-ink:hover { background: var(--ink-2); }
.btn-ghost { border-color: rgba(238, 242, 232, .45); color: var(--on-ink); }
.btn-ghost:hover { border-color: var(--on-ink); }
.btn-ghost-ink { border-color: var(--ink); color: var(--ink); }
.btn-ghost-ink:hover { background: var(--ink); color: var(--on-ink); }

/* Small mono labels — the work-order stamp */
.tag {
  display: inline-block; margin: 0 0 14px;
  font: 600 12.5px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase;
  color: var(--clay-ink);
}
.tag::before { content: "// "; opacity: .7; }
.tag-dark { color: var(--lime); }

/* Header */
.site-head {
  position: sticky; top: 0; z-index: 10;
  background: rgba(247, 245, 238, .92);
  -webkit-backdrop-filter: saturate(1.4) blur(10px); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: 30px; height: 30px; flex: none; }
.brand-word { font: 800 21px/1 var(--display); letter-spacing: -.03em; color: var(--ink); }
.head-nav { display: flex; align-items: center; gap: 22px; }
.head-nav a:not(.btn) { display: none; color: var(--ink); font-weight: 600; font-size: 15px; text-decoration: none; }
.head-nav a:not(.btn):hover { color: var(--clay-ink); }
@media (min-width: 720px) { .head-nav a:not(.btn) { display: inline; } }

/* Sections */
.section { padding: 72px 0; }
.section-sand { background: var(--sand); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-ink { background: var(--ink); color: var(--on-ink); }
.section-ink .h2, .section-ink h3 { color: #fff; }
.h2 {
  font-size: clamp(1.9rem, 6vw, 3.1rem); line-height: 1.04; letter-spacing: -.03em; font-weight: 800;
  max-width: 22ch; margin-bottom: 36px;
}
@media (min-width: 960px) { .section { padding: 104px 0; } }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(rgba(199, 216, 75, .06) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(90deg, rgba(199, 216, 75, .06) 1px, transparent 1px) 0 0 / 28px 28px,
    radial-gradient(120% 90% at 85% 0%, var(--ink-2) 0%, var(--ink) 55%, var(--ink-3) 100%);
  color: var(--on-ink);
  padding: 48px 0 64px;
}
.hero-grid { display: grid; gap: 40px; align-items: center; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 9.5vw, 4.3rem); line-height: 1; letter-spacing: -.035em; font-weight: 800;
  margin-bottom: 20px; max-width: 14ch;
}
.mark {
  background: linear-gradient(transparent 80%, rgba(199, 216, 75, .9) 80%, rgba(199, 216, 75, .9) 91%, transparent 91%);
  color: #fff; padding: 0 .06em; margin: 0 -.06em; white-space: nowrap;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.lede { font-size: 1.16rem; line-height: 1.5; color: var(--on-ink); max-width: 30rem; margin-bottom: 26px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.proof { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 18px; }
.proof li { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: #fff; }
.proof .i { width: 20px; height: 20px; color: var(--lime); }
.hero-fine { font-size: .92rem; color: var(--on-ink-muted); margin: 0; }

.hero-visual { position: relative; }
.hero-photo img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 20px;
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, .6);
}
/* Phones: the photo stays whole and the text thread tucks under its lower edge. */
.phone-float { position: relative; width: 86%; max-width: 320px; margin: -64px 0 0 auto; }
@media (min-width: 960px) {
  .hero { padding: 80px 0 96px; }
  .hero-grid { grid-template-columns: 1fr 1.05fr; gap: 56px; }
  .hero-visual { margin-bottom: 70px; }
  .phone-float { position: absolute; margin: 0; left: -48px; bottom: -110px; width: 290px; }
}

/* Phone mock (SMS thread) */
.phone { margin: 0; }
.phone-body {
  background: #f4f4f1; border-radius: 30px; padding: 8px;
  border: 8px solid #0a1a15;
  box-shadow: 0 30px 60px -18px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .06);
}
.phone-top {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 8px 12px; border-bottom: 1px solid #e2e3dd; margin-bottom: 10px;
}
.phone-av {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); color: var(--lime); font: 800 14px/1 var(--display);
}
.phone-who { display: flex; flex-direction: column; line-height: 1.2; }
.phone-who strong { color: #111; font-size: 14px; }
.phone-who span { color: #6b7069; font-size: 11.5px; }
.thread { list-style: none; margin: 0; padding: 0 3px 6px; display: flex; flex-direction: column; gap: 7px; }
.msg {
  max-width: 86%; padding: 8px 12px; border-radius: 17px;
  font-size: 13.5px; line-height: 1.35; color: #111; overflow-wrap: anywhere;
}
.msg.in { background: #e6e7e2; align-self: flex-start; border-bottom-left-radius: 6px; }
.msg.out { background: var(--ink); color: #fff; align-self: flex-end; border-bottom-right-radius: 6px; }
/* A link as a phone shows it inside a text: blue, underlined, on its own line. */
.msg-link {
  display: block; margin-top: 3px; color: #1a5fd0; text-decoration: underline; text-underline-offset: 2px;
  /* One line, like a phone shows a URL: never split mid-address. */
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; overflow-wrap: normal;
}

/* Who's who in the 9:47pm story: the customer and you are different people. */
.beat-media { position: relative; }
.beat-who {
  position: absolute; top: 10px; left: 10px; z-index: 1;
  padding: 5px 9px; border-radius: 6px; background: rgba(11, 35, 28, .82); color: var(--on-ink);
  font: 700 11px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase;
}

/* "Change your site from the truck" */
.truck-grid { display: grid; gap: 40px; align-items: center; }
.truck-lede { font-size: 1.1rem; line-height: 1.5; color: var(--muted); max-width: 34rem; margin: 0 0 26px; }
.ways { display: grid; gap: 12px; }
.way { border-radius: var(--radius); padding: 18px 18px 16px; border: 1px solid var(--line); background: var(--card); }
.way-h { font: 700 12px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; margin: 0 0 14px; }
.way-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.way-steps li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; line-height: 1.3; }
.way-steps .i { flex: none; width: 20px; height: 20px; }
.way-old { background: transparent; color: var(--muted); }
.way-old .way-h { color: var(--clay-ink); }
.way-old .way-steps li { text-decoration: line-through; text-decoration-color: rgba(224, 129, 97, .75); text-decoration-thickness: 2px; }
.way-old .i, .way-dollar { color: var(--clay); }
.way-dollar { flex: none; width: 20px; text-align: center; font: 800 17px/1 var(--mono); }
.way-new { background: var(--ink); border-color: var(--ink); color: var(--on-ink); box-shadow: var(--shadow); }
.way-new .way-h, .way-new .i { color: var(--lime); }
.truck-visual { position: relative; }
.truck-phone { margin-top: -86px; }
@media (min-width: 560px) { .ways { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) {
  .truck-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 56px; }
}

/* "Things owners text" strip */
.texts { background: var(--lime); padding: 22px 0; }
.texts-h {
  font: 600 12.5px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 14px;
}
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
  font: 600 15px/1 var(--mono); color: var(--ink);
  background: rgba(255, 255, 255, .55); border: 1px solid rgba(18, 51, 41, .18);
  padding: 9px 12px; border-radius: 999px;
}

/* Showcase: the real product in device frames */
.devices { position: relative; padding-right: 22%; margin-bottom: 36px; }
.laptop-screen {
  background: #0d1411; border: 10px solid #1e2522; border-bottom-width: 14px;
  border-radius: 16px 16px 4px 4px; overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(18, 51, 41, .55);
}
.laptop-screen img { width: 100%; }
.laptop-base {
  height: 14px; margin: 0 -5%;
  background: linear-gradient(#dfe2da, #b8bcb2); border-radius: 0 0 16px 16px;
  box-shadow: 0 10px 20px -12px rgba(0, 0, 0, .4);
}
.device {
  background: #0a1a15; border-radius: 26px; padding: 7px; overflow: hidden;
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, .55);
}
.device img { border-radius: 20px; width: 100%; }
.device-chat { position: absolute; right: 0; bottom: -24px; width: 28%; max-width: 250px; }
.callouts { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.callouts li { display: flex; gap: 14px; align-items: flex-start; }
.callouts .i {
  width: 44px; height: 44px; padding: 10px; border-radius: 12px;
  background: var(--ink); color: var(--lime);
}
.callouts strong { display: block; font: 700 1.05rem/1.25 var(--display); color: var(--ink); }
.callouts span { color: var(--muted); font-size: .98rem; line-height: 1.45; }
.demo-note { margin: 22px 0 0; font: 500 12.5px/1.4 var(--mono); color: var(--muted); }
@media (min-width: 760px) { .callouts { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 960px) { .devices { margin: 0 auto 56px; max-width: 980px; } .device-chat { bottom: -40px; } }

/* Storyboard: a lead at 9:47 pm */
.story-sec { background:
  radial-gradient(90% 70% at 0% 0%, var(--ink-2) 0%, var(--ink) 60%, var(--ink-3) 100%); }
.story { list-style: none; margin: 0; padding: 0 0 0 26px; display: grid; gap: 34px; position: relative; }
.story::before {
  content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(var(--lime), rgba(199, 216, 75, .15));
}
.beat { position: relative; }
.beat::before {
  content: ""; position: absolute; left: -26px; top: 4px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--ink); border: 3px solid var(--lime);
}
.beat-media {
  position: relative; border-radius: 16px; overflow: hidden; margin-bottom: 16px;
  aspect-ratio: 4 / 3; background: var(--ink-3);
}
.beat-media img { width: 100%; height: 100%; object-fit: cover; }
.beat-time {
  display: inline-block; margin: 0 0 8px; padding: 5px 9px; border-radius: 6px;
  font: 700 13px/1 var(--mono); color: var(--ink); background: var(--lime);
}
.beat h3 { font-size: 1.25rem; line-height: 1.2; letter-spacing: -.015em; margin-bottom: 4px; }
.beat > p:last-child { margin: 0; color: var(--on-ink-muted); font-size: .98rem; }
.beat-chat {
  display: flex; flex-direction: column; justify-content: flex-end; gap: 7px; padding: 14px;
  background: #f4f4f1;
}
.bub {
  margin: 0; max-width: 88%; padding: 7px 11px; border-radius: 15px;
  font-size: 13px; line-height: 1.32; color: #111;
}
.bub-them { align-self: flex-end; background: #1f4e79; color: #fff; border-bottom-right-radius: 5px; }
.bub-us { align-self: flex-start; background: #e4e6df; border-bottom-left-radius: 5px; }
.bub-you { align-self: flex-end; background: var(--ink); color: #fff; border-bottom-right-radius: 5px; font-weight: 700; }
.bub-over {
  position: absolute; left: 12px; right: 12px; bottom: 12px; max-width: none;
  background: rgba(244, 244, 241, .96); box-shadow: 0 10px 24px -10px rgba(0, 0, 0, .5);
  border-radius: 14px;
}
.beat-done { background: #eaf0d2; }
.beat-badge {
  align-self: flex-start; display: flex; align-items: center; gap: 6px; margin: 6px 0 0;
  padding: 7px 12px; border-radius: 999px; background: var(--ink); color: var(--lime);
  font: 700 13px/1 var(--mono); text-transform: uppercase; letter-spacing: .06em;
}
.beat-badge .i { width: 18px; height: 18px; }
@media (min-width: 900px) {
  .story { grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 30px 0 0; }
  /* Narrow columns: square frames give the chat beats room for four bubbles. */
  .beat-media { aspect-ratio: 1 / 1; }
  .story::before { left: 0; right: 0; top: 7px; bottom: auto; width: auto; height: 2px;
    background: linear-gradient(90deg, var(--lime), rgba(199, 216, 75, .2)); }
  .beat::before { left: 0; top: -30px; }
}

/* Value stack: bars, tiles and the offer */
.compare {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 20px; margin-bottom: 18px; box-shadow: var(--shadow);
  display: grid; gap: 18px;
}
.compare-row { display: grid; grid-template-columns: 1fr; gap: 8px; align-items: center; }
.compare-label {
  margin: 0;
  font: 600 12.5px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.bar { display: flex; gap: 3px; height: 46px; border-radius: 10px; overflow: hidden; }
.seg {
  flex-basis: 0; min-width: 22px; display: grid; place-items: center;
  background: var(--clay); color: #fff;
}
.seg:nth-child(2) { background: #c96a4b; }
.seg:nth-child(3) { background: #d77a5a; }
.seg:nth-child(4) { background: #b75c3f; }
.seg:nth-child(5) { background: #e39073; }
.seg:nth-child(6) { background: #c4643f; }
.seg .i { width: 18px; height: 18px; }
@media (max-width: 480px) { .seg .i { width: 15px; height: 15px; } }
.bar-one {
  width: 32%; min-width: 118px; background: var(--lime); color: var(--ink);
  font: 700 14px/1 var(--mono); align-items: center; padding: 0 14px;
}
.compare-total { margin: 0; font: 800 clamp(1.3rem, 5vw, 1.8rem)/1 var(--mono); color: var(--clay-ink); white-space: nowrap; }
.compare-one { color: var(--ink); font-size: clamp(1.05rem, 4vw, 1.4rem); }
.per { font-weight: 500; color: var(--muted); font-size: .72em; }
.tiles { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tile {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px; display: flex; flex-direction: column;
}
.tile-ico {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: var(--sand); color: var(--ink); margin-bottom: 12px;
}
.tile h3 { font-size: 1.02rem; line-height: 1.2; letter-spacing: -.01em; margin-bottom: 6px; }
.tile p { margin: 0 0 10px; color: var(--muted); font-size: .9rem; line-height: 1.4; }
.tile .tile-cost { margin: auto 0 0; font: 700 .95rem/1 var(--mono); color: var(--clay-ink); }
.receipt-note { margin: 14px 0 28px; font-size: 12.5px; line-height: 1.45; color: var(--muted); }
@media (min-width: 760px) {
  .compare { padding: 28px 30px; }
  .compare-row { grid-template-columns: 160px 1fr 150px; }
  .compare-label { grid-column: auto; }
  .compare-total { text-align: right; }
  .tiles { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .tile { padding: 22px; }
}
@media (min-width: 1100px) { .tiles { grid-template-columns: repeat(4, 1fr); } }
/* The line item the offer leans on: unlimited changes. */
.tile-hot { border-color: var(--lime); box-shadow: 0 0 0 2px var(--lime) inset; }
.tile-hot .tile-ico { background: var(--lime); }
/* The total, as the last tile. */
.tile-sum { background: var(--ink); border-color: var(--ink); justify-content: center; gap: 2px; }
.tile-sum p { margin: 0; }
.tile .tile-sum-label { font: 600 11.5px/1.2 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--on-ink-muted); }
.tile .tile-sum-was {
  font: 800 1.35rem/1.1 var(--mono); color: #f0a488; margin-bottom: 12px;
  text-decoration: line-through; text-decoration-thickness: 2px;
}
.tile .tile-sum-was .per { color: var(--on-ink-muted); }
.tile .tile-sum-now { font: 800 1.1rem/1.2 var(--display); color: var(--lime); }

.offer {
  background: radial-gradient(120% 80% at 100% 0%, var(--ink-2) 0%, var(--ink) 60%, var(--ink-3) 100%);
  color: var(--on-ink); border-radius: 20px; padding: 26px 22px;
  box-shadow: 0 30px 60px -30px rgba(11, 35, 28, .7);
  display: grid; gap: 26px;
}
.offer-h { color: #fff; font-size: clamp(1.8rem, 6vw, 2.4rem); line-height: 1.04; letter-spacing: -.03em; margin-bottom: 16px; }
.offer-price { font: 800 2.3rem/1 var(--mono); color: var(--lime); letter-spacing: -.02em; margin: 0 0 16px; }
/* A checklist, not pills: nothing here may look like the lime CTA below it. */
.offer-terms {
  list-style: none; margin: 0 0 26px; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px;
}
.offer-terms li {
  display: flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 600; line-height: 1.25;
  color: rgba(238, 242, 232, .92);
}
.offer-terms li .i { flex: none; width: 19px; height: 19px; color: var(--lime); }
.offer-risk-h { font: 700 1.05rem/1.2 var(--display); color: #fff; margin-bottom: 14px; }
.risk { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.risk li {
  display: flex; gap: 12px; align-items: center; padding: 12px 14px; border-radius: 12px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(238, 242, 232, .14);
  font-size: .96rem; line-height: 1.35;
}
.risk .i { color: var(--lime); }
.risk strong { color: #fff; }
@media (min-width: 900px) {
  .offer { grid-template-columns: .9fr 1.1fr; gap: 44px; padding: 38px 40px; align-items: center; }
  .risk { grid-template-columns: 1fr 1fr; }
}

/* Three looks */
.look-strip { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.browser {
  border-radius: 12px; overflow: hidden; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.browser-bar { display: flex; gap: 6px; padding: 9px 12px; background: #e6e8e0; }
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: #c3c8bb; }
.browser-bar i:first-child { background: var(--clay); }
.browser img { width: 100%; }
.look-name { margin: 12px 0 0; font: 700 1.05rem/1 var(--display); color: var(--ink); text-align: center; }
@media (min-width: 760px) { .look-strip { grid-template-columns: repeat(3, 1fr); } }

.looks-inline { margin-top: 56px; }
.looks-h { font-size: 1.3rem; letter-spacing: -.015em; margin-bottom: 18px; }

/* Proof sections: one per fix, in the order of the four cards */
.proof-grid { display: grid; gap: 40px; align-items: center; }
.proof-copy .h2 { margin-bottom: 18px; }
.proof-lede { font-size: 1.1rem; line-height: 1.5; color: var(--muted); max-width: 34rem; margin: 0 0 28px; }
.proof-copy .callouts { grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 960px) {
  .proof-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; }
  .proof-flip > :last-child { order: -1; }
}

/* 01 Found: a search result, drawn rather than screenshotted */
.serp {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 18px;
  box-shadow: var(--shadow);
}
.serp-bar {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px; padding: 12px 16px;
  border: 1px solid var(--line); border-radius: 999px; font-size: 15px; color: var(--text);
}
.serp-bar .i { width: 18px; height: 18px; color: var(--muted); }
.serp-ai {
  margin-bottom: 14px; padding: 14px 16px; border-radius: 14px;
  background: #f2f5e6; border: 1px solid #dfe6c3;
}
.serp-ai p { margin: 0; font-size: .95rem; line-height: 1.5; }
.serp-ai .serp-label {
  display: flex; align-items: center; gap: 6px; margin-bottom: 8px;
  font: 700 12px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; color: var(--ink);
}
.serp-label .i { width: 16px; height: 16px; }
.serp-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.serp-list li { border-radius: 12px; padding: 12px 14px; }
.serp-top { background: #fbfcf4; border: 2px solid var(--lime); }
.serp-top strong { display: block; font: 700 1.02rem/1.3 var(--display); color: var(--ink); }
.serp-meta, .serp-open { display: block; font-size: 13.5px; line-height: 1.45; color: var(--muted); }
.serp-open { color: #2f7a3e; font-weight: 600; }
.stars { color: #e0a92e; letter-spacing: 1px; }
.serp-other { display: grid; gap: 8px; border: 1px solid var(--line); }
.serp-other i { display: block; height: 10px; width: 80%; border-radius: 5px; background: #e6e8e0; }
.serp-other i:first-child { width: 50%; height: 12px; }
.serp .demo-note { margin-top: 14px; }

/* 04 Reviewed: your "done", then what the customer gets */
.review-visual { width: 100%; max-width: 440px; margin: 0 auto; }
.owner-card {
  position: relative; z-index: 1; width: 88%; max-width: 330px;
  display: flex; flex-direction: column; gap: 8px; padding: 14px;
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow);
}
.owner-card-h {
  margin: 0 0 2px; font: 700 11.5px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase;
  color: var(--clay-ink);
}
.review-phone { width: 86%; max-width: 320px; margin: -22px 0 0 auto; }
.link-card {
  display: grid; gap: 6px; margin: 4px 3px 6px; padding: 12px 14px;
  background: #fff; border: 1px solid #e2e3dd; border-radius: 14px;
}
.link-card-h { font: 700 13.5px/1.2 var(--body); color: #111; }
.link-stars { font-size: 22px; line-height: 1; letter-spacing: 4px; color: #e0a92e; }

/* How we build it: one site, every screen */
.device-trio { position: relative; width: 100%; max-width: 520px; margin: 0 auto; padding-bottom: 36px; }
.trio-tablet { width: 80%; padding: 10px; border-radius: 24px; background: #0a1a15; box-shadow: var(--shadow); }
.trio-tablet img { width: 100%; border-radius: 14px; }
.trio-phone {
  position: absolute; right: 0; bottom: 0; width: 36%; padding: 7px; border-radius: 26px;
  background: #0a1a15; box-shadow: 0 30px 50px -20px rgba(0, 0, 0, .55);
}
.trio-phone img { width: 100%; border-radius: 20px; }

/* How it works: a four-step flow */
.flow { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.flow-step {
  position: relative; display: grid; grid-template-columns: auto 1fr; gap: 2px 16px; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px;
}
.flow-ico {
  grid-row: span 3; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); color: var(--lime);
}
.flow-ico .i { width: 26px; height: 26px; }
.flow-no { font: 700 12px/1 var(--mono); color: var(--clay-ink); letter-spacing: .06em; }
.flow-step h3 { font-size: 1.15rem; letter-spacing: -.01em; }
.flow-step p { margin: 0; color: var(--muted); font-size: .95rem; }
/* The problem: doing it well the usual way, against us. The cards below it are what you get. */
.journey-sec .h2 { max-width: 20ch; margin-bottom: 18px; }
.problem-lede { font-size: 1.12rem; line-height: 1.55; color: var(--muted); max-width: 40rem; margin: 0 0 24px; }
.pull { margin: 0 0 36px; padding: 4px 0 4px 18px; border-left: 4px solid var(--lime); max-width: 40rem; }
.pull p { margin: 0 0 8px; font: 700 1.25rem/1.35 var(--display); color: var(--ink); letter-spacing: -.01em; }
.pull cite {
  font: 600 12px/1 var(--mono); font-style: normal; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
}
.problem-ways { margin-bottom: 64px; }
.problem-ways .way { padding: 22px 22px 20px; }
/* Here the usual way is the problem to read, not a thing crossed out. */
.problem-ways .way-old { background: var(--card); color: var(--text); }
.problem-ways .way-old .way-steps li { text-decoration: none; }
.way-total { margin: 16px 0 0; padding-top: 14px; border-top: 1px dashed; font: 800 1.15rem/1.3 var(--mono); }
.way-old .way-total { color: var(--clay-ink); border-color: var(--line); }
.way-new .way-total { color: var(--lime); border-color: rgba(238, 242, 232, .25); }
/* Where most trade businesses are today: flat and grey, before the two ways forward. */
.way-stone { background: #e5e3da; border-color: #d3d0c4; color: var(--text); }
.way-stone .way-h, .way-stone .i { color: var(--muted); }
.way-stone .way-total { border-color: #cfccc0; font: 600 .92rem/1.45 var(--body); color: var(--muted); }
.problem-ways { grid-template-columns: 1fr; }
@media (min-width: 960px) { .problem-ways { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.getting-h { font-size: clamp(1.4rem, 4vw, 1.9rem); letter-spacing: -.02em; margin-bottom: 22px; }
.flow-step p { margin-bottom: 0; }
.flow-see {
  grid-column: -2 / -1; margin-top: 12px; font: 700 14.5px/1 var(--body); color: var(--clay-ink); text-decoration: none;
}
.flow-see::after { content: " \2193"; }
.flow-see:hover { text-decoration: underline; }
@media (max-width: 899px) { .journey-sec .flow-ico { grid-row: span 4; align-self: start; } }
/* Desktop: the cards share rows (subgrid), so every "See it" lines up. */
@media (min-width: 900px) {
  .journey-sec .flow { grid-template-rows: repeat(5, auto); row-gap: 0; }
  .journey-sec .flow-step {
    grid-row: span 5; grid-template-rows: subgrid; row-gap: 6px;
    text-align: left; justify-items: start; align-items: start; padding: 24px 22px;
  }
  .journey-sec .flow-ico { width: 56px; height: 56px; margin-bottom: 8px; }
  .journey-sec .flow-ico .i { width: 26px; height: 26px; }
  .journey-sec .flow-see { align-self: end; }
}
@media (min-width: 900px) {
  .flow { grid-template-columns: repeat(4, 1fr); gap: 34px; }
  .flow-step { grid-template-columns: 1fr; text-align: center; justify-items: center; align-content: start; padding: 28px 18px; gap: 6px; }
  .flow-ico { grid-row: auto; width: 72px; height: 72px; margin-bottom: 8px; }
  .flow-ico .i { width: 32px; height: 32px; }
  .flow-step:not(:last-child)::after {
    content: ""; position: absolute; right: -27px; top: 50%; width: 20px; height: 20px; margin-top: -10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' fill='none' stroke='%23a8492c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  }
}

/* Guardrails */
.rules-grid { display: grid; gap: 30px; align-items: center; }
.rules-photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow); }
.rules-grid .h2 { margin-bottom: 24px; }
.rule-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.rule-grid li {
  display: flex; gap: 12px; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px;
  font-size: .96rem; line-height: 1.35; color: var(--muted);
}
.rule-grid .i {
  width: 38px; height: 38px; padding: 8px; border-radius: 10px; background: var(--ink); color: var(--lime);
}
.rule-grid strong { color: var(--ink); }
@media (min-width: 640px) { .rule-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .rules-grid { grid-template-columns: 1fr 1.15fr; gap: 56px; } }

/* Trades */
.trades-sec {
  background:
    linear-gradient(rgba(11, 35, 28, .86), rgba(11, 35, 28, .94)),
    url("img/truck.webp") center 60% / cover no-repeat, var(--ink);
}
.trades {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.trades li {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(199, 216, 75, .3); border-radius: 12px; padding: 14px;
  font: 700 1rem/1.2 var(--display); color: #fff; letter-spacing: -.01em;
  background: rgba(255, 255, 255, .05);
}
.trades .i { color: var(--lime); }
@media (min-width: 760px) { .trades { grid-template-columns: repeat(4, 1fr); gap: 14px; } .trades li { padding: 18px; } }

/* FAQ */
.faq-wrap { display: grid; gap: 8px; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 18px 44px 18px 0; font: 700 1.08rem/1.3 var(--display); color: var(--ink); letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  font: 600 20px/1 var(--body); color: var(--ink); background: var(--sand);
}
.faq details[open] summary::after { content: "\2212"; background: var(--lime); }
.faq details p { margin: -4px 0 20px; color: var(--muted); max-width: 40rem; }
@media (min-width: 900px) { .faq-wrap { grid-template-columns: .8fr 1.2fr; gap: 56px; } }

/* What happens next, beside the form */
.next-steps { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 16px; }
.next-steps li { display: flex; gap: 14px; align-items: flex-start; }
.next-no {
  flex: none; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); color: var(--lime); font: 700 14px/1 var(--mono);
}
.next-steps div { color: var(--muted); font-size: .98rem; line-height: 1.45; }
.next-steps strong { display: block; font: 700 1.05rem/1.3 var(--display); color: var(--ink); }
.offer-roi { margin: -6px 0 18px; font-weight: 600; color: var(--on-ink); }
/* Who's behind it: a person, next to the button that starts a call with him */
.founder {
  display: flex; gap: 16px; align-items: flex-start; margin-top: 30px; padding: 18px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
}
.founder-mark, .founder-photo {
  flex: none; width: 64px; height: 64px; border-radius: 50%;
}
.founder-mark {
  display: grid; place-items: center; background: var(--ink); color: var(--lime);
  font: 800 20px/1 var(--display); letter-spacing: -.02em;
}
.founder-photo { object-fit: cover; }
.founder-q { margin: 0 0 8px; font: 600 1.05rem/1.4 var(--display); color: var(--ink); }
.founder-who { margin: 0; font-size: .92rem; line-height: 1.45; color: var(--muted); }
.founder-who strong { color: var(--ink); }

/* Preview form */
.section-form { background: var(--sand); border-top: 1px solid var(--line); }
.form-grid { display: grid; gap: 28px; }
.form-intro .h2 { margin-bottom: 14px; }
.form-intro .muted { font-size: 1.05rem; max-width: 30rem; }
.form-photo { display: none; }
.form-photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); }
.form-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 22px;
  box-shadow: var(--shadow);
}
.form-card form { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; min-width: 0; }
.field label { font-weight: 700; font-size: 15px; color: var(--ink); }
.req { color: var(--clay-ink); }
.opt { font-weight: 500; color: var(--muted); }
.field input {
  width: 100%; min-height: 50px; padding: 12px 14px;
  font: 16px/1.3 var(--body); color: var(--text);
  background: #fbfbf8; border: 1.5px solid #c9cfbf; border-radius: 10px;
}
.field input::placeholder { color: #8a948d; }
.field input:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(199, 216, 75, .7); background: #fff; }
.form-error {
  margin: 0; padding: 12px 14px; border-radius: 10px;
  background: #fbe9e2; color: #7f2f17; border: 1px solid #efc2b2; font-weight: 600;
}
.form-fine { margin: 2px 0 0; font-size: 13.5px; line-height: 1.5; color: var(--muted); }
/* SMS opt-in: unchecked by default, and the exact words a consent record stores */
.consent {
  display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start;
  padding: 13px 14px; background: #f4f6ec; border: 1.5px solid #d3d9c6; border-radius: 10px;
}
.consent input { width: 22px; height: 22px; margin: 1px 0 0; accent-color: var(--ink); cursor: pointer; }
.consent label { font-size: 14px; line-height: 1.5; color: var(--text); cursor: pointer; }
.consent-links { margin: -4px 0 0; font-size: 13.5px; color: var(--muted); }
.sent { text-align: left; padding: 8px 4px; }
.sent-h { font: 800 1.7rem/1.1 var(--display); color: var(--ink); letter-spacing: -.02em; margin-bottom: 10px; }
.sent p:not(.sent-h) { color: var(--muted); }
@media (min-width: 640px) {
  .form-card { padding: 30px; }
  .form-card form { grid-template-columns: 1fr 1fr; gap: 16px 18px; }
  .field-wide, .form-card .btn-block, .form-error, .form-fine, .consent, .consent-links { grid-column: 1 / -1; }
}
@media (min-width: 960px) {
  .form-grid { grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
  .form-photo { display: block; margin-top: 28px; }
}

/* Legal pages */
.legal { padding: 56px var(--gutter) 80px; }
.legal h1 { font-size: clamp(2.2rem, 7vw, 3.2rem); letter-spacing: -.03em; line-height: 1.05; margin-bottom: 8px; }
.legal-date { color: var(--muted); font: 500 14px/1.4 var(--mono); margin-bottom: 32px; }
.legal h2 { font-size: 1.35rem; letter-spacing: -.015em; margin: 36px 0 10px; }
.legal h3 { font-size: 1.05rem; margin: 22px 0 6px; }
.legal ul { padding-left: 1.2em; margin: 0 0 1em; }
.legal li { margin-bottom: .45em; }
.legal-box {
  background: var(--card); border: 1px solid var(--line); border-left: 5px solid var(--lime);
  border-radius: 12px; padding: 18px 20px; margin-bottom: 8px;
}
.legal-box p { margin: 0 0 .35em; }
.legal-box p:last-child { margin: 0; }

/* Footer */
.site-foot { background: var(--ink-3); color: var(--on-ink-muted); padding: 44px 0 28px; }
.foot-row { display: grid; gap: 22px; }
.foot-word { color: #fff; }
.foot-note { margin: 10px 0 0; font-size: 15px; max-width: 28rem; }
.foot-links { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }
.foot-links a { color: var(--on-ink); font-weight: 600; font-size: 15px; text-decoration: none; }
.foot-links a:hover { color: var(--lime); }
.foot-legal { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 13.5px; }
.site-foot :focus-visible { outline-color: var(--lime); }
@media (min-width: 760px) { .foot-row { grid-template-columns: 1fr auto; align-items: end; } }

@media (max-width: 380px) {
  :root { --gutter: 16px; }
  .btn { padding: 0 18px; }
  .head-nav .btn-sm { padding: 0 12px; font-size: 14px; }
  .tiles { grid-template-columns: 1fr; }
}
