/* ==========================================================================
   Quote From The Ute - validation landing page
   Plain CSS. No framework, no build step, no web fonts, no images.

   PALETTE (change these values and the whole page changes):
   --accent      high-vis yellow. The only colour on the page that is not
                 black, white or grey, so it always means "this is the thing
                 to press".
   --ink         off black, not pure black. Pure black on a phone in bright
                 sun looks like a hole in the screen.
   --ink-soft    secondary text. Still passes contrast, just quieter.
   --paper       page background.
   --paper-alt   alternate band background, so sections separate without
                 needing boxes or drop shadows.
   --line        hairline rules, doing the job borders and cards would do.
   ========================================================================== */

:root {
  --accent:      #ffcc00;
  --accent-ink:  #16191d;
  --ink:         #16191d;
  --ink-soft:    #4a525a;
  --paper:       #ffffff;
  --paper-alt:   #eef0f1;
  --line:        #d5dade;
  --final-bg:    #16191d;
  --final-ink:   #f5f6f7;
  --final-soft:  #b3bbc2;

  /* One radius for the whole page. Square, like a trade catalogue. */
  --radius: 2px;

  /* No web fonts. The browser already has these, so there is nothing to
     download and nothing to wait for on 4G. */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink:         #f1f3f4;
    --ink-soft:    #a8b1b8;
    --paper:       #15181b;
    --paper-alt:   #1d2126;
    --line:        #2f353b;
    --final-bg:    #0e1114;
    --final-ink:   #f1f3f4;
    --final-soft:  #a8b1b8;
  }
}

/* --------------------------------------------------------------- base -- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;         /* 17px. Bigger than the usual 16 on purpose. */
  line-height: 1.55;
}

@media (min-width: 48rem) {
  body { font-size: 1.125rem; } /* 18px on bigger screens */
}

h1, h2, h3 {
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.125rem, 5.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 26ch;
}

h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.25rem);
  font-weight: 800;
}

h3 {
  font-size: 1.1875rem;
  font-weight: 700;
}

p { margin: 0 0 1rem; max-width: 62ch; }

a { color: inherit; }

em { font-style: italic; }

.wrap {
  width: 100%;
  max-width: 66rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { scroll-margin-top: 1rem; }

/* -------------------------------------------------------------- links -- */

.skip { position: absolute; left: -9999px; }

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.75rem 1rem;
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

/* ------------------------------------------------------------ buttons -- */
/* 3.5rem minimum height. That is a thumb target, not a mouse target. */

.btn {
  display: block;
  width: 100%;
  min-height: 3.5rem;
  padding: 1rem 1.75rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.08s ease, background-color 0.15s ease;
}

@media (min-width: 30rem) {
  .btn { display: inline-block; width: auto; }
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent-ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn:active { transform: translateY(1px); }
.btn-ghost:hover { background: var(--paper-alt); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

/* ---------------------------------------------------- 1. hero section -- */

.hero {
  padding: 3.5rem 0 3rem;
  border-bottom: 3px solid var(--ink);
}

@media (min-width: 48rem) {
  .hero { padding: 5rem 0 4.5rem; }
}

.lede {
  font-size: clamp(1.125rem, 3.2vw, 1.375rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 2rem;
}

/* ------------------------------------------------------------- bands -- */

.band { padding: 3rem 0; border-bottom: 1px solid var(--line); }
.band-alt { background: var(--paper-alt); }

@media (min-width: 48rem) {
  .band { padding: 4.5rem 0; }
}

/* -------------------------------------------------- 2. who this is for -- */

.prose p:last-child { margin-bottom: 0; }

/* The note to the partner doing the books. Yellow rule so it reads as an
   aside rather than as another paragraph. */
.aside {
  margin: 2rem 0 0;
  padding: 0.25rem 0 0.35rem 1.25rem;
  border-left: 6px solid var(--accent);
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 54ch;
}

/* --------------------------------------------------------- 3. what changes -- */

.statement {
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 48rem) {
  .statement { padding: 4.5rem 0; }
}

.statement p {
  margin: 0;
  padding-left: 1.25rem;
  border-left: 6px solid var(--accent);
  font-size: clamp(1.375rem, 4.2vw, 2.125rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 34ch;
  text-wrap: balance;
}

/* -------------------------------------------------- 4. what you get -- */

.items {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 44rem) {
  .items { grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem; }
}

.item { border-top: 3px solid var(--ink); padding-top: 0.9rem; }
.item p { color: var(--ink-soft); margin: 0; }
.item em { color: var(--ink); }

/* Format and bonuses. Delivery detail, not another feature, so it sits
   below the grid and reads differently. */
.delivery {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

@media (min-width: 44rem) {
  .delivery { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.delivery p { margin: 0; max-width: none; }
.delivery strong { color: var(--ink); }

/* ---------------------------------------------------- 5. pricing tiers -- */

.tiers {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 56rem) {
  .tiers { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.tier {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.tier-popular {
  border: 3px solid var(--ink);
  padding-top: 0;
}

.tier-flag {
  background: var(--accent);
  color: var(--accent-ink);
  margin: 0 -1.5rem 1.5rem;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  max-width: none;
}

.tier-name { margin-bottom: 0.35rem; font-size: 1.375rem; }

.price {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.9rem;
}

.tier-body {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  margin-bottom: 1.75rem;
  max-width: none;
}

.tier .btn { margin-top: auto; display: block; width: 100%; }

.payment-note {
  margin: 1.75rem 0 0;
  font-size: 1.125rem;
  font-weight: 700;
  max-width: none;
}

/* -------------------------------------------------------- 6. guarantee -- */

.guarantee {
  border: 3px solid var(--ink);
  border-left: 10px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}

@media (min-width: 48rem) {
  .guarantee { padding: 2.5rem; }
}

.guarantee h2 { margin-bottom: 0.75rem; }

.guarantee-lead {
  font-size: clamp(1.25rem, 3.4vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.guarantee p:last-child { margin-bottom: 0; }

.guarantee-note {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.guarantee-note strong { color: var(--ink); }

/* ------------------------------- 6b. compliance drafting starters -- */
/* Two quiet columns rather than another bordered box, so it reads as a
   clarification and not as a second guarantee. */

.compare {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  margin: 2rem 0 1.75rem;
}

@media (min-width: 44rem) {
  .compare { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.compare-col { border-top: 1px solid var(--line); padding-top: 1rem; }
.compare-col h3 { font-size: 1rem; margin-bottom: 0.75rem; }

.compare ul { margin: 0; padding: 0; list-style: none; }

.compare li {
  position: relative;
  padding: 0 0 0.6rem 1.25rem;
  color: var(--ink-soft);
  font-size: 0.9375rem;
}

.compare li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.7rem;
  height: 2px;
  background: var(--accent);
}

.compliance-note {
  margin: 0;
  padding-left: 1.25rem;
  border-left: 6px solid var(--accent);
  font-weight: 600;
}

/* ---------------------------------------- 7. why this, not alternatives -- */
/* Numbered stack, not three matching cards. The counter draws the numerals,
   so there is no icon library and no image to load. */

.reasons {
  list-style: none;
  counter-reset: reason;
  margin: 0;
  padding: 0;
}

.reasons li {
  counter-increment: reason;
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 0 1rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.reasons li:first-child { border-top: 0; padding-top: 0; }

.reasons li::before {
  content: counter(reason);
  grid-row: span 2;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 0.95;
  color: var(--accent);
  -webkit-text-stroke: 1px var(--ink);
}

.reasons h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.reasons p { margin: 0; color: var(--ink-soft); }

/* ------------------------------------------- 8. final CTA and enquiry -- */

.final {
  background: var(--final-bg);
  color: var(--final-ink);
  border-top: 5px solid var(--accent);
  padding: 3.5rem 0;
  scroll-margin-top: 0;
}

@media (min-width: 48rem) {
  .final { padding: 5rem 0; }
}

.final h2 { max-width: 20ch; }
.final .lede { color: var(--final-soft); margin-bottom: 2rem; }

.email {
  font-size: clamp(1.375rem, 5.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  max-width: none;
  overflow-wrap: anywhere;
}

.email a {
  color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.email-note { color: var(--final-soft); margin: 0; }

.final :focus-visible { outline-color: var(--accent); }

/* ------------------------------------------------------------ footer -- */

footer {
  background: var(--final-bg);
  color: var(--final-soft);
  padding: 0 0 2.5rem;
  font-size: 0.9rem;
}

footer p { margin: 0; }
