/* ============================================================
   PURBROOK, Business Management System · marketing site
   Tokens taken verbatim from the BMS UI Colour & Styling Brief.
   ============================================================ */

/* Self-hosted Inter (variable, latin subset) — no external font dependency */
@font-face{
  font-family:'Inter';
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url('assets/fonts/inter-latin-wght-normal.woff2') format('woff2');
}

:root{
  /* brand, navy & steel */
  --navy-900:#0C2E5A;   /* headings, logo, ink-on-light */
  --navy-700:#123A6B;   /* buttons, active nav, key figures */
  --steel-500:#35618C;  /* secondary icons, section links */
  --link:#2E6FB0;       /* inline emphasis (sparingly) */

  /* warm neutrals */
  --canvas:#F4EFE6;     /* page background */
  --surface:#FAF6EF;    /* bars / raised surfaces */
  --card:#FFFDF9;       /* cards (warm white) */
  --inset:#F5F0E6;      /* tiles, inputs, table headers */
  --nav-active:#EFE8DB; /* active nav bg */
  --border:#EAE1D2;     /* borders, dividers */
  --text:#2A2620;       /* primary text / ink */
  --text-body:#5E564A;  /* body copy, labels */
  --text-muted:#8A8072; /* secondary text */
  --text-faint:#A99E8A; /* placeholders, captions */

  /* status (muted) */
  --overdue:#C0524A; --due:#C8913F; --upcoming:#5E9E79;
  --meeting:#6A6FB0; --renewal:#9C6BA8; --policy:#3E9C93;

  /* shape */
  --r-card:16px; --r-control:9px; --r-lg:24px; --r-pill:999px;
  --shadow-card:0 1px 3px rgba(120,95,55,.05);
  --shadow-soft:0 2px 10px rgba(120,95,55,.06);
  --shadow-raise:0 14px 34px -18px rgba(12,46,90,.20),0 3px 10px -6px rgba(12,46,90,.12);
  --shadow-float:0 40px 80px -34px rgba(12,46,90,.32),0 12px 30px -18px rgba(12,46,90,.18);

  --steel-grad:linear-gradient(90deg,#5E86AE,#89B0CE);

  --ease:cubic-bezier(.16,1,.3,1);
  --maxw:1200px;
  --pad:clamp(20px,4vw,56px);
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  background:var(--canvas);color:var(--text);
  font-size:17px;line-height:1.65;font-weight:400;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;font-feature-settings:"cv11","ss01";
}
img{max-width:100%;display:block}
a{color:var(--link);text-decoration:none}
a:hover{color:var(--navy-700)}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
::selection{background:var(--navy-900);color:#fff}
:focus-visible{outline:2px solid var(--steel-500);outline-offset:3px;border-radius:3px}

/* ---- layout ---- */
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 var(--pad)}
.wrap--narrow{max-width:920px}
section{position:relative}

/* ---- type ---- */
h1,h2,h3,h4{color:var(--navy-900);font-weight:700;line-height:1.1;letter-spacing:-.02em;text-wrap:balance}
.eyebrow{
  display:inline-flex;align-items:center;gap:9px;
  font-size:12px;font-weight:700;letter-spacing:.11em;text-transform:uppercase;
  color:var(--steel-500);margin-bottom:20px;
}
.eyebrow::before{content:"";width:9px;height:9px;border-radius:50%;background:var(--steel-500)}
.h-display{font-size:clamp(30px,4.4vw,56px);font-weight:800;line-height:1.03;letter-spacing:-.032em}
.h-section{font-size:clamp(26px,3.45vw,44px);font-weight:800;letter-spacing:-.028em}
.lede{font-size:clamp(17px,1.35vw,20px);line-height:1.6;color:var(--text-body);max-width:56ch}
em.accent{font-style:normal;color:var(--navy-700)}
.text-body{color:var(--text-body)}

/* ---- buttons ---- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  font-size:15px;font-weight:600;letter-spacing:.005em;
  padding:13px 24px;border-radius:var(--r-control);
  border:1px solid transparent;white-space:nowrap;cursor:pointer;
  transition:transform .2s var(--ease),background .2s,border-color .2s,color .2s,box-shadow .2s;
}
.btn--primary{background:var(--navy-700);color:#fff;box-shadow:var(--shadow-soft)}
.btn--primary:hover{background:var(--navy-900);color:#fff;transform:translateY(-1px);box-shadow:var(--shadow-raise)}
.btn--secondary{background:var(--card);border-color:var(--border);color:var(--text)}
.btn--secondary:hover{border-color:var(--steel-500);color:var(--navy-700);transform:translateY(-1px)}
.btn--ghost{color:var(--text-body);padding:13px 14px}
.btn--ghost:hover{color:var(--navy-700)}
.btn--sm{padding:9px 16px;font-size:14px}
.btn--lg{padding:16px 30px;font-size:16px}

/* ---- reveal ---- */
.r{opacity:0;transform:translateY(22px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.r.in{opacity:1;transform:none}
.r[data-d="1"]{transition-delay:.07s}.r[data-d="2"]{transition-delay:.14s}
.r[data-d="3"]{transition-delay:.21s}.r[data-d="4"]{transition-delay:.28s}
.r[data-d="5"]{transition-delay:.35s}
@media (prefers-reduced-motion:reduce){.r{opacity:1;transform:none;transition:none}}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar{position:fixed;inset:0 0 auto 0;z-index:60;padding:16px 0;transition:padding .35s var(--ease),background .35s,box-shadow .35s,border-color .35s;border-bottom:1px solid transparent}
.topbar.scrolled{background:color-mix(in srgb,var(--surface) 88%,transparent);backdrop-filter:blur(14px) saturate(130%);-webkit-backdrop-filter:blur(14px) saturate(130%);border-bottom-color:var(--border);padding:10px 0}
.topbar__row{display:flex;align-items:center;gap:24px}
.topbar__logo{display:flex;align-items:center}
.topbar__logo img{height:34px;width:auto;transition:height .35s var(--ease)}
.topbar.scrolled .topbar__logo img{height:28px}
.topbar__nav{display:flex;gap:6px;margin-left:8px}
.topbar__nav>a{font-size:14.5px;font-weight:500;color:var(--text-body);padding:8px 12px;border-radius:var(--r-control);transition:color .2s,background .2s}
.topbar__nav>a:hover{color:var(--navy-700);background:var(--nav-active)}
.topbar__cta{margin-left:auto;display:flex;align-items:center;gap:8px}
.topbar__burger{display:none;width:42px;height:42px;border-radius:var(--r-control);border:1px solid var(--border);background:var(--card);align-items:center;justify-content:center}
.topbar__burger svg{width:20px;height:20px;stroke:var(--navy-900)}
/* Home page has no header CTA pills — let the nav sit flush right on desktop */
@media (min-width:1001px){.home .topbar__cta{margin-left:0}}

@media (max-width:1000px){
  .topbar__nav{display:none}
  .topbar__cta .btn--ghost,.topbar__cta .cta-login{display:none}
  .topbar__burger{display:inline-flex}
}

/* mobile menu */
.mnav{position:fixed;inset:0;z-index:70;background:color-mix(in srgb,var(--canvas) 96%,transparent);backdrop-filter:blur(8px);display:flex;flex-direction:column;padding:84px var(--pad) 40px;gap:6px;opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s}
.mnav.open{opacity:1;visibility:visible}
.mnav a{font-size:22px;font-weight:600;color:var(--navy-900);padding:14px 0;border-bottom:1px solid var(--border)}
.mnav a.mnav__sub{font-size:17px;font-weight:500;color:var(--text-body);padding-left:18px}
.mnav__close{position:absolute;top:22px;right:var(--pad);width:44px;height:44px;border-radius:var(--r-control);border:1px solid var(--border);background:var(--card);display:flex;align-items:center;justify-content:center}
.mnav__close svg{width:20px;height:20px;stroke:var(--navy-900)}
.mnav__actions{margin-top:20px;display:flex;flex-direction:column;gap:12px}
/* The action buttons are anchors, so the big menu-link rule above outranks the
   .btn-- classes' own styling: the primary button showed navy text on its navy
   background (unreadable, Anne 10 Aug 2026), plus a stray hairline and the
   menu-link font on both buttons. Re-assert the button look at higher
   specificity. */
.mnav__actions a{font-size:16px;font-weight:600;padding:16px 30px;border-bottom:0}
.mnav__actions .btn--primary{color:#fff}
.mnav__actions .btn--secondary{color:var(--text)}

/* ============================================================
   HERO
   ============================================================ */
.hero{padding:calc(96px + clamp(30px,6vw,80px)) 0 clamp(40px,6vw,80px)}
.hero__grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.12fr);gap:clamp(32px,5vw,72px);align-items:center}
.hero h1{margin-bottom:24px}
.hero__lede{margin-bottom:34px;max-width:36ch}
.hero__actions{display:flex;flex-wrap:wrap;gap:14px;align-items:center}
.hero__fine{margin-top:22px;font-size:13.5px;color:var(--text-muted);display:flex;flex-wrap:wrap;gap:8px 18px}
.hero__fine span{display:inline-flex;align-items:center;gap:7px}
.hero__fine span::before{content:"";width:5px;height:5px;border-radius:50%;background:var(--steel-500)}
@media (max-width:1024px){
  .hero__grid{grid-template-columns:1fr;gap:clamp(36px,7vw,56px)}
  .hero__lede{max-width:52ch}
}

/* ============================================================
   APP WINDOW MOCK
   ============================================================ */
.appwin{background:var(--card);border:1px solid var(--border);border-radius:var(--r-lg);box-shadow:var(--shadow-float);overflow:hidden;position:relative}
.hero .appwin{transform:perspective(1600px) rotateY(-3deg) rotateX(1.5deg)}
.appwin__bar{display:flex;align-items:center;gap:12px;padding:12px 16px;background:var(--surface);border-bottom:1px solid var(--border)}
.appwin__dots{display:flex;gap:6px}
.appwin__dots i{width:10px;height:10px;border-radius:50%;background:var(--border)}
.appwin__url{flex:1;background:var(--inset);border:1px solid var(--border);border-radius:var(--r-pill);font-size:11.5px;color:var(--text-muted);padding:5px 12px;text-align:center;max-width:280px;margin:0 auto}
.appwin__body{display:grid;grid-template-columns:186px 1fr;min-height:396px}
@media (max-width:520px){.appwin__body{grid-template-columns:1fr}.appwin__side{display:none}}

.appwin__side{background:var(--surface);border-right:1px solid var(--border);padding:16px 12px;display:flex;flex-direction:column;gap:5px}
.appwin__brand{display:flex;align-items:center;gap:8px;padding:4px 8px 14px}
.appwin__brand img{height:24px;width:auto}
.appwin__seclabel{font-size:10px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--text-faint);padding:10px 10px 6px}
.navitem{display:flex;align-items:center;gap:10px;padding:9px 10px;border-radius:var(--r-control);font-size:13.5px;font-weight:500;color:var(--text-body);border-left:3px solid transparent}
.navitem svg{width:16px;height:16px;stroke:var(--text-faint);fill:none;stroke-width:1.7}
.navitem.active{background:var(--nav-active);border-left-color:var(--navy-700);color:var(--navy-700);font-weight:600}
.navitem.active svg{stroke:var(--navy-700)}

.appwin__main{background:var(--canvas);padding:20px 22px;display:flex;flex-direction:column;gap:16px;min-width:0}
.appwin__head{display:flex;align-items:center;justify-content:space-between;gap:12px}
/* The app's page h1: Inter 700 at -0.01em in Navy-900 (globals.css h1 rule).
   It was 800 at -0.02em here, which read heavier than the real heading. */
.appwin__title{font-size:20px;font-weight:700;color:var(--navy-900);letter-spacing:-.01em}
/* The Widgets control is a shadcn OUTLINE button in the app, not a filled
   navy one: card background, hairline border, ink text, grid icon, chevron. */
.appwin__btn{background:var(--card);color:var(--text);border:1px solid var(--border);font-size:12px;font-weight:500;padding:7px 11px;border-radius:var(--r-control);display:inline-flex;align-items:center;gap:7px}
.appwin__btn svg{width:13px;height:13px;stroke:var(--text);fill:none;stroke-width:2}
.appwin__btn .appwin__chev{width:12px;height:12px;stroke:var(--text-muted);stroke-width:2.2}
.metricrow{display:grid;grid-template-columns:repeat(auto-fit,minmax(84px,1fr));gap:10px}
.metric{background:var(--card);border:1px solid var(--border);border-radius:12px;padding:13px 14px;box-shadow:var(--shadow-card)}
.metric__k{font-size:10.5px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--text-muted)}
.metric__v{font-size:23px;font-weight:800;color:var(--navy-700);letter-spacing:-.02em;margin-top:5px;line-height:1}
.metric__d{font-size:11px;color:var(--text-faint);margin-top:5px}
.panel{position:relative;background:var(--card);border:1px solid var(--border);border-radius:14px;padding:18px 16px 15px;box-shadow:var(--shadow-card)}
/* The reviews card is border-status-due/40 in the app. */
.panel--due{border-color:color-mix(in srgb,var(--due) 40%,transparent)}
.panel__h{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}
.panel__h b{display:inline-flex;align-items:center;gap:7px;font-size:13.5px;font-weight:700;color:var(--text);min-width:0}
.panel__h a{font-size:12px;font-weight:600;color:var(--steel-500)}
/* Card title icons, coloured as the app colours them. */
.ic{width:14px;height:14px;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;flex:none}
.ic--muted{stroke:var(--text-muted)}
.ic--due{stroke:var(--due)}
.ic--navy{stroke:var(--navy-700)}
/* The drag grip every card carries, top centre: lucide GripHorizontal, six
   dots in two rows. The app's dashboard is a drag-to-reorder deck. */
.grip{position:absolute;top:6px;left:50%;transform:translateX(-50%);line-height:0}
.grip svg{width:15px;height:15px;fill:var(--text-faint);opacity:.5}
/* The count chip beside a card title (e.g. Onboarding's row count). */
.countchip{background:var(--inset);color:var(--text-muted);font-size:10.5px;font-weight:500;padding:1px 6px;border-radius:3px}
/* A widget row the way the app draws one: a square status bullet, the record
   name as a navy link, its badge, then a muted detail line and a status bar. */
.wrow{padding:9px 0;border-top:1px solid var(--border)}
.wrow:first-of-type{border-top:0;padding-top:2px}
.wrow__top{display:flex;align-items:center;gap:8px}
.wrow__dot{width:9px;height:9px;border-radius:2px;flex:none}
.wrow__name{color:var(--navy-700);font-weight:600;font-size:13px;flex:1;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.wrow__sub{font-size:11.5px;color:var(--text-muted);margin-top:4px}
.wrow__bar{height:3px;border-radius:2px;margin-top:7px;background:#EDE5D6;overflow:hidden}
.wrow__bar>i{display:block;height:100%;border-radius:2px}
.row{display:flex;align-items:center;gap:10px;padding:9px 0;border-top:1px solid var(--border);font-size:13px}
.row:first-of-type{border-top:0}
.row__name{color:var(--text);font-weight:500;flex:1;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.row__meta{color:var(--text-muted);font-size:12px}
/* Status chips, matched to the app's Badge component rather than invented.
   The app fills them SOLID in the muted status colour with white text; it
   does not use a pale tint with saturated text, which is what made these
   read brighter than the real product. "On track" uses the app's `outline`
   variant, so the healthy state carries no colour at all. Radius and weight
   follow the app's rounded-md and font-semibold. */
.tag{font-size:10.5px;font-weight:600;letter-spacing:.02em;padding:3px 9px;border-radius:6px;white-space:nowrap;border:1px solid transparent}
.tag--overdue{color:#fff;background:var(--overdue)}
.tag--due{color:#fff;background:var(--due)}
.tag--upcoming{color:var(--text);background:transparent;border-color:var(--border)}
.tag--meeting{color:#fff;background:var(--meeting)}
/* Progress bar: the app's track is #EDE5D6 with near-square 2px corners
   (rounded-[2px]), not a pill. The pill shape exaggerated the fill. */
.bar{height:8px;border-radius:2px;background:#EDE5D6;overflow:hidden;margin-top:3px}
.bar>i{display:block;height:100%;border-radius:2px;background:var(--steel-grad)}

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.sec{padding:clamp(40px,5vw,80px) 0}
.sec--surface{background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.sec__head{max-width:720px;margin-bottom:clamp(40px,5vw,64px)}
.sec__head.center{margin-left:auto;margin-right:auto;text-align:center}
.sec__head.center .eyebrow{justify-content:center}
.sec__head .lede{margin-top:20px}

/* ---- feature grid ---- */
.features{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media (max-width:900px){.features{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.features{grid-template-columns:1fr}}
.feature{background:var(--card);border:1px solid var(--border);border-radius:var(--r-card);padding:26px 24px;box-shadow:var(--shadow-card);transition:transform .3s var(--ease),box-shadow .3s}
.feature:hover{transform:translateY(-3px);box-shadow:var(--shadow-raise)}
.feature__ic{width:44px;height:44px;border-radius:12px;background:var(--nav-active);display:flex;align-items:center;justify-content:center;margin-bottom:18px}
.feature__ic svg{width:22px;height:22px;stroke:var(--navy-700);fill:none;stroke-width:1.7}
.feature h3{font-size:19px;margin-bottom:8px}
.feature p{font-size:15px;color:var(--text-body);line-height:1.55}

/* ---- principles ---- */
.principles{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border);border:1px solid var(--border);border-radius:var(--r-card);overflow:hidden}
@media (max-width:860px){.principles{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.principles{grid-template-columns:1fr}}
.principle{background:var(--card);padding:30px 28px;transition:background .3s}
.principle:hover{background:var(--surface)}
.principle__n{font-size:13px;font-weight:700;color:var(--steel-500);letter-spacing:.04em}
.principle h3{font-size:19px;margin:14px 0 9px;letter-spacing:-.01em}
.principle p{font-size:14.5px;color:var(--text-body);line-height:1.55}

/* ---- two modes ---- */
.modes{display:grid;grid-template-columns:1fr 1fr;gap:20px}
@media (max-width:820px){.modes{grid-template-columns:1fr}}
.mode{background:var(--card);border:1px solid var(--border);border-radius:var(--r-lg);padding:clamp(26px,3vw,38px);box-shadow:var(--shadow-soft)}
.mode__tag{display:inline-flex;align-items:center;gap:8px;font-size:12px;font-weight:700;letter-spacing:.05em;text-transform:uppercase;padding:6px 12px;border-radius:var(--r-pill);margin-bottom:18px}
.mode--run .mode__tag{color:var(--navy-700);background:var(--nav-active)}
.mode--studio .mode__tag{color:#fff;background:var(--navy-700)}
.mode h3{font-size:24px;margin-bottom:10px}
.mode>p{font-size:15.5px;color:var(--text-body);margin-bottom:20px;max-width:42ch}
.mode__list{list-style:none;display:flex;flex-direction:column;gap:10px}
.mode__list li{display:flex;gap:11px;font-size:14.5px;color:var(--text);align-items:flex-start}
.mode__list svg{width:17px;height:17px;flex:none;margin-top:2px;stroke:var(--steel-500);fill:none;stroke-width:2}
.mode__chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:20px}
.chip{font-size:12.5px;font-weight:500;color:var(--text-body);background:var(--inset);border:1px solid var(--border);border-radius:var(--r-pill);padding:6px 13px}

/* ---- three layers ---- */
.layers{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;counter-reset:layer}
@media (max-width:820px){.layers{grid-template-columns:1fr}}
.layer{position:relative;background:var(--card);border:1px solid var(--border);border-radius:var(--r-card);padding:30px 26px;box-shadow:var(--shadow-card);overflow:hidden}
.layer::before{counter-increment:layer;content:"0" counter(layer);position:absolute;top:18px;right:22px;font-size:44px;font-weight:800;color:var(--inset);letter-spacing:-.03em;line-height:1}
.layer__badge{display:inline-flex;align-items:center;gap:7px;font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--text-muted);margin-bottom:14px}
.dot{width:11px;height:11px;border-radius:3px;display:inline-block}
.dot--standard{background:var(--navy-700)}.dot--modified{background:var(--due)}.dot--custom{background:var(--steel-500)}
.layer h3{font-size:21px;margin-bottom:9px}
.layer p{font-size:14.5px;color:var(--text-body);line-height:1.55}
.layer__eg{margin-top:16px;display:flex;flex-wrap:wrap;gap:7px}
.layer__eg span{font-size:12px;color:var(--text-muted);background:var(--inset);border:1px solid var(--border);border-radius:var(--r-pill);padding:4px 11px}

/* ---- solutions ---- */
.sol-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
@media (max-width:900px){.sol-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:620px){.sol-grid{grid-template-columns:repeat(2,1fr)}}
.sol{background:var(--card);border:1px solid var(--border);border-radius:12px;padding:18px 18px;box-shadow:var(--shadow-card);transition:transform .25s var(--ease),border-color .25s}
.sol:hover{transform:translateY(-2px);border-color:var(--steel-500)}
.sol b{display:block;font-size:15.5px;color:var(--navy-900);font-weight:700;margin-bottom:3px}
.sol span{font-size:13px;color:var(--text-muted)}

/* ---- pricing ---- */
.price{display:grid;grid-template-columns:1fr 1fr;gap:18px}
@media (max-width:760px){.price{grid-template-columns:1fr}}
.pricecard{border-radius:var(--r-lg);padding:clamp(28px,3vw,40px);border:1px solid var(--border)}
.pricecard--pay{background:var(--card);box-shadow:var(--shadow-soft)}
.pricecard--incl{background:var(--navy-900);border-color:var(--navy-900)}
.pricecard h3{font-size:22px;margin-bottom:6px}
.pricecard--incl h3{color:#fff}
.pricecard__sub{font-size:14px;color:var(--text-muted);margin-bottom:22px}
.pricecard--incl .pricecard__sub{color:#B9C6DA}
.plist{list-style:none;display:flex;flex-direction:column;gap:13px}
.plist li{display:flex;gap:11px;align-items:flex-start;font-size:15.5px}
.plist svg{width:18px;height:18px;flex:none;margin-top:3px;fill:none;stroke-width:2.2}
.pricecard--pay .plist svg{stroke:var(--steel-500)}
.pricecard--pay .plist li{color:var(--text)}
.pricecard--incl .plist svg{stroke:#7FB0E0}
.pricecard--incl .plist li{color:#EAF0F7}
.price__note{margin-top:26px;text-align:center;font-size:15px;color:var(--text-body)}
.price__note b{color:var(--navy-700)}

/* ---- bespoke / services band ---- */
.bespoke__grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(32px,5vw,64px);align-items:center}
@media (max-width:820px){.bespoke__grid{grid-template-columns:1fr}}
.bespoke__list{list-style:none;display:flex;flex-direction:column;margin-top:24px;border-top:1px solid var(--border)}
.bespoke__list li{display:grid;grid-template-columns:auto 1fr;gap:16px;padding:18px 0;border-bottom:1px solid var(--border)}
.bespoke__list b{color:var(--navy-900);font-weight:700;font-size:16px}
.bespoke__list p{font-size:14.5px;color:var(--text-body);margin-top:2px}
.bespoke__n{font-size:13px;font-weight:700;color:var(--steel-500);padding-top:2px}

/* ---- testimonial ---- */
.quote{max-width:900px;margin:0 auto;text-align:center}
.quote__mark{font-size:64px;line-height:.6;color:var(--border);font-weight:800}
.quote blockquote{font-size:clamp(24px,3.2vw,40px);font-weight:700;color:var(--navy-900);line-height:1.25;letter-spacing:-.02em;margin:10px 0 26px}
.quote blockquote em{font-style:normal;color:var(--navy-700)}
.quote__attr{display:inline-flex;flex-wrap:wrap;gap:6px 16px;justify-content:center;font-size:14px;color:var(--text-muted)}
.quote__attr b{color:var(--text);font-weight:600}

/* ---- contact ---- */
.contact__grid{display:grid;grid-template-columns:5fr 6fr;gap:clamp(32px,5vw,64px);align-items:start}
@media (max-width:840px){.contact__grid{grid-template-columns:1fr}}
.contact__details{display:flex;flex-direction:column;margin-top:26px;border-top:1px solid var(--border)}
.contact__row{display:grid;grid-template-columns:auto 1fr auto;gap:14px;align-items:center;padding:16px 0;border-bottom:1px solid var(--border);transition:color .2s}
a.contact__row:hover{color:var(--navy-700)}
.contact__ic{width:40px;height:40px;border-radius:11px;background:var(--nav-active);display:flex;align-items:center;justify-content:center}
.contact__ic svg{width:18px;height:18px;stroke:var(--navy-700);fill:none;stroke-width:1.7}
.contact__k{font-size:11px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--text-muted)}
.contact__v{font-size:15.5px;color:var(--text);font-weight:500}
.contact__ar{color:var(--text-faint);font-size:18px}

.card-form{background:var(--card);border:1px solid var(--border);border-radius:var(--r-lg);padding:clamp(26px,3vw,40px);box-shadow:var(--shadow-soft)}
.frow{display:grid;grid-template-columns:1fr 1fr;gap:16px}
@media (max-width:520px){.frow{grid-template-columns:1fr}}
.field{margin-bottom:18px}
.field label{display:block;font-size:12px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--text-body);margin-bottom:8px}
.field input,.field textarea{width:100%;font:inherit;font-size:15px;color:var(--text);background:var(--inset);border:1px solid var(--border);border-radius:var(--r-control);padding:12px 14px;transition:border-color .2s,box-shadow .2s;outline:none}
.field input::placeholder,.field textarea::placeholder{color:var(--text-faint)}
.field input:focus,.field textarea:focus{border-color:var(--steel-500);box-shadow:0 0 0 3px color-mix(in srgb,var(--steel-500) 14%,transparent)}
.field textarea{min-height:120px;resize:vertical}
.field input.invalid,.field textarea.invalid{border-color:var(--overdue);box-shadow:0 0 0 3px color-mix(in srgb,var(--overdue) 12%,transparent)}
.card-form .btn--primary{width:100%;margin-top:4px}
.feedback{display:none;padding:13px 15px;border-radius:var(--r-control);font-size:14px;margin-bottom:16px;border:1px solid}
.feedback.show{display:block}
.feedback.ok{color:#3f7d57;background:color-mix(in srgb,var(--upcoming) 12%,transparent);border-color:color-mix(in srgb,var(--upcoming) 34%,transparent)}
.feedback.err{color:var(--overdue);background:color-mix(in srgb,var(--overdue) 10%,transparent);border-color:color-mix(in srgb,var(--overdue) 30%,transparent)}
.honey{position:absolute;left:-9999px;width:0;height:0;overflow:hidden}

/* ---- big CTA band ---- */
.ctaband{background:var(--navy-900);border-radius:var(--r-lg);padding:clamp(40px,5vw,72px);text-align:center;box-shadow:var(--shadow-raise);position:relative;overflow:hidden}
.ctaband::after{content:"";position:absolute;inset:auto -10% -60% -10%;height:80%;background:radial-gradient(ellipse at center,rgba(53,97,140,.5),transparent 65%);pointer-events:none}
.ctaband h2{color:#fff;font-size:clamp(28px,3.6vw,46px);position:relative}
.ctaband p{color:#C3CFDF;font-size:18px;max-width:52ch;margin:16px auto 30px;position:relative}
.ctaband .btn--secondary{background:#fff;border-color:#fff}
.ctaband .btn--secondary:hover{background:#EAF0F7}
.ctaband .hero__fine{justify-content:center;color:#9FB0C6;position:relative}
.ctaband .hero__fine span::before{background:#7FB0E0}
.ctaband__actions{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;position:relative}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{background:var(--surface);border-top:1px solid var(--border);padding:clamp(56px,7vw,96px) 0 34px}
.footer__top{display:grid;grid-template-columns:2.2fr 1fr 1fr 1fr;gap:clamp(28px,4vw,56px);margin-bottom:clamp(40px,6vw,72px)}
@media (max-width:820px){.footer__top{grid-template-columns:1fr 1fr}}
@media (max-width:480px){.footer__top{grid-template-columns:1fr}}
.footer__logo img{height:38px;width:auto;margin-bottom:18px}
.footer__desc{font-size:14.5px;color:var(--text-body);max-width:34ch;line-height:1.6}
.footer__h{font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--text-faint);margin-bottom:16px}
.footer__list{list-style:none;display:flex;flex-direction:column;gap:10px}
.footer__list a,.footer__list span{font-size:14.5px;color:var(--text-body)}
.footer__list a{transition:color .2s}
.footer__list a:hover{color:var(--navy-700)}
.footer__bottom{display:flex;flex-wrap:wrap;gap:10px 24px;justify-content:space-between;align-items:center;padding-top:26px;border-top:1px solid var(--border);font-size:13px;color:var(--text-muted)}
.footer__bottom a{color:var(--text-muted)}
.footer__bottom a:hover{color:var(--navy-700)}

/* ============================================================
   COMPANY HOME, additions (shared stylesheet)
   ============================================================ */
.mockcap{margin-top:16px;text-align:center;font-size:13px;color:var(--text-muted)}

/* process steps */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
@media (max-width:820px){.steps{grid-template-columns:1fr 1fr}}
@media (max-width:520px){.steps{grid-template-columns:1fr}}
.step{background:var(--card);border:1px solid var(--border);border-radius:var(--r-card);padding:26px 24px;box-shadow:var(--shadow-card)}
.step__n{width:34px;height:34px;border-radius:9px;background:var(--nav-active);color:var(--navy-700);font-weight:800;font-size:15px;display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.step h3{font-size:18px;margin-bottom:7px}
.step p{font-size:14.5px;color:var(--text-body);line-height:1.55}

/* products */
.products{display:grid;grid-template-columns:1fr;gap:18px;align-items:stretch;max-width:760px;margin:0 auto}
.product{background:var(--card);border:1px solid var(--border);border-radius:var(--r-lg);padding:clamp(28px,3vw,42px);box-shadow:var(--shadow-soft);display:flex;flex-direction:column}
.product--feature{box-shadow:var(--shadow-raise)}
.product__kicker{font-size:11px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--steel-500);margin-bottom:14px}
.product__title{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.product__title img{height:32px;width:auto}
.product__mark{width:52px;height:52px;border-radius:13px;background:var(--nav-active);display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.product__mark svg{width:26px;height:26px;stroke:var(--navy-700);fill:none;stroke-width:1.7}
.product h3{font-size:25px;margin-bottom:10px}
.product p{font-size:15.5px;color:var(--text-body);line-height:1.6;margin-bottom:20px}
.product__chips{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:26px}
.product__foot{margin-top:auto;display:flex;flex-wrap:wrap;gap:12px;align-items:center}

/* home signpost */
.signpost{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
@media (max-width:900px){.signpost{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.signpost{grid-template-columns:1fr}}

/* ============================================================
   BRIEF RESTRUCTURE ADDITIONS (Jul 2026)
   ============================================================ */

/* two-door connector line (home) */
.storyline{margin-top:30px;text-align:center;font-size:clamp(17px,1.6vw,21px);font-weight:600;color:var(--navy-900);letter-spacing:-.01em}

/* pricing tiers: base plan + per-person/per-GB add-ons, held to a centred column */
.tiers{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;align-items:stretch;max-width:820px;margin:0 auto}
@media (max-width:700px){.tiers{grid-template-columns:1fr}}
.tier{background:var(--card);border:1px solid var(--border);border-radius:var(--r-card);padding:28px 26px;box-shadow:var(--shadow-card);display:flex;flex-direction:column}
.tier--free{border-color:var(--navy-700);box-shadow:var(--shadow-raise)}
.tier__k{font-size:11px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--text-muted)}
.tier__price{font-size:clamp(30px,3vw,40px);font-weight:800;color:var(--navy-700);letter-spacing:-.02em;margin:10px 0 2px;line-height:1}
.tier__price small{font-size:15px;font-weight:600;color:var(--text-muted);letter-spacing:0}
.tier__note{font-size:13px;color:var(--text-muted);margin-bottom:16px}
.tier .plist{gap:11px}
.tier .plist li{font-size:14.5px;color:var(--text)}
.tier .plist svg{stroke:var(--steel-500)}
.tier .btn{margin-top:20px}
.included{max-width:820px;margin:18px auto 0;background:var(--navy-900);border-radius:var(--r-card);padding:18px 24px;display:flex;flex-wrap:wrap;gap:10px 12px;align-items:center;justify-content:space-between;box-shadow:var(--shadow-soft)}
.included b{color:#fff;font-size:14px;font-weight:700;flex-basis:100%}
.included span{font-size:12.5px;font-weight:500;color:#EAF0F7;background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.16);border-radius:var(--r-pill);padding:6px 13px}

/* solutions — trailing "+ more" line */
.sol-more{margin-top:18px;text-align:center;font-size:14px;color:var(--text-muted)}

/* ============================================================
   PRINT / PDF EXPORT
   A3 page width keeps the desktop layout (all breakpoints ≥1001px
   stay active); reveal animation is forced visible; warm
   backgrounds print as designed.
   ============================================================ */
@media print{
  @page{size:A3 portrait;margin:0}
  body{print-color-adjust:exact;-webkit-print-color-adjust:exact}
  .r{opacity:1 !important;transform:none !important;transition:none !important}
  .topbar{position:absolute}
  .topbar__burger,.mnav{display:none !important}
  .feature,.principle,.tier,.mode,.layer,.product,.sol,.pricecard,.card-form,.appwin{break-inside:avoid}
}

/* BMS lockup (with tagline) sits a little taller so the tagline stays legible */
.topbar__logo img.logo-bms{height:60px}
.topbar.scrolled .topbar__logo img.logo-bms{height:48px}
/* On a phone the full lockup at 60px crowds the row with the CTA and the
   burger, and its subtitle strip dominates the header (Anne, 11 Aug 2026). */
@media (max-width:560px){
  .topbar__logo img.logo-bms{height:40px}
  .topbar.scrolled .topbar__logo img.logo-bms{height:34px}
}
.footer__logo img.logo-bms{height:58px}
.topbar__logo img.logo-ssl{height:60px}
.topbar.scrolled .topbar__logo img.logo-ssl{height:48px}
.footer__logo img.logo-ssl{height:58px}

/* ============ LEGAL DOCUMENTS (privacy, terms) ============ */
.legal{margin-top:36px;color:var(--text-body);font-size:16.5px;line-height:1.72}
.legal h2{margin:46px 0 14px;font-size:clamp(20px,2.1vw,26px);font-weight:700;letter-spacing:-.02em;color:var(--navy-900)}
.legal h2:first-child{margin-top:0}
.legal h3{margin:30px 0 10px;font-size:18px;font-weight:700;color:var(--navy-900)}
.legal p{margin:0 0 14px}
.legal ul{margin:0 0 16px;padding-left:22px;list-style:disc}
.legal li{margin:0 0 7px}
.legal strong{color:var(--text);font-weight:650}
.legal a{color:var(--link);text-decoration:underline;text-underline-offset:2px}
.legal a:hover{color:var(--navy-700)}
.legal__meta{margin-top:12px;color:var(--text-muted);font-size:15px}
.legal__contact{line-height:1.95}
.legal__rule{margin:54px 0 44px;border:0;border-top:1px solid var(--border)}
.legal__tablewrap{overflow-x:auto;margin:0 0 20px}
.legal table{width:100%;border-collapse:collapse;font-size:15.5px;min-width:460px}
.legal th,.legal td{text-align:left;padding:11px 14px;border:1px solid var(--border);vertical-align:top}
.legal th{background:var(--inset);color:var(--navy-900);font-weight:650}
.legal code{background:var(--inset);border:1px solid var(--border);border-radius:6px;padding:1px 6px;font-size:14px}
