/* ---- identity ----------------------------------------------------------- *
 * ⚠⚠ THE WHOLE SITE IS DARK, and that REVERSES what this file used to say.
 * "Public pages LIGHT, portal and tools DARK" was the owner's choice once and
 * is written up that way in HANDOVER.md; on 3 Sep the owner reversed it in
 * their own words — *"overal desing very bright it needs to be dark or to have
 * like a tech styles"*. Do not put it back to light on the strength of the old
 * note. It is the same instruction that made the tools dark, applied to the
 * front of the house, and the family resemblance is now stronger rather than
 * weaker: the public pages and the software a customer signs into look like
 * one product.
 *
 * ⚠ The palette is NOT invented. It is the one the tools have used daily —
 * `--bg #0d0f13`, `--panel #14171d`, `--line #252a34`, `--ink #eceef2`,
 * `--muted #98a1b2`, `--gold #c9a86a` — lifted straight out of the portal and
 * the CRM so that a visitor who buys sees the same surfaces afterwards.
 *
 * ⚠ The TOKEN NAMES are the site's originals and deliberately unchanged, so
 * every rule below and every inline style in the four pages kept working
 * without being touched. That means the names now read oddly and you must not
 * trust them: `--ink` is the dark canvas, `--paper` is the LIGHT text on it.
 * Renaming them is a whole-site find-and-replace for no gain.
 *
 * ⚠ The gold had to CHANGE VALUE, not just get reused. #82662D was darkened
 * specifically to pass AA on a white panel and measures 1.5:1 on this canvas —
 * invisible. #c9a86a is the tools' gold and measures 8.35:1 on the canvas and
 * 7.78:1 on a panel. Every value here was measured after the switch, not
 * eyeballed, and all four pages are at zero contrast failures.
 *
 *   canvas   #0d0f13    panels   #14171d    hairline #252a34
 *   headings #eceef2    body     #98a1b2    tertiary #7b8494
 *   gold     #c9a86a — ours, and now the only colour on the page             */
:root{
  --ink:#0d0f13;          /* the canvas — the tools' own --bg */
  --ink-2:#14171d;        /* raised panel — the tools' --panel */
  --line:#252a34;         /* hairline */
  --paper:#eceef2;        /* headings and anything that must be read first */
  --grey:#98a1b2;         /* body text. 7.29:1 on the canvas, 6.79:1 on a panel */
  --grey-2:#7b8494;       /* tertiary & locked. ⚠ Used at 10–11px, so it has to clear 4.5
                             on BOTH grounds and only just does: 5.13 on the canvas and
                             4.78 on a panel. Do not dim it further — the light version of
                             this token was already darkened once for exactly this reason. */
  --gold:#c9a86a;         /* the tools' gold. 8.35:1 on the canvas, 7.78:1 on a panel.
                             ⚠ NOT the old #82662D, which was tuned for white and measures
                             1.5:1 here — the one value in this file that could not survive
                             the switch unchanged. */
  --gold-dim:rgba(201,168,106,.16);
  --sans:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
  --display:var(--sans);
  --mono:'JetBrains Mono',ui-monospace,'Cascadia Mono',Consolas,monospace;
  --gut:clamp(20px,5vw,72px);
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--ink);color:var(--paper);
  font-family:var(--sans);font-weight:300;font-size:16px;line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit}
:focus-visible{outline:2px solid var(--gold);outline-offset:3px}

/* ---- rhythm ------------------------------------------------------------ */
.wrap{max-width:1240px;margin:0 auto;padding:0 var(--gut)}
section{border-top:1px solid var(--line)}
.pad{padding:clamp(52px,7vw,104px) 0}
/* The header is sticky, so an anchor lands its target underneath it. */
section[id],main[id]{scroll-margin-top:78px}
html{scroll-behavior:smooth}

/* ---- type -------------------------------------------------------------- */
/* The reference's whole character is weight and tracking, not ornament:
   very large text at LIGHT weight with tight negative tracking, against
   tiny wide-tracked uppercase labels. That contrast is the design. */
.eyebrow{
  font-family:var(--mono);font-size:11px;font-weight:400;
  letter-spacing:.18em;text-transform:uppercase;color:var(--grey);
  margin:0 0 22px;
}
.eyebrow .tick{color:var(--gold)}
/* ⚠ 1.10 was too tight and the lines collided — see the note in the header block. Display
   type wants LESS leading than body text, but not none: at 58px, 1.10 leaves about 6px to
   hold a descender and the ascender under it. 1.16 is the smallest that stopped it. */
h1,h2,h3{font-family:var(--display);font-weight:200;letter-spacing:-.028em;line-height:1.16;margin:0}
/* ⚠ max-width is what makes `balance` possible — without it a heading fills the 1240px
   column, never wraps, and balancing has nothing to do. The ch values are chosen to give
   the same two or three lines the hand-placed <br>s used to, but by rule rather than by
   eye, so every heading on the site rags the same way. */
h1{font-size:clamp(33px,5vw,58px);line-height:1.12;max-width:19ch;text-wrap:balance}
h2{font-size:clamp(25px,3.2vw,40px);max-width:21ch;text-wrap:balance}
h3{font-size:clamp(18px,1.6vw,21px);font-weight:300;letter-spacing:-.02em;line-height:1.3}
.lede{
  font-size:clamp(15.5px,1.4vw,18px);color:var(--grey);max-width:62ch;
  margin:26px 0 0;font-weight:300;letter-spacing:-.01em;
}
.small{font-size:14px;color:var(--grey);margin:12px 0 0;max-width:52ch}
.mono{font-family:var(--mono)}

/* ---- controls ---------------------------------------------------------- */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:15px 26px;border:2px solid var(--paper);background:var(--ink-2);color:var(--paper);
  font-family:var(--mono);font-size:12px;letter-spacing:.12em;text-transform:uppercase;
  text-decoration:none;border-radius:0;transition:background .18s,color .18s,border-color .18s;
}
.btn:hover{background:var(--paper);border-color:var(--paper);color:var(--ink-2)}
.btn.ghost{background:transparent;color:var(--paper);border-color:rgba(236,238,242,.30)}
.btn.ghost:hover{border-color:var(--paper);color:var(--paper);background:transparent}
.btn .arw{transition:transform .18s}
.btn:hover .arw{transform:translateX(3px)}

/* ---- header ------------------------------------------------------------ */
header{position:sticky;top:0;z-index:40;background:rgba(13,15,19,.88);backdrop-filter:blur(10px);border-bottom:1px solid var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;height:66px;gap:24px}
.brand{display:flex;align-items:baseline;gap:11px;text-decoration:none;letter-spacing:-.03em;font-size:20px;font-weight:400}
.brand b{font-family:var(--display);font-weight:600}
.brand span{font-family:var(--mono);font-size:10px;letter-spacing:.16em;color:var(--grey);text-transform:uppercase}
.nav ul{display:flex;gap:30px;list-style:none;margin:0;padding:0}
.nav a.lnk{font-family:var(--mono);font-size:12px;letter-spacing:.08em;color:var(--grey);text-decoration:none;text-transform:uppercase}
.nav a.lnk:hover{color:var(--paper)}
.navr{display:flex;align-items:center;gap:22px}
.burger{display:none;background:none;border:1px solid var(--line);padding:9px 11px;cursor:pointer;line-height:0}
.burger span{display:block;width:18px;height:1.5px;background:var(--paper);margin:3.5px 0;transition:transform .2s,opacity .2s}
.nav.open .burger span:nth-child(1){transform:translateY(5px) rotate(45deg)}
.nav.open .burger span:nth-child(2){opacity:0}
.nav.open .burger span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}
@media(max-width:860px){
  .burger{display:block}
  .nav ul{
    display:none;position:absolute;top:100%;left:0;right:0;
    flex-direction:column;gap:0;background:var(--ink-2);
    border-bottom:1px solid var(--line);box-shadow:0 24px 48px rgba(0,0,0,.55);
  }
  .nav.open ul{display:flex}
  .nav ul li{border-top:1px solid var(--line)}
  .nav ul li a.lnk{display:block;padding:17px var(--gut);font-size:13px}
  header{position:sticky}
  .nav{position:static}
  header>.wrap{position:relative}
}
/* On a phone the header carries three things and had begun to wrap each of them onto two lines.
   Nothing is dropped — a returning customer needs Sign in most on a phone — it is just tightened:
   the wordmark suffix goes, and neither the link nor the button may break mid-phrase. */
@media(max-width:560px){
  .nav{gap:14px;height:60px}
  .navr{gap:16px}
  .brand span{display:none}
  .nav a.lnk,.nav .btn{white-space:nowrap}
  .nav .btn{padding:12px 16px}
  .nav .btn .arw{display:none}
}

/* ---- hero -------------------------------------------------------------- */
.hero{padding:clamp(46px,6vw,84px) 0 clamp(40px,5vw,66px)}
.hero .lede{margin-top:30px}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:38px}

/* ---- SIGNATURE: the job ladder ---------------------------------------- *
 * The real stage rail out of the product. It is a genuine sequence — you
 * cannot place a supplier order before the confirmation is signed — so the
 * order carries information rather than decorating the page.               */
.ladder{margin-top:clamp(52px,7vw,88px);border:1px solid var(--line);background:var(--ink-2)}
.ladder-head{
  display:flex;justify-content:space-between;align-items:center;gap:16px;
  padding:14px 20px;border-bottom:1px solid var(--line);
  font-family:var(--mono);font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--grey);
}
.ladder-head b{color:var(--paper);font-weight:400}
.rail{display:flex;overflow-x:auto;scrollbar-width:none}
.rail::-webkit-scrollbar{display:none}
.rung{
  flex:1 0 auto;min-width:132px;padding:22px 20px 26px;
  border-right:1px solid var(--line);position:relative;
}
.rung:last-child{border-right:0}
.rung .n{font-family:var(--mono);font-size:10px;letter-spacing:.14em;color:var(--grey-2)}
.rung .lbl{margin-top:10px;font-size:14px;letter-spacing:-.01em;color:var(--grey-2);transition:color .5s}
.rung .bar{position:absolute;left:0;bottom:0;height:2px;width:100%;background:var(--line);overflow:hidden}
.rung .bar i{display:block;height:100%;width:0;background:var(--gold);transition:width .55s ease}
.rung.done .lbl{color:var(--paper)}
.rung.done .n{color:var(--gold)}
.rung.done .bar i{width:100%}
.rung.now .lbl{color:var(--gold)}
.rung.now .bar i{width:55%}
.ladder-foot{
  padding:13px 20px;border-top:1px solid var(--line);
  font-family:var(--mono);font-size:11px;letter-spacing:.06em;color:var(--grey);
}
.ladder-foot em{color:var(--gold);font-style:normal}

/* ---- figures ----------------------------------------------------------- */
.figs{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line)}
.fig{background:var(--ink);padding:34px 24px}
.fig .v{font-size:clamp(25px,2.5vw,33px);font-weight:200;letter-spacing:-.04em;line-height:1}
.fig .k{font-family:var(--mono);font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--grey);margin-top:12px}
@media(max-width:820px){.figs{grid-template-columns:repeat(2,1fr)}}

/* ---- two-column split -------------------------------------------------- */
.split{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:clamp(32px,6vw,84px);align-items:start}
@media(max-width:900px){.split{grid-template-columns:1fr}}

/* ---- journeys ---------------------------------------------------------- */
.jrn{border:1px solid var(--line);background:var(--ink-2);padding:26px 26px 30px}
.jrn + .jrn{margin-top:18px}
.jrn h3{margin-bottom:6px}
.jrn ol{list-style:none;margin:20px 0 0;padding:0;counter-reset:s}
.jrn li{
  counter-increment:s;display:flex;gap:16px;align-items:baseline;
  padding:11px 0;border-top:1px solid var(--line);font-size:15px;color:var(--grey);
}
.jrn li::before{
  content:counter(s,decimal-leading-zero);font-family:var(--mono);font-size:10.5px;
  color:var(--gold);letter-spacing:.1em;flex:0 0 auto;
}
.jrn li b{color:var(--paper);font-weight:400}

/* ---- modules ----------------------------------------------------------- */
.mods{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line);margin-top:52px}
.mod{background:var(--ink);padding:30px 26px 34px;transition:background .2s}
.mod:hover{background:var(--ink-2)}
.mod .k{font-family:var(--mono);font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--gold)}
.mod h3{margin:14px 0 0}
.mod p{margin:12px 0 0;font-size:15px;color:var(--grey)}
@media(max-width:900px){.mods{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.mods{grid-template-columns:1fr}}

/* ---- the two products -------------------------------------------------- *
 * Two cards, equal weight. ⚠ Beta is NOT dressed to look buyable: no price,
 * no Buy button, and a status line that says plainly it is being built. A
 * "coming soon" styled like a product on sale is how somebody signs up for
 * something that does not exist, and the first thing they learn about us is
 * that we overstated.                                                       */
.prods{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);margin-top:52px}
.prod{background:var(--ink);padding:32px 26px 34px;display:flex;flex-direction:column}
.prod .k{font-family:var(--mono);font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--gold)}
.prod h3{margin:14px 0 0;font-size:clamp(18px,1.7vw,22px);font-weight:300;letter-spacing:-.02em;line-height:1.2}
.prod .state{font-family:var(--mono);font-size:10.5px;letter-spacing:.12em;text-transform:uppercase;margin:16px 0 0;display:flex;align-items:center;gap:8px}
.prod .state::before{content:"";width:7px;height:7px;border-radius:50%;flex:0 0 auto}
.prod .state.on{color:var(--gold)}
.prod .state.on::before{background:var(--gold)}
.prod .state.soon{color:var(--grey-2)}
.prod .state.soon::before{background:var(--grey-2)}
/* ⚠ The one thing on this page somebody can start today, so it keeps the accent
   that both products lost when they closed. */
.prod .state.now{color:var(--gold)}
.prod .state.now::before{background:var(--gold)}
.prod p.body{margin:18px 0 0;font-size:15px;color:var(--grey)}
.prod ul{list-style:none;margin:20px 0 26px;padding:0;flex:1}
.prod li{font-size:14.5px;color:var(--grey);padding:8px 0;border-top:1px solid var(--line);display:flex;gap:11px}
.prod li::before{content:"—";color:var(--gold);flex:0 0 auto}
.prod .btn{width:100%;justify-content:center}
.prod label{font-family:var(--mono);font-size:10px;letter-spacing:.14em;color:var(--grey-2);text-transform:uppercase;display:block;margin-top:10px}
.prod input{width:100%;margin-top:6px;padding:10px 12px;background:var(--ink);border:1px solid var(--line);color:var(--paper);font:inherit;border-radius:0}
@media(max-width:1080px){.prods{grid-template-columns:1fr}}

/* ---- side by side, for choosing ---------------------------------------- *
 * /products has one job neither of the other two pages can do: let somebody
 * read a line and know which of the two products is theirs. /alpha only knows
 * about itself, and the home page sells the idea rather than the tools. So
 * here the two answers sit on the SAME row, always, and the question is asked
 * in the left margin instead of at the top of a column — a comparison is read
 * across, not down.
 *
 * ⚠ Beta gets the same width and the same rows, and NOT the same dressing:
 * its label is grey where Alpha's is gold, and its state says "in
 * development". Same rule as the two cards below — equal weight in the
 * comparison, never made to look buyable.
 *
 * ⚠ On a phone the three columns become one, so each answer then has to say
 * which product it belongs to: that is what .mq is for, hidden on desktop
 * where the column heading already says it. A 3-column comparison squeezed
 * onto 375px is exactly where tables like this stop being readable.          */
.cmp{border:1px solid var(--line);background:var(--ink-2);margin-top:52px}
.cmp-row{display:grid;grid-template-columns:minmax(0,.52fr) repeat(3,minmax(0,1fr))}
.cmp-row + .cmp-row{border-top:1px solid var(--line)}
.cmp-row > *{padding:18px 19px;min-width:0}
.cmp-row > * + *{border-left:1px solid var(--line)}
.cmp-row .q{font-family:var(--mono);font-size:10.5px;letter-spacing:.13em;
  text-transform:uppercase;color:var(--grey)}
.cmp-row .a{font-size:14.5px;color:var(--grey)}
.cmp-row .a b{color:var(--paper);font-weight:400}
.cmp-row .mq{display:none}
.cmp-top > *{padding-top:26px;padding-bottom:26px}
.cmp-top .p{font-family:var(--mono);font-size:10.5px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--grey-2);margin:0}
.cmp-top .now .p{color:var(--gold)}
.cmp-top h3{margin:10px 0 0;font-size:17px;letter-spacing:-.015em;line-height:1.3}
.cmp-top .st{margin:10px 0 0;font-family:var(--mono);font-size:10px;letter-spacing:.13em;
  text-transform:uppercase;color:var(--grey-2)}

@media(max-width:1080px){
  .cmp-row{grid-template-columns:1fr}
  .cmp-row > * + *{border-left:0;border-top:1px solid var(--line)}
  .cmp-row .q{background:var(--ink);color:var(--paper)}
  .cmp-top > :first-child{display:none}      /* the spacer above the questions */
  .cmp-row .mq{display:block;font-family:var(--mono);font-size:10px;letter-spacing:.14em;
    text-transform:uppercase;color:var(--grey-2);margin-bottom:7px}
  .cmp-row .mq.now{color:var(--gold)}
  /* ⚠ Same rule as the column headings: grey is the default and gold means
     "you can start this today", which is true of the built-to-order column and
     of neither product while both are opening soon. */
}

/* ---- the rule ---------------------------------------------------------- */
/* ⚠ The last hand-broken thing on the site, and it was the one that still looked wrong.
   Its three lines were "You cannot / type a / percentage." — wildly unequal, with 1.22
   leading crammed under them. It is a display line like any other, so it now gets what the
   headings got: no manual breaks, a width to wrap against, and  to even the lines.
   ⚠ The earlier note here claimed the three short lines WERE the design and should keep
   their breaks. That was wrong and the owner said so twice. */
.rule-quote{
  font-size:clamp(20px,2.5vw,31px);font-weight:200;letter-spacing:-.028em;line-height:1.3;
  max-width:17ch;margin:0;text-wrap:balance;
}
.rule-quote em{font-style:normal;color:var(--gold)}

/* ---- pricing ----------------------------------------------------------- *
 * Two products and a bundle. The bundle is the one most buyers want, so it
 * is the one marked — but the saving is stated as a figure rather than
 * implied, because a price nobody can check is a price nobody trusts.      */
.tiers{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);margin-top:54px}
.tier{background:var(--ink);padding:34px 28px 36px;display:flex;flex-direction:column}
.tier.pick{background:var(--ink-2);box-shadow:inset 0 2px 0 var(--gold)}
.tier .k{font-family:var(--mono);font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--grey)}
.tier.pick .k{color:var(--gold)}
.tier .price{display:flex;align-items:baseline;gap:8px;margin:22px 0 4px}
.tier .amt{font-size:clamp(27px,2.7vw,35px);font-weight:200;letter-spacing:-.04em;line-height:1}
.tier .cur{font-family:var(--mono);font-size:12px;color:var(--grey);letter-spacing:.1em}
.tier .per{font-family:var(--mono);font-size:10.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--grey-2)}
.tier .note{font-size:14px;color:var(--grey);margin:16px 0 0;min-height:42px}
.tier ul{list-style:none;margin:22px 0 26px;padding:0;flex:1}
.tier li{font-size:14.5px;color:var(--grey);padding:8px 0;border-top:1px solid var(--line);display:flex;gap:11px}
.tier li::before{content:"—";color:var(--gold);flex:0 0 auto}
.tier .btn{width:100%;justify-content:center}
.saving{font-family:var(--mono);font-size:10.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);margin-top:6px}
.price-foot{margin-top:26px;font-size:14px;color:var(--grey-2);max-width:64ch}
@media(max-width:900px){.tiers{grid-template-columns:1fr}}

/* ---- cta --------------------------------------------------------------- */
.cta{text-align:center}
.cta h1,.cta h2{margin-left:auto;margin-right:auto}
.cta .btn{margin-top:34px}

/* ---- sign-up ----------------------------------------------------------- *
 * Left-aligned inside a centred section: a form is read field by field, and
 * centred labels make every one of them start in a different place.        */
.signup{max-width:640px;margin:40px auto 0;text-align:left;display:grid;gap:16px}
.signup label{display:block;font-family:var(--mono);font-size:10.5px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--grey)}
.signup .req{color:var(--gold);margin-left:8px;letter-spacing:.1em}
.signup input,.signup select,.signup textarea{
  display:block;width:100%;margin-top:8px;padding:13px 14px;border-radius:0;
  background:var(--ink-2);border:1px solid var(--line);color:var(--paper);
  font-family:var(--sans);font-size:16px;font-weight:300;
}
.signup input:focus,.signup select:focus,.signup textarea:focus{
  outline:none;border-color:var(--gold)}
.signup textarea{resize:vertical}
.row2{display:grid;grid-template-columns:1fr 1fr;gap:16px}
@media(max-width:620px){.row2{grid-template-columns:1fr}}
.signup .btn{justify-self:start;margin-top:6px}

/* ---- footer ------------------------------------------------------------ */
footer{border-top:1px solid var(--line);padding:44px 0 56px}
.foot{display:flex;justify-content:space-between;gap:22px;flex-wrap:wrap;
  font-family:var(--mono);font-size:11px;letter-spacing:.08em;color:var(--grey);text-transform:uppercase}

/* ---- motion ------------------------------------------------------------ */
.rise{opacity:0;transform:translateY(14px);transition:opacity .7s ease,transform .7s ease}
.rise.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){
  .rise{opacity:1;transform:none;transition:none}
  .rung .bar i{transition:none}
  *{scroll-behavior:auto!important}
}

/* ---- product surfaces --------------------------------------------------- *
 * ⚠ These are the PRODUCT, drawn in HTML rather than photographed. The site
 * had no images at all — 2,892 words selling software nobody could see — and
 * the honest fix is to show the thing, not to buy stock photography of people
 * pointing at laptops.
 *
 * Drawn rather than screenshotted for three reasons: they stay sharp at any
 * size, they re-colour with the palette instead of being baked to one theme,
 * and they weigh nothing. Every one mirrors a real screen — the unit tracker,
 * a quotation, the approval gate — so what a visitor sees is what they get.  */
.shot{background:var(--ink-2);border:1px solid var(--line);box-shadow:0 26px 64px rgba(0,0,0,.45)}
.shot-bar{display:flex;align-items:center;gap:7px;padding:11px 14px;border-bottom:1px solid var(--line)}
.shot-bar i{width:9px;height:9px;border-radius:50%;background:var(--line);display:block}
.shot-bar span{margin-left:8px;font-family:var(--mono);font-size:10.5px;letter-spacing:.1em;
  text-transform:uppercase;color:var(--grey-2)}
.shot-body{padding:18px}

/* the unit tracker — one cell per flat, exactly as the delivery tab reads */
.grid-units{display:grid;grid-template-columns:repeat(12,1fr);gap:5px}
.grid-units i{aspect-ratio:1;display:block;background:var(--line)}
.grid-units i.done{background:var(--gold)}
.grid-units i.part{background:var(--gold);opacity:.42}
.units-key{display:flex;gap:18px;flex-wrap:wrap;margin-top:16px;
  font-family:var(--mono);font-size:10px;letter-spacing:.1em;text-transform:uppercase;color:var(--grey-2)}
.units-key b{display:inline-block;width:9px;height:9px;margin-right:6px;vertical-align:middle}

/* a document, as the quotation actually prints */
.doc-row{display:flex;justify-content:space-between;gap:14px;padding:9px 0;border-bottom:1px solid var(--line);
  font-size:13.5px;color:var(--grey)}
.doc-row:last-child{border-bottom:0}
.doc-row b{color:var(--paper);font-weight:400}
.doc-total{display:flex;justify-content:space-between;margin-top:14px;padding-top:14px;
  border-top:1px solid var(--paper);font-family:var(--display);font-weight:400;color:var(--paper)}

/* the gate — the rule the product is built on, as it appears on a job */
.gate{display:flex;align-items:center;gap:12px;padding:12px 0;font-size:14px;color:var(--grey)}
.gate + .gate{border-top:1px solid var(--line)}
.gate .tick{flex:0 0 auto;width:19px;height:19px;border:1.5px solid var(--gold);color:var(--gold);
  display:grid;place-items:center;font-size:11px}
.gate.locked{color:var(--grey-2)}
.gate.locked .tick{border-color:var(--line);color:var(--grey-2)}

/* two columns, image beside argument */
.duo{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(30px,5vw,72px);align-items:center}
.duo.flip .duo-fig{order:-1}
@media(max-width:900px){.duo{grid-template-columns:1fr}.duo.flip .duo-fig{order:0}}

/* the numbers, as a credibility strip rather than a table */
.strip{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line);
  border:1px solid var(--line);margin-top:44px}
.strip div{background:var(--ink-2);padding:26px 22px}
.strip .v{font-family:var(--display);font-size:clamp(22px,2.2vw,29px);font-weight:200;letter-spacing:-.03em;color:var(--paper)}
.strip .k{font-family:var(--mono);font-size:10px;letter-spacing:.13em;text-transform:uppercase;
  color:var(--grey-2);margin-top:8px;line-height:1.5}
@media(max-width:760px){.strip{grid-template-columns:repeat(2,1fr)}}

/* the quote — social proof, beside the call to action where it is worth most */
.quote{background:var(--ink-2);border:1px solid var(--line);padding:clamp(28px,4vw,48px)}
.quote p{font-family:var(--display);font-size:clamp(17px,1.6vw,21px);font-weight:200;
  line-height:1.35;letter-spacing:-.02em;color:var(--paper);margin:0}
.quote footer{margin-top:22px;font-family:var(--mono);font-size:11px;letter-spacing:.1em;
  text-transform:uppercase;color:var(--grey-2)}

/* ---- the fields we build for ------------------------------------------- *
 * ⚠ This is what the HOME page shows now. The unit tracker, the quotation
 * and the approval gate moved to /alpha where they belong: they are one
 * product's screens, and showing them here sold the tool instead of the idea.
 * What T One Solutions sells is that it builds systems FOR THESE TRADES —
 * so the home page shows the trades, and the products page shows the products. */
.fields{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);
  border:1px solid var(--line);margin-top:52px}
.field{background:var(--ink-2);padding:32px 28px 34px;display:flex;flex-direction:column;gap:16px}
.field .mark{width:100%;height:96px;display:block}
.field .mark rect,.field .mark line,.field .mark path{stroke:var(--paper);fill:none;
  stroke-width:1.25;vector-effect:non-scaling-stroke}
.field .mark .fill{fill:var(--gold-dim);stroke:none}
.field h3{font-size:17.5px;letter-spacing:-.015em;line-height:1.3}
.field p{font-size:14.5px;color:var(--grey);margin:0}
.field .st{margin-top:auto;font-family:var(--mono);font-size:10px;letter-spacing:.13em;
  text-transform:uppercase;color:var(--grey-2)}
@media(max-width:820px){.fields{grid-template-columns:1fr}}

/* the tracker, sized like a diagram rather than a wall */
.grid-units{grid-template-columns:repeat(24,1fr);gap:3px;max-width:560px}

/* ---- the product marks ------------------------------------------------- *
 * Set C, chosen 3 Sep. They sit INLINE beside the product's name and take their colour
 * from it (`currentColor`), so Alpha and Beta go grey while both are opening soon and
 * would go gold the day one opens, without touching the SVG. ⚠ That is the whole reason
 * they are not hard-coded to a colour.                                     */
.pmark{display:inline-block;vertical-align:-4px;margin-right:8px;flex:0 0 auto}
.prod .k .pmark,.cmp-top .p .pmark{vertical-align:-5px}

/* ---- the technical ground ---------------------------------------------- *
 * The "tech style" half of the instruction, and it is deliberately almost
 * invisible: a 72px hairline grid over the canvas, the same drafting grid the
 * drawn product surfaces below sit on. It reads as engineering paper rather
 * than as a texture, which is the point — the pages sell software for people
 * who work from drawings.
 *
 * ⚠ Kept at 2% white for a reason that is not taste: the contrast audit
 * measures text against the first real backgroundColor it finds, and a
 * background-IMAGE is invisible to it. A heavy pattern would therefore lower
 * real contrast while the audit went on reporting zero failures. At 2% the
 * worst case it can shift is under a tenth of a ratio point. Do not turn it up
 * without re-measuring against the pattern itself rather than the token.       */
body{
  background-image:
    linear-gradient(to right, rgba(236,238,242,.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(236,238,242,.02) 1px, transparent 1px);
  background-size:72px 72px;
  background-attachment:fixed;
}
/* ⚠ Every panel that sits ON the canvas must paint its own background, or the
   grid shows through the middle of a table and looks like a rendering fault.
   These already had one; this is the note for whatever gets added next. */

/* ---- built to order ---------------------------------------------------- *
 * The third thing the company sells, and the reason it is a BAND rather than
 * a third product card: it is not a product. Alpha and Beta are finished
 * systems with a price and a sign-in; this is work, quoted per company. Given
 * a card in the same row it would read as "option three, from AED …", which
 * is the wrong promise and the one that would have to be walked back on the
 * first call.
 *
 * The gold top edge is the same device `.tier.pick` uses to mark one option
 * out of several without shouting.                                          */
.bespoke{
  border:1px solid var(--line);background:var(--ink-2);
  box-shadow:inset 0 2px 0 var(--gold);
  padding:clamp(28px,4vw,54px);margin-top:clamp(38px,5vw,60px);
}
.bespoke .k{font-family:var(--mono);font-size:10.5px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--gold);margin:0}
.bespoke h2,.bespoke h3{margin:14px 0 0}
.bespoke .lede{max-width:64ch}

/* the four steps, across — a sequence, so it is drawn as one */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line);
  margin-top:clamp(28px,4vw,44px);border:1px solid var(--line)}
.steps > div{background:var(--ink-2);padding:24px 22px 26px}
.steps .n{font-family:var(--mono);font-size:10px;letter-spacing:.14em;color:var(--gold)}
.steps h4{font-family:var(--display);font-size:15px;font-weight:400;letter-spacing:-.015em;
  line-height:1.3;margin:12px 0 0;color:var(--paper)}
.steps p{font-size:14px;color:var(--grey);margin:9px 0 0}
@media(max-width:900px){.steps{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.steps{grid-template-columns:1fr}}

/* ---- Beta's surfaces --------------------------------------------------- *
 * /beta needs two things /alpha did not, because the product is shaped
 * differently: a job here is not a ladder of eight rungs, it is seven
 * sections each carrying its own state, and the thing the app is actually
 * built around is a panel that says WHAT WANTS YOU NOW rather than a status.
 * Both are drawn from the real screens, same rule as every other surface on
 * the site.                                                                 */

/* the seven sections of a project, as the tab rail reads */
.tabs{display:flex;flex-wrap:wrap;gap:1px;background:var(--line);border:1px solid var(--line);
  margin-top:clamp(38px,5vw,60px)}
.tabs > span{background:var(--ink-2);padding:15px 20px;flex:1 0 auto;
  font-family:var(--mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;
  color:var(--grey-2);display:flex;align-items:center;gap:9px}
.tabs > span::before{content:"";width:6px;height:6px;flex:0 0 auto;background:var(--line)}
.tabs > span.on{color:var(--paper)}
.tabs > span.on::before{background:var(--gold)}
.tabs > span.risk{color:var(--gold)}
.tabs > span.risk::before{background:var(--gold);box-shadow:0 0 0 3px var(--gold-dim)}
/* ⚠ A grid rather than a wrapping flex row on a phone: `flex:1 0 auto` wraps
   seven items into 3 + 3 + 1, and that last one then stretches across the
   whole width on its own, which reads as a rendering fault rather than as a
   rail. Two even columns, so the odd one out is only half a row wide. */
@media(max-width:620px){
  .tabs{display:grid;grid-template-columns:repeat(2,1fr)}
  .tabs > span{padding:14px 16px}
}

/* "needs you now" — the panel the product is built around */
.needs{margin-top:0}
.needs .row{display:flex;gap:14px;align-items:baseline;padding:12px 0;font-size:14px;color:var(--grey)}
.needs .row + .row{border-top:1px solid var(--line)}
.needs .stg{font-family:var(--mono);font-size:9.5px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--gold);flex:0 0 88px}
.needs .row b{color:var(--paper);font-weight:400}
.needs .go{margin-left:auto;font-family:var(--mono);font-size:10px;letter-spacing:.1em;
  text-transform:uppercase;color:var(--grey-2);flex:0 0 auto}
@media(max-width:620px){
  .needs .row{flex-wrap:wrap;gap:6px}
  .needs .stg{flex:0 0 100%}
  .needs .go{margin-left:0;flex:0 0 100%}
}

/* the cost report — four columns, and the fourth is the whole point */
.cost{width:100%;border-collapse:collapse;font-size:13.5px}
.cost th{font-family:var(--mono);font-size:9.5px;letter-spacing:.12em;text-transform:uppercase;
  color:var(--grey-2);font-weight:400;text-align:right;padding:0 0 10px;border-bottom:1px solid var(--line)}
.cost th:first-child{text-align:left}
.cost td{padding:10px 0;border-bottom:1px solid var(--line);color:var(--grey);text-align:right}
.cost td:first-child{text-align:left;color:var(--paper)}
.cost tr:last-child td{border-bottom:0}
.cost .over{color:var(--gold)}
.cost-note{margin-top:14px;font-family:var(--mono);font-size:10px;letter-spacing:.1em;
  text-transform:uppercase;color:var(--gold)}

/* what the client is shown — money absent rather than blanked */
.hidden-row{display:flex;justify-content:space-between;gap:14px;padding:10px 0;font-size:13.5px;
  color:var(--grey);border-bottom:1px solid var(--line)}
.hidden-row:last-child{border-bottom:0}
.hidden-row b{color:var(--paper);font-weight:400}
.hidden-row .gone{font-family:var(--mono);font-size:10px;letter-spacing:.1em;text-transform:uppercase;
  color:var(--grey-2)}
