/* ===========================================================================
   ServeHub — cold-email arrival page (/start)
   ---------------------------------------------------------------------------
   MOBILE FIRST, AND NOT AS A SLOGAN. The reader is a contractor holding a phone
   in a van: the base styles ARE the phone, and one media query widens them. The
   CTA sits inside the first ~560px of page height on a 375x667 screen, which is
   why the argument paragraph is placed BELOW the button and the three-step card
   is the scroll payoff rather than the argument.

   Palette and type are lifted from sales.css so this page cannot read as a
   different company than the homepage the reader sees next. Scoped under `.cel`
   for the same reason sales.css is scoped under `.sales` — nothing here may
   leak. This page's layout ships no Tailwind and no importmap, so these rules
   are the entire visual contract.
   =========================================================================== */

.cel {
  --paper: #f3efe6;
  --paper-2: #ece6d8;
  --white: #ffffff;
  --ink: #17191d;
  --steel: #6a7079;
  --steel-2: #8b9099;
  --line: #d9d3c4;
  --line-ink: #2e333b;
  --blue: #0ea5e9;
  --blue-deep: #0b6fa3;
  --amber: #f5a31f;
  --green: #18794e;
  --red: #c14034;
  --shadow: 3px 3px 0 var(--ink);
  --shadow-sm: 2px 2px 0 var(--ink);
  --wrap: 1080px;

  /* Barlow is the brand face; the stack behind it is what renders on the first
     paint, and on a bad connection possibly the only thing that ever renders. */
  font-family: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.cel * { box-sizing: border-box }
.cel h1, .cel h2, .cel h3, .cel p, .cel ol, .cel ul { margin: 0 }
.cel ol, .cel ul { list-style: none; padding: 0 }
.cel h1, .cel h2, .cel h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
  font-weight: 800; line-height: .95; letter-spacing: -.01em; text-transform: uppercase;
}
/* A phone must never scroll sideways. The headline is set in vw, the brand face may
   not have loaded, and the French copy is a third longer than the English — any of
   those can produce a line wider than the viewport, and one overflowing line widens
   the whole document. This is the cheap guarantee that it cannot. */
.cel h1, .cel h2, .cel h3, .cel p, .cel .said, .cel .t, .cel .d { overflow-wrap: break-word }
.cel-wrap { max-width: var(--wrap); margin: 0 auto; width: 100% }

/* ---- top strip: who this is, and why they are here ---------------------- */

.cel-top {
  background: var(--ink);
  border-bottom: 1px solid var(--line-ink);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 8px 16px; flex-wrap: wrap;
}
.cel-brand { display: flex; align-items: center; gap: 9px; text-decoration: none }
.cel-brand .mark {
  width: 28px; height: 28px; border-radius: 8px; background: var(--blue);
  display: grid; place-items: center; border: 2px solid #04222f;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .18); flex: 0 0 auto;
}
.cel-brand .mark svg { width: 16px; height: 16px; display: block }
.cel-brand .name {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-weight: 800;
  font-size: 21px; color: var(--paper); text-transform: uppercase; letter-spacing: .01em;
}
.cel-why {
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px; letter-spacing: .04em; color: var(--steel-2);
  flex: 1 1 100%;
}

/* ---- hero --------------------------------------------------------------- */

/* min-height:100vh keeps the ink background honest on a short viewport, and the
   slack has to land somewhere. It lands on the closing paper band rather than on
   .cel-main, where it read as a dead ink stripe above the footer. */
.cel-main { flex: 1; display: flex; flex-direction: column }
.cel-close { flex: 1 }

.cel-hero {
  background-color: var(--ink);
  /* Blueprint grid + a cold glow, the same device the homepage hero uses. Pure
     CSS: no image request stands between the click and the headline. */
  background-image:
    radial-gradient(90% 60% at 50% -10%, rgba(14, 165, 233, .20), transparent 70%),
    linear-gradient(var(--line-ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-ink) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  color: var(--paper);
  padding: 22px 18px 32px;
}

.cel-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue); display: inline-flex; align-items: center; gap: 8px;
}
.cel-eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--amber) }

/* Verified at a real 390px viewport in both locales: no line of either headline
   overflows, and the CTA still lands inside the first 667px of page height. If this
   number grows, re-check the French headline — it is the longer one. */
.cel-h1 { font-size: clamp(38px, 10.5vw, 58px); margin-top: 10px; color: var(--paper) }
.cel-h1 .hit { color: var(--amber); display: inline-block; margin-top: 4px }

.cel-lede { margin-top: 12px; font-size: 16px; line-height: 1.4; color: #cdd0d4; max-width: 44ch }
.cel-lede b { color: var(--white); font-weight: 600 }

/* ---- the one action ----------------------------------------------------- */

.cel-ctabox { margin-top: 16px; max-width: 420px }
.cel-cta {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700; text-transform: uppercase; letter-spacing: .02em; font-size: 20px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; min-height: 56px; padding: 15px 22px;
  border: 2px solid var(--ink); border-radius: 11px;
  background: var(--amber); color: #3a2403; text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .05s ease, box-shadow .05s ease;
}
.cel-cta:active { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--ink) }
.cel-cta svg { width: 18px; height: 18px; flex: 0 0 auto }
.cel-ctanote {
  margin-top: 9px; font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: .04em; color: var(--steel-2); text-align: center;
}

.cel-trust {
  margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 16px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: #b7bcc3;
}
.cel-trust li { display: flex; align-items: center; gap: 7px }
.cel-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex: 0 0 auto }

/* The argument, deliberately BELOW the button: a reader who is already sold
   should not have to scroll past a paragraph to act on it. */
.cel-pitch {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-ink);
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700; font-size: 19px; line-height: 1.25; color: #dfe2e6; max-width: 46ch;
}
.cel-pitch b { color: var(--amber) }

/* ---- the three-step card ------------------------------------------------ */

.cel-side { margin-top: 30px }
.cel-h2 { font-size: 24px; color: var(--paper) }
.cel-card {
  margin-top: 14px;
  background: var(--white); border: 2px solid var(--ink); border-radius: 14px;
  box-shadow: var(--shadow); overflow: hidden;
}
.cel-bar {
  display: flex; align-items: center; gap: 6px;
  background: var(--ink); padding: 10px 12px;
}
.cel-bar .bdot { width: 8px; height: 8px; border-radius: 50%; background: var(--steel); flex: 0 0 auto }
.cel-bar .burl {
  margin-left: 8px; font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; color: #b7bcc3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cel-step { display: flex; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--line) }
.cel-step:last-child { border-bottom: 0 }
.cel-step .n {
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12px; font-weight: 700;
  color: var(--steel-2); flex: 0 0 auto; padding-top: 3px;
}
.cel-step .t {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-weight: 800;
  text-transform: uppercase; font-size: 19px; line-height: 1.05; color: var(--ink);
}
.cel-step .d { margin-top: 4px; font-size: 15px; line-height: 1.4; color: #4b5058 }
.cel-step .said {
  display: block; margin-top: 6px; font-size: 15px; line-height: 1.4; color: var(--ink);
  background: var(--paper-2); border-left: 3px solid var(--blue);
  padding: 8px 10px; border-radius: 0 8px 8px 0;
}
/* Step 3 is where the site earns its keep, so it is the one that is coloured. */
.cel-step.live { background: rgba(14, 165, 233, .06) }
.cel-step.live .n { color: var(--blue-deep) }

.cel-cardfoot {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px;
  background: var(--paper-2); border-top: 2px solid var(--ink);
  padding: 11px 14px; font-size: 13px; line-height: 1.35; color: #4b5058;
}
.cel-cardfoot .clock {
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; font-weight: 700;
  background: var(--ink); color: var(--paper); padding: 3px 8px; border-radius: 6px;
  letter-spacing: .04em; flex: 0 0 auto;
}
.cel-photo {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  background: var(--paper-2); padding: 0 14px 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px;
}
.cel-photo .k { letter-spacing: .12em; text-transform: uppercase; color: var(--steel) }
.cel-photo .chip { padding: 3px 8px; border-radius: 999px; border: 1px solid var(--line); background: var(--white) }
.cel-photo .chip.struck { color: var(--red); text-decoration: line-through }
.cel-photo .chip.ok { color: var(--green); border-color: rgba(24, 121, 78, .35) }

/* ---- closing action ---------------------------------------------------- */

.cel-close { background: var(--paper); padding: 26px 18px 30px }
.cel-closein { display: flex; flex-direction: column; align-items: flex-start; gap: 16px }
.cel-closein .cel-ctabox { margin-top: 0; width: 100% }
.cel-closein .cel-ctanote { color: var(--steel) }
.cel-stamp {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-weight: 800;
  text-transform: uppercase; font-size: 15px; letter-spacing: .04em;
  color: var(--ink); border: 2px solid var(--ink); border-radius: 10px;
  padding: 7px 12px; background: var(--white); box-shadow: var(--shadow-sm);
  display: inline-flex; align-items: baseline; gap: 7px;
}
.cel-stamp .big { font-size: 25px; line-height: 1 }

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

.cel-foot {
  background: var(--ink); border-top: 1px solid var(--line-ink);
  padding: 16px 18px 28px; color: var(--steel-2);
  font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: .04em;
}
.cel-footin { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px }
.cel-foot a { color: #b7bcc3; text-decoration: none; border-bottom: 1px solid var(--line-ink) }
.cel-foot a:hover { color: var(--blue) }
.cel-foot .sep { color: var(--line-ink) }

/* ---- the one widening --------------------------------------------------- */

@media (min-width: 860px) {
  .cel-top { padding: 16px 32px }
  .cel-why { flex: 0 1 auto; margin-left: auto }
  .cel-hero { padding: 54px 32px 58px }
  .cel-heroin { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: start }
  .cel-h1 { font-size: clamp(50px, 4.8vw, 64px) }
  .cel-lede { font-size: 18px }
  .cel-ctabox { max-width: 360px }
  .cel-side { margin-top: 0 }
  .cel-close { padding: 32px 32px 38px }
  .cel-closein { flex-direction: row; align-items: center; justify-content: space-between }
  .cel-closein .cel-ctabox { width: auto; flex: 0 0 340px }
  .cel-foot { padding: 18px 32px 30px }
}

@media (prefers-reduced-motion: reduce) {
  .cel-cta { transition: none }
  .cel-cta:active { transform: none }
}
