/*
 * einvoice.eraxle.com
 *
 * Hand-written CSS, no framework and no build step. This is one page: a framework would
 * be more bytes than the page, and a build step would put a toolchain between a copy edit
 * and it being live. Cloudflare Pages serves this directory as-is.
 *
 * The palette is Eraxle's own — the same ink and brand blue the ERP uses — so a visitor
 * who arrives here and later signs in does not feel handed between two companies.
 */

:root {
  --ink-900: #070c17;
  --ink-800: #0b1324;
  --ink-700: #131d33;

  --brand-700: #07649d;
  --brand-600: #0796d1;
  --brand-500: #00a8e8;
  --brand-300: #6dd4f5;
  --brand-100: #dcedf9;
  --brand-50: #eaf6fd;

  --accent-500: #f59410;
  --accent-100: #ffefd0;

  --slate-900: #0f172a;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;

  --emerald-600: #059669;
  --rose-600: #e11d48;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1120px;
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Anything anchored to has to clear the sticky bar, or a jump lands with the heading
   hidden underneath it. */
[id] { scroll-margin-top: 84px; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-600);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--slate-900); line-height: 1.15; margin: 0; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); font-weight: 650; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 650; }
h3 { font-size: 1.1rem; font-weight: 620; }
p { margin: 0; }
a { color: inherit; }

img, svg { max-width: 100%; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 760px; }

/* ------------------------------------------------------------------------- nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.nav.is-scrolled { border-bottom-color: var(--slate-200); }

.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--slate-900); text-decoration: none; font-size: 1.05rem; }
.brand--light { color: #fff; }

.nav__links { display: none; gap: 4px; }
.nav__links a {
  padding: 8px 12px; border-radius: 9px; font-size: 0.92rem; font-weight: 500;
  color: var(--slate-600); text-decoration: none; transition: background 160ms, color 160ms;
}
.nav__links a:hover { background: var(--slate-100); color: var(--slate-900); }

@media (min-width: 1040px) { .nav__links { display: flex; } }

/* ---------------------------------------------------------------------- button */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 12px; border: 1px solid transparent;
  font-size: 0.95rem; font-weight: 600; text-decoration: none; cursor: pointer;
  font-family: inherit; transition: background 160ms, border-color 160ms, transform 160ms, box-shadow 160ms;
}
.btn--sm { padding: 9px 16px; font-size: 0.88rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--brand-600); color: #fff; box-shadow: 0 8px 20px -8px rgba(7, 150, 209, 0.6); }
.btn--primary:hover { background: var(--brand-700); }
.btn--primary:disabled { opacity: 0.6; cursor: not-allowed; }

.btn--ghost { border-color: rgba(255, 255, 255, 0.25); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.4); }

/* ------------------------------------------------------------------------ hero */
.hero { position: relative; overflow: hidden; background: var(--ink-800); color: #fff; padding: 72px 0 88px; }

.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(52rem 52rem at -10% 110%, rgba(0, 168, 232, 0.32), transparent 62%),
    radial-gradient(38rem 38rem at 108% -14%, rgba(0, 168, 232, 0.2), transparent 58%);
}

/* A faint grid, masked out at the edges. It stops a large dark area reading as an empty
   rectangle without competing with anything on top of it. */
.hero__grid {
  position: absolute; inset: 0; opacity: 0.16; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(72% 62% at 50% 34%, #000 40%, transparent 100%);
  mask-image: radial-gradient(72% 62% at 50% 34%, #000 40%, transparent 100%);
}

.hero__inner { position: relative; display: grid; gap: 48px; align-items: center; }
@media (min-width: 980px) { .hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: 56px; } }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.07);
  font-size: 0.8rem; font-weight: 500; color: var(--brand-300);
}
.tag .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent-500); }

.hero__title { margin-top: 22px; color: #fff; }
.hero__title .accent { color: var(--brand-300); }

.hero__lead { margin-top: 20px; max-width: 34rem; font-size: 1.08rem; color: #cbd5e1; }

.hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }

.ticks { margin: 28px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.ticks li { position: relative; padding-left: 22px; font-size: 0.9rem; color: var(--slate-400); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 11px; height: 6px; border-left: 2px solid var(--brand-500); border-bottom: 2px solid var(--brand-500);
  transform: rotate(-45deg);
}
.ticks--light li { color: #cbd5e1; }

/* ----------------------------------------------------------------------- board */
.board { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 18px; padding: 22px; }
.board__title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--slate-400); }
.board__list { list-style: none; margin: 16px 0 0; padding: 0; }

.board__row { display: grid; grid-template-columns: 96px 1fr; gap: 14px; padding: 13px 0; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.board__row:first-child { border-top: none; }
.board__when { font-size: 0.8rem; font-weight: 600; color: var(--slate-400); padding-top: 2px; }
.board__what { font-size: 0.86rem; color: var(--slate-400); }
.board__what strong { display: block; color: #fff; font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }

.board__row.is-now .board__when { color: var(--brand-300); }
.board__row.is-urgent { background: rgba(245, 148, 16, 0.08); margin: 0 -12px; padding-left: 12px; padding-right: 12px; border-radius: 10px; }
.board__row.is-urgent .board__when { color: var(--accent-500); }

.board__note { margin-top: 16px; font-size: 0.78rem; color: var(--slate-500); }

/* --------------------------------------------------------------------- section */
.section { padding: 84px 0; }
.section--tint { background: var(--slate-50); border-block: 1px solid var(--slate-200); }
.section--dark { background: var(--ink-800); }

.head { max-width: 44rem; }
.head--center { margin: 0 auto; text-align: center; }
.eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-600); }
.eyebrow--light { color: var(--brand-300); }
.head h2, .split h2 { margin-top: 12px; }
.lead { margin-top: 14px; font-size: 1.05rem; }
.on-dark { color: #fff; }
.on-dark-muted { color: #cbd5e1; }

.footnote { margin-top: 40px; font-size: 0.82rem; color: var(--slate-500); max-width: 46rem; }

/* ----------------------------------------------------------------------- cards */
.cards { margin-top: 46px; display: grid; gap: 22px; }
@media (min-width: 820px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 26px; }
.card__icon {
  width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center;
  background: var(--brand-50); color: var(--brand-700); border: 1px solid var(--brand-100);
}
.card__icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-top: 18px; }
.card p { margin-top: 10px; font-size: 0.94rem; }

/* ----------------------------------------------------------------------- split */
.split { display: grid; gap: 44px; align-items: start; }
@media (min-width: 940px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }
.split--form { align-items: center; }

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.checklist li { position: relative; padding: 14px 0 14px 34px; border-top: 1px solid var(--slate-200); font-size: 0.94rem; }
.checklist li:first-child { border-top: none; }
.checklist li strong { display: block; color: var(--slate-900); font-weight: 600; margin-bottom: 2px; }
.checklist li::before {
  content: ""; position: absolute; left: 4px; top: 20px;
  width: 12px; height: 7px; border-left: 2.5px solid var(--brand-600); border-bottom: 2.5px solid var(--brand-600);
  transform: rotate(-45deg);
}

/* ----------------------------------------------------------------------- steps */
.steps { margin: 46px auto 0; padding: 0; list-style: none; max-width: 760px; }

.step { position: relative; padding: 0 0 32px 58px; }
/* The line joining one step to the next. Drawn on the item rather than the list so the
   last one can drop it without a wrapper element. */
.step::before {
  content: ""; position: absolute; left: 16px; top: 38px; bottom: 0;
  width: 2px; background: var(--slate-200);
}
.step:last-child { padding-bottom: 0; }
.step:last-child::before { display: none; }

.step__n {
  position: absolute; left: 0; top: 0;
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 999px;
  background: var(--brand-600); color: #fff; font-weight: 700; font-size: 0.9rem;
}
.step h3 { margin-top: 5px; }
.step p { margin-top: 8px; font-size: 0.94rem; }

/* Steps four and five are the chargeable ones. Marking them keeps the word "free" on
   this page from quietly appearing to cover the whole project. */
.step--paid .step__n { background: var(--slate-900); }
.step--paid h3::after {
  content: "Quoted separately"; margin-left: 10px; vertical-align: 2px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--slate-500); background: var(--slate-100); border-radius: 999px; padding: 3px 8px;
  white-space: nowrap;
}

/* ------------------------------------------------------------------------- faq */
.faq { margin-top: 40px; border-top: 1px solid var(--slate-200); }
.faq details { border-bottom: 1px solid var(--slate-200); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 40px 18px 0; position: relative;
  font-weight: 550; color: var(--slate-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 26px; width: 11px; height: 11px;
  border-right: 2px solid var(--slate-400); border-bottom: 2px solid var(--slate-400);
  transform: rotate(45deg); transition: transform 180ms ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 30px; }
.faq details p { padding: 0 40px 20px 0; font-size: 0.95rem; }

/* ------------------------------------------------------------------------ form */
.form { background: #fff; border-radius: 18px; padding: 26px; }
.form__row { display: grid; gap: 16px; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__row + .form__row, .form__dynamic { margin-top: 16px; }
.form__dynamic:empty { margin-top: 0; }

.field { display: block; }
.field > span { display: block; font-size: 0.85rem; font-weight: 550; color: var(--slate-900); margin-bottom: 6px; }
.field > span em { font-style: normal; font-weight: 400; color: var(--slate-400); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 13px; border: 1px solid var(--slate-300); border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; color: var(--slate-900); background: #fff;
  transition: border-color 140ms, box-shadow 140ms;
}
.field textarea { min-height: 88px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.16);
}
.field .help { display: block; margin-top: 5px; font-size: 0.78rem; color: var(--slate-400); font-weight: 400; }

.consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; font-size: 0.85rem; cursor: pointer; }
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--brand-600); flex: none; }

/* The honeypot. Removed from the visual and accessibility trees without display:none,
   which some bots check for. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

#submit { margin-top: 20px; }

.form__msg { margin-top: 14px; padding: 11px 13px; border-radius: 10px; font-size: 0.88rem; }
.form__msg.is-error { background: #fff1f2; color: var(--rose-600); }
.form__msg.is-info { background: var(--brand-50); color: var(--brand-700); }

.form__fine { margin-top: 12px; font-size: 0.78rem; color: var(--slate-400); }

.done { background: #fff; border-radius: 18px; padding: 34px; text-align: left; }
.done__tick { width: 40px; height: 40px; fill: none; stroke: var(--emerald-600); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.done h3 { margin-top: 16px; font-size: 1.25rem; }
.done p { margin-top: 10px; font-size: 0.95rem; }

/* ---------------------------------------------------------------------- footer */
.footer { background: var(--ink-900); color: var(--slate-400); padding: 52px 0 26px; }
.footer__inner { display: grid; gap: 28px; }
@media (min-width: 720px) { .footer__inner { grid-template-columns: 1.4fr 1fr; } }
.footer__inner p { margin-top: 14px; font-size: 0.9rem; max-width: 26rem; }
.footer nav { display: grid; gap: 10px; align-content: start; }
@media (min-width: 480px) { .footer nav { grid-template-columns: 1fr 1fr; } }
.footer nav a { font-size: 0.9rem; text-decoration: none; transition: color 140ms; }
.footer nav a:hover { color: #fff; }
.footer__legal {
  margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; font-size: 0.78rem;
}

/* ----------------------------------------------------------------------- stats */
/* A dark band immediately under the hero. It exists to break the page's rhythm as much as
   to carry the numbers — the reader has just met a wall of dark hero, and a second wall of
   white sections below it reads as one long scroll without this. */
.stats { background: var(--ink-900); padding: 34px 0; }
.stats__grid { display: grid; gap: 26px 20px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 860px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

.stat { text-align: center; }
.stat__n {
  display: block; color: #fff; font-weight: 680; line-height: 1.1;
  font-size: clamp(1.8rem, 4.2vw, 2.5rem); letter-spacing: -0.03em;
  /* Tabular figures, or the counter animation makes the whole band jitter as digits of
     different widths swap through it. */
  font-variant-numeric: tabular-nums;
}
.stat__n--free { color: var(--brand-300); }
#stat-days { color: var(--accent-500); }
.stat__label { display: block; margin-top: 8px; font-size: 0.82rem; color: var(--slate-400); }

/* --------------------------------------------------------------------- compare */
.compare { margin-top: 46px; display: grid; gap: 18px; }
@media (min-width: 920px) { .compare { grid-template-columns: 1fr auto 1fr; align-items: stretch; } }

.compare__panel {
  margin: 0; background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column;
}
.compare__panel figcaption {
  display: grid; gap: 9px; justify-items: start;
  font-weight: 620; color: var(--slate-900); font-size: 0.98rem;
}
.compare__panel > p { margin-top: 16px; font-size: 0.9rem; }

.compare__arrow { display: grid; place-items: center; color: var(--slate-300); }
.compare__arrow svg { width: 28px; height: 28px; transform: rotate(90deg); }
@media (min-width: 920px) { .compare__arrow svg { transform: none; } }

.pill {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; padding: 4px 9px; border-radius: 999px;
}
.pill--no { background: #fee2e2; color: var(--rose-600); }
.pill--yes { background: #d1fae5; color: var(--emerald-600); }

/* A stylised invoice, drawn in CSS. Deliberately abstract: it must not be mistakable for
   a screenshot of a real document. */
.doc {
  margin-top: 16px; flex: 1; background: var(--slate-50); border: 1px solid var(--slate-200);
  border-radius: 10px; padding: 18px; display: grid; gap: 9px; align-content: start;
}
.doc__bar { height: 8px; border-radius: 3px; background: var(--slate-200); }
.doc__bar--title { height: 13px; width: 56%; background: var(--slate-300); }
.doc__bar--sm { width: 70%; }
.doc__bar--total { height: 13px; width: 38%; background: var(--slate-300); justify-self: end; }
.doc__rule { height: 1px; background: var(--slate-200); margin: 6px 0; }

.code {
  margin: 16px 0 0; flex: 1; background: var(--ink-800); color: #cbd5e1;
  border-radius: 10px; padding: 16px; overflow-x: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.73rem; line-height: 1.65;
}
.code code { white-space: pre; }

/* ------------------------------------------------------------------------ flow */
.flow { margin: 46px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
@media (min-width: 940px) { .flow { grid-template-columns: repeat(4, 1fr); gap: 12px; } }

.flow__step {
  position: relative; background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 20px; display: grid; gap: 7px; align-content: start;
}
.flow__step strong { color: var(--slate-900); font-size: 0.98rem; }
.flow__step > span:last-child { font-size: 0.88rem; }
.flow__n {
  display: grid; place-items: center; width: 26px; height: 26px; border-radius: 999px;
  background: var(--slate-100); color: var(--slate-500); font-size: 0.78rem; font-weight: 700;
}
.flow__step.is-key { border-color: var(--brand-300); background: var(--brand-50); }
.flow__step.is-key .flow__n { background: var(--brand-600); color: #fff; }
.flow__step.is-key em { font-style: normal; font-weight: 600; color: var(--brand-700); }

/* The joins between cards. Horizontal only — stacked on mobile they would point sideways
   into nothing. */
@media (min-width: 940px) {
  .flow__step::after {
    content: ""; position: absolute; right: -12px; top: 50%; width: 12px; height: 2px;
    background: var(--slate-200); transform: translateY(-50%);
  }
  .flow__step:last-child::after { display: none; }
}

.flow__fta {
  margin-top: 20px; background: var(--ink-800); color: #cbd5e1;
  border-radius: var(--radius); padding: 22px 24px;
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start;
}
.flow__fta strong { color: #fff; display: block; margin-bottom: 4px; }
.flow__fta p { font-size: 0.92rem; }
.flow__ftaicon {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.08); color: var(--brand-300);
}
.flow__ftaicon svg { width: 20px; height: 20px; }

/* ----------------------------------------------------------------------- risks */
.risks { margin-top: 46px; display: grid; gap: 20px; }
@media (min-width: 820px) { .risks { grid-template-columns: repeat(2, 1fr); } }
.risk { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 24px; }
.risk h3 { display: flex; align-items: center; gap: 11px; }
.risk__mark { flex: none; width: 8px; height: 8px; border-radius: 2px; background: var(--accent-500); }
.risk p { margin-top: 11px; font-size: 0.93rem; }

/* ----------------------------------------------------------------------- gantt */
.gantt {
  margin-top: 46px; background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 22px 24px;
}
/* The week scale is desktop-only. Stacked on a phone the bars sit under their labels and
   a shared ruler across the top would line up with nothing. */
.gantt__scale { display: none; }
@media (min-width: 780px) {
  .gantt__scale {
    display: flex; justify-content: space-between;
    padding: 0 0 8px 206px; margin-bottom: 6px;
    border-bottom: 1px solid var(--slate-200);
    font-size: 0.72rem; color: var(--slate-400);
  }
}

.gantt__rows { margin: 0; padding: 0; list-style: none; }
.gantt__row { display: grid; gap: 6px; padding: 9px 0; }
@media (min-width: 780px) { .gantt__row { grid-template-columns: 190px 1fr; gap: 16px; align-items: center; } }
.gantt__label { font-size: 0.88rem; font-weight: 560; color: var(--slate-900); }

.gantt__track {
  position: relative; height: 30px; border-radius: 6px; background: var(--slate-100);
  display: grid; grid-template-columns: repeat(13, 1fr);
}
.gantt__bar {
  grid-column: var(--from) / var(--to);
  display: flex; align-items: center; padding: 0 10px;
  border-radius: 6px; background: var(--brand-600); color: #fff;
  font-size: 0.72rem; font-weight: 600; white-space: nowrap;
  /* Wiped in with clip-path rather than scaled: a scaleX would stretch the label inside
     the bar as it grows. */
  clip-path: inset(0 100% 0 0);
  transition: clip-path 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-in .gantt__bar { clip-path: inset(0 0 0 0); }
.gantt__row:nth-child(1) .gantt__bar { transition-delay: 120ms; }
.gantt__row:nth-child(2) .gantt__bar { transition-delay: 200ms; }
.gantt__row:nth-child(3) .gantt__bar { transition-delay: 280ms; }
.gantt__row:nth-child(4) .gantt__bar { transition-delay: 360ms; }
.gantt__row:nth-child(5) .gantt__bar { transition-delay: 440ms; }
.gantt__row:nth-child(6) .gantt__bar { transition-delay: 520ms; }
.gantt__row:nth-child(7) .gantt__bar { transition-delay: 600ms; }

.gantt__bar--free { background: var(--emerald-600); }
.gantt__bar--key { background: var(--accent-500); }
.gantt__bar--live { background: var(--ink-700); }
.gantt__weeks { overflow: hidden; text-overflow: ellipsis; }

/* ---------------------------------------------------------------------- owners */
.owners { margin-top: 46px; display: grid; gap: 22px; }
@media (min-width: 940px) { .owners { grid-template-columns: repeat(3, 1fr); } }

.owner {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--slate-200);
  border-radius: var(--radius); padding: 26px;
}
.owner--lead { border-color: var(--brand-300); box-shadow: 0 18px 44px -30px rgba(7, 150, 209, 0.6); }
.owner__who { font-size: 1.15rem; font-weight: 680; color: var(--slate-900); letter-spacing: -0.02em; }
.owner__role {
  margin-top: 3px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--brand-600);
}
.owner ul { margin: 18px 0 18px; padding: 0; list-style: none; display: grid; gap: 9px; }
.owner li { position: relative; padding-left: 24px; font-size: 0.91rem; }
.owner li::before {
  content: ""; position: absolute; left: 2px; top: 9px;
  width: 7px; height: 7px; border-radius: 2px; background: var(--brand-500);
}
/* auto pushes the note to the bottom so the rule lines up across all three cards. */
.owner__note {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--slate-200);
  font-size: 0.87rem; color: var(--slate-500);
}

.note {
  margin-top: 26px; background: var(--brand-50); border: 1px solid var(--brand-100);
  border-radius: var(--radius); padding: 22px 24px;
}
.note p { font-size: 0.93rem; }
.note strong { color: var(--slate-900); }

/* ---------------------------------------------------------------------- motion */
/* Entrance only, transform and opacity only — both composited, neither triggers layout,
   so a page full of them costs the same as a page with one. */
.reveal { opacity: 0; transform: translate3d(0, 14px, 0); transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.is-in { opacity: 1; transform: none; }
.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 180ms; }
.delay-3 { transition-delay: 270ms; }

/* THE ACCESSIBILITY GUARANTEE, and the reason the reveal is a transition rather than an
   animation: with motion reduced, elements are simply visible. There is no state in which
   content is hidden waiting for something that will not happen. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .faq summary::after { transition: none; }
  /* Same guarantee for the two things added since: the schedule bars are drawn at full
     width, and the counters are written straight to their final value by app.js. */
  .gantt__bar { clip-path: none; transition: none; }
}
