/* ==========================================================================
   CSC-WORK — home page
   Single stylesheet, no external dependencies (the site is served from a
   private network where CDN fonts are not guaranteed to resolve).
   ========================================================================== */

:root {
  --ink:        #0b1220;
  --ink-2:      #131c30;
  --ink-3:      #1c2740;
  --paper:      #ffffff;
  --paper-2:    #f5f7fb;
  --paper-3:    #eaeef7;

  --text:       #16203a;
  --text-muted: #5a6782;
  --text-invert:#e8edf8;
  --text-invert-muted: #9aa8c4;

  --line:       #dde3ef;
  --line-dark:  rgba(255,255,255,.10);

  --accent:     #2f6fed;
  --accent-2:   #4f8dfd;
  --accent-ink: #1b4bb0;
  --teal:       #17a3a3;
  --amber:      #d98416;

  --radius:     14px;
  --radius-lg:  22px;
  --shadow-sm:  0 1px 2px rgba(16,24,48,.06), 0 2px 8px rgba(16,24,48,.05);
  --shadow-md:  0 6px 14px rgba(16,24,48,.07), 0 18px 40px rgba(16,24,48,.08);

  --wrap:       1160px;
  --gut:        clamp(20px, 5vw, 40px);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
          "Liberation Mono", monospace;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
a { color: var(--accent-ink); text-underline-offset: 3px; }
a:hover { color: var(--accent); }

h1, h2, h3 { line-height: 1.14; letter-spacing: -.021em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.15rem, 1.35rem + 3.4vw, 4rem); }
h2 { font-size: clamp(1.7rem, 1.25rem + 1.9vw, 2.6rem); }
h3 { font-size: 1.14rem; letter-spacing: -.012em; }
p  { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

:focus-visible { outline: 3px solid var(--accent-2); outline-offset: 3px; border-radius: 6px; }

/* ─────────────────────────── buttons ─────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font: inherit; font-weight: 600; letter-spacing: -.005em;
  padding: 13px 24px; border-radius: 10px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(47,111,237,.28); }
.btn--primary:hover { background: var(--accent-ink); color: #fff; }
.btn--ghost { border-color: rgba(255,255,255,.28); color: var(--text-invert); background: rgba(255,255,255,.04); }
.btn--ghost:hover { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.09); }
.btn--sm { padding: 9px 16px; font-size: .93rem; border-radius: 8px; }
.btn--lg { padding: 16px 30px; font-size: 1.03rem; }

/* ─────────────────────────── nav ─────────────────────────── */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,18,32,.86);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-dark);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand__mark { width: 32px; height: 32px; flex: none; }
.brand__mark rect { fill: var(--accent); }
.brand__mark path { stroke: #fff; fill: none; }
.brand__text {
  font-weight: 800; font-size: 1.06rem; letter-spacing: .085em;
  color: var(--text-invert); text-transform: uppercase;
}
.brand__dash { color: var(--accent-2); }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links > a:not(.btn) {
  color: var(--text-invert-muted); text-decoration: none; font-size: .95rem; font-weight: 500;
  padding: 9px 13px; border-radius: 8px;
}
.nav__links > a:not(.btn):hover { color: #fff; background: rgba(255,255,255,.07); }
.nav__links .btn { margin-left: 10px; }

.nav__toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line-dark);
  background: rgba(255,255,255,.05); border-radius: 10px; cursor: pointer;
  padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav__toggle span { display: block; width: 18px; height: 2px; background: var(--text-invert); border-radius: 2px; }

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #0d1626; border-bottom: 1px solid var(--line-dark);
    padding: 14px var(--gut) 20px;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links > a:not(.btn) { padding: 12px 10px; font-size: 1rem; }
  .nav__links .btn { margin: 8px 0 0; }
}

/* ─────────────────────────── hero ─────────────────────────── */

.hero { position: relative; background: var(--ink); color: var(--text-invert); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(760px 420px at 12% -10%, rgba(47,111,237,.42), transparent 62%),
    radial-gradient(620px 380px at 92% 8%, rgba(23,163,163,.24), transparent 60%),
    linear-gradient(180deg, #0b1220 0%, #101a2e 62%, #0d1526 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 30%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 20%, transparent 78%);
}
.hero__inner { position: relative; padding: clamp(64px, 9vw, 120px) var(--gut) clamp(52px, 7vw, 84px); }

.eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-2); margin: 0 0 22px;
}
.hero__title { max-width: 20ch; color: #fff; margin-bottom: 24px; }
.hero__title em { font-style: normal; color: var(--accent-2); }
.hero__lede {
  max-width: 62ch; font-size: clamp(1.03rem, .97rem + .3vw, 1.2rem);
  color: var(--text-invert-muted); margin-bottom: 34px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.capbar {
  list-style: none; margin: clamp(48px, 6vw, 76px) 0 0; padding: 26px 0 0;
  border-top: 1px solid var(--line-dark);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.capbar li { display: flex; flex-direction: column; gap: 2px; }
.capbar strong { font-size: 1.02rem; color: #fff; font-weight: 650; letter-spacing: -.01em; }
.capbar span { font-size: .87rem; color: var(--text-invert-muted); }
@media (max-width: 720px) { .capbar { grid-template-columns: repeat(2, 1fr); } }

/* ─────────────────────────── reach ─────────────────────────── */

.reach { background: var(--paper); border-bottom: 1px solid var(--line); }
.reach__inner {
  padding-block: clamp(52px, 6.5vw, 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.reach__lead h2 { margin-bottom: .55em; }
.reach__lead .sec-lede { max-width: 56ch; }

.reach__figures { display: grid; gap: 18px; }
.figure {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 20px;
}
.figure__n {
  display: block;
  font-size: clamp(2.6rem, 1.9rem + 2.4vw, 3.7rem);
  font-weight: 800; letter-spacing: -.035em; line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.figure__plus { color: var(--accent); }
.figure__label {
  display: block; margin-top: 8px;
  font-size: .9rem; color: var(--text-muted); max-width: 24ch;
}

.regions {
  grid-column: 1 / -1;
  list-style: none; margin: 6px 0 0; padding: 26px 0 0;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px 12px;
}
.regions li {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .93rem; font-weight: 600; color: var(--text);
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 16px 8px 13px;
}
.regions__dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(47,111,237,.15);
}
.regions li:nth-child(2) .regions__dot { background: var(--teal); box-shadow: 0 0 0 3px rgba(23,163,163,.15); }
.regions li:nth-child(3) .regions__dot { background: var(--amber); box-shadow: 0 0 0 3px rgba(217,132,22,.15); }
.regions li:nth-child(4) .regions__dot { background: #7c5cd6; box-shadow: 0 0 0 3px rgba(124,92,214,.15); }
.regions li:nth-child(5) .regions__dot { background: #0e7a4f; box-shadow: 0 0 0 3px rgba(14,122,79,.15); }

@media (max-width: 820px) {
  .reach__inner { grid-template-columns: 1fr; }
  .reach__figures { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .reach__figures { grid-template-columns: 1fr; }
}

/* ─────────────────────────── sections ─────────────────────────── */

.section { padding: clamp(64px, 8vw, 108px) 0; }
.section--alt { background: var(--paper-2); border-block: 1px solid var(--line); }
.section--dark { background: var(--ink-2); color: var(--text-invert); }
.section--dark .kicker { color: var(--accent-2); }
.section--dark h2 { color: #fff; }
.section--dark .sec-lede { color: var(--text-invert-muted); }

.kicker {
  font-size: .78rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 14px;
}
.sec-head { max-width: 68ch; margin-bottom: clamp(38px, 5vw, 58px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-lede { color: var(--text-muted); font-size: 1.06rem; margin: 0; }

.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ─────────────────────────── service cards ─────────────────────────── */

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #c9d5ee; }
.card__icon {
  width: 44px; height: 44px; border-radius: 11px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(47,111,237,.13), rgba(23,163,163,.13));
  border: 1px solid rgba(47,111,237,.18);
}
.card__icon svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card p { color: var(--text-muted); font-size: .97rem; margin: 0; }

/* ─────────────────────────── sectors ─────────────────────────── */

.sector {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 24px; box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: 44px 1fr; grid-template-rows: auto auto;
  column-gap: 16px; row-gap: 4px; align-items: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.sector:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #c9d5ee; }
.sector__icon {
  grid-row: 1; width: 44px; height: 44px; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(23,163,163,.14), rgba(47,111,237,.12));
  border: 1px solid rgba(23,163,163,.20);
}
.sector__icon svg { width: 22px; height: 22px; fill: none; stroke: #0f7f80; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sector h3 { grid-column: 2; grid-row: 1; margin: 0; }
.sector p { grid-column: 1 / -1; grid-row: 2; margin: 12px 0 0; color: var(--text-muted); font-size: .95rem; }

/* ─────────────────────────── process improvement ─────────────────────────── */

.impact { background: linear-gradient(180deg, #101a2e 0%, #0d1526 100%); }

.method {
  list-style: none; margin: 0 0 clamp(34px, 4.5vw, 52px); padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.method li {
  position: relative; padding: 18px 16px 18px 18px;
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  display: grid; gap: 6px;
}
.method li::after {
  content: ""; position: absolute; top: 50%; right: -10px; width: 8px; height: 8px;
  border-top: 2px solid rgba(255,255,255,.16); border-right: 2px solid rgba(255,255,255,.16);
  transform: translateY(-50%) rotate(45deg);
}
.method li:last-child::after { display: none; }
.method span {
  font-family: var(--mono); font-size: .78rem; font-weight: 700; color: var(--accent-2);
  letter-spacing: .06em;
}
.method strong { color: #fff; font-size: 1rem; letter-spacing: -.01em; }
.method em { font-style: normal; color: var(--text-invert-muted); font-size: .86rem; line-height: 1.5; }
@media (max-width: 1040px) { .method { grid-template-columns: repeat(3, 1fr); } .method li::after { display: none; } }
@media (max-width: 640px)  { .method { grid-template-columns: 1fr; } }

/* dashboard shell */
.viz {
  border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  background:
    radial-gradient(620px 320px at 88% -20%, rgba(47,111,237,.16), transparent 62%),
    rgba(255,255,255,.028);
  padding: clamp(22px, 3vw, 32px);
}
.viz__head { display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-start; justify-content: space-between; margin-bottom: 26px; }
.viz__head h3 { color: #fff; font-size: 1.28rem; margin-bottom: .35em; }
.viz__head p { margin: 0; color: var(--text-invert-muted); font-size: .93rem; max-width: 62ch; }
.viz__badge {
  flex: none; font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
  color: var(--accent-2); border: 1px solid rgba(79,141,253,.35); background: rgba(79,141,253,.10);
  border-radius: 999px; padding: 6px 13px;
}

/* kpi tiles */
.kpis { list-style: none; margin: 0 0 22px; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .kpis { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .kpis { grid-template-columns: 1fr; } }
.kpi {
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  background: rgba(9,15,27,.55); padding: 18px 18px 16px;
  display: grid; gap: 6px; align-content: start;
}
.kpi__label { font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; color: var(--text-invert-muted); font-weight: 600; }
.kpi__value {
  font-size: clamp(1.9rem, 1.5rem + 1.1vw, 2.4rem); font-weight: 800; letter-spacing: -.035em;
  color: #fff; line-height: 1; font-variant-numeric: tabular-nums;
}
.kpi__value small { font-size: .42em; font-weight: 600; letter-spacing: 0; color: var(--text-invert-muted); margin-left: .45em; }
.kpi__delta { font-size: .84rem; font-weight: 700; letter-spacing: .01em; }
.kpi__delta--good { color: #56d6a0; }
.kpi__delta i { font-style: normal; font-weight: 500; color: var(--text-invert-muted); margin-left: .35em; }

/* charts */
.viz__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 900px) { .viz__grid { grid-template-columns: 1fr; } }

.chart {
  margin: 0; border: 1px solid var(--line-dark); border-radius: var(--radius);
  background: rgba(9,15,27,.55); padding: 20px 20px 16px;
}
.chart figcaption { display: grid; gap: 3px; margin-bottom: 16px; }
.chart figcaption strong { color: #fff; font-size: 1rem; letter-spacing: -.01em; }
.chart figcaption span { color: var(--text-invert-muted); font-size: .84rem; }

.spark { display: block; width: 100%; height: auto; overflow: visible; }
.spark__grid line { stroke: rgba(255,255,255,.08); stroke-width: 1; }
.spark__ylab text, .spark__xlab text {
  fill: #7d8ba7; font-size: 12px; font-family: var(--mono);
}
.spark__area { fill: url(#sparkFill); }
.spark__line { fill: none; stroke: var(--accent-2); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.spark__dots circle { r: 4.5; fill: #0d1526; stroke: var(--accent-2); stroke-width: 3; }
.spark__dots circle.is-last { fill: var(--accent-2); r: 5.5; }

/* Drawn by default. Only once the observer has tagged the panel (JS running,
   motion allowed) do we hide and then animate — so a blocked script or
   prefers-reduced-motion still gets the finished chart, not an empty box. */
.viz.reveal .spark__line { stroke-dasharray: 620; stroke-dashoffset: 620; }
.viz.reveal .spark__area { opacity: 0; }
.viz.reveal.is-in .spark__line { stroke-dashoffset: 0; transition: stroke-dashoffset 1.5s cubic-bezier(.4,.1,.2,1) .15s; }
.viz.reveal.is-in .spark__area { opacity: 1; transition: opacity .9s ease .7s; }

.bars { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.bar { display: grid; gap: 5px; }
.bar__label { font-size: .87rem; color: var(--text-invert); font-weight: 600; }
.bar__track { display: block; height: 22px; border-radius: 6px; background: rgba(255,255,255,.055); overflow: hidden; }
.bar__fill {
  display: flex; align-items: center; justify-content: flex-end;
  height: 100%; width: var(--w); border-radius: 6px; padding-right: 9px;
}
.bar__fill i { font-style: normal; font-size: .76rem; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.bar__fill--before { background: rgba(255,255,255,.17); }
.bar__fill--after  { background: linear-gradient(90deg, var(--accent), var(--teal)); }
.viz.reveal .bar__fill { width: 0; }
.viz.reveal.is-in .bar__fill { width: var(--w); transition: width 1.1s cubic-bezier(.35,.1,.2,1) .25s; }
.viz.reveal.is-in .bar__fill--after { transition-delay: .5s; }

.bar__key { display: flex; gap: 18px; padding-top: 4px; font-size: .8rem; color: var(--text-invert-muted); }
.bar__key span { display: inline-flex; align-items: center; gap: 7px; }
.swatch { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.swatch--before { background: rgba(255,255,255,.17); }
.swatch--after  { background: linear-gradient(90deg, var(--accent), var(--teal)); }

.viz__note {
  margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line-dark);
  font-size: .87rem; color: var(--text-invert-muted); max-width: 88ch;
}

/* ─────────────────────────── products ─────────────────────────── */

.prod {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 26px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.prod::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
}
.prod__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.prod__logo {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  font-weight: 800; font-size: .95rem; letter-spacing: .04em; color: #fff;
}
.prod__logo--cf { background: linear-gradient(140deg, #2f6fed, #1b4bb0); }
.prod__logo--rf { background: linear-gradient(140deg, #17a3a3, #0f6f70); }
.prod__logo--sf { background: linear-gradient(140deg, #d98416, #a55f08); }

.tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; border: 1px solid;
}
.tag--live  { color: #0e7a4f; border-color: rgba(14,122,79,.28);  background: rgba(14,122,79,.08); }
.tag--early { color: #1b4bb0; border-color: rgba(27,75,176,.28);  background: rgba(27,75,176,.08); }
.tag--dev   { color: #8a5a05; border-color: rgba(138,90,5,.28);   background: rgba(138,90,5,.08); }

.prod__tagline {
  font-size: .82rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--text-muted); margin: -.35em 0 .9em;
}
.prod > p { color: var(--text-muted); font-size: .97rem; }

.ticks { list-style: none; margin: auto 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); display: grid; gap: 9px; }
.ticks li { position: relative; padding-left: 26px; font-size: .93rem; color: var(--text); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 15px; height: 8px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg); border-radius: 1px;
}
.ticks--lg li { font-size: .98rem; }

.note { margin: 30px 0 0; font-size: .93rem; color: var(--text-muted); }

/* ─────────────────────────── client access ─────────────────────────── */

.access-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 900px) { .access-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .access-grid { grid-template-columns: 1fr; } }

.access {
  display: grid; grid-template-rows: auto 1fr auto; gap: 14px;
  padding: 24px 22px 20px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--paper);
  box-shadow: var(--shadow-sm); text-decoration: none; color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.access:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); color: inherit; }

/* The support desk is the one people actually come here for, so it gets the
   full first row rather than being one tile of four. */
.access--support { grid-column: 1 / -1; grid-template-columns: 54px 1fr auto; grid-template-rows: auto; align-items: center; gap: 20px; }
@media (max-width: 600px) { .access--support { grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; } }

.access__logo {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  font-weight: 800; font-size: .95rem; letter-spacing: .04em; color: #fff; flex: none;
}
.access__logo--psa { width: 54px; height: 54px; background: linear-gradient(140deg, #16203a, #2f6fed); }
.access__logo--psa svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.access__logo--cf  { background: linear-gradient(140deg, #2f6fed, #1b4bb0); }
.access__logo--rf  { background: linear-gradient(140deg, #17a3a3, #0f6f70); }
.access__logo--sf  { background: linear-gradient(140deg, #d98416, #a55f08); }

.access__body { display: grid; gap: 6px; align-content: start; }
.access__name { font-weight: 700; font-size: 1.08rem; letter-spacing: -.015em; color: var(--text); }
.access__sub {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); border: 1px solid var(--line); border-radius: 999px;
  padding: 3px 9px; margin-left: 8px; vertical-align: middle;
}
.access__text { color: var(--text-muted); font-size: .93rem; line-height: 1.55; }

.access__go {
  display: inline-flex; align-items: center; gap: 8px; align-self: start;
  font-weight: 700; font-size: .92rem; color: var(--accent-ink); white-space: nowrap;
}
.access__go svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; transition: transform .18s ease; }
.access:hover .access__go svg { transform: translateX(4px); }

/* ─────────────────────────── approach ─────────────────────────── */

.approach { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(34px, 5vw, 70px); align-items: start; }
@media (max-width: 900px) { .approach { grid-template-columns: 1fr; } }

.honesty {
  margin-top: 30px; padding: 22px 24px; border-radius: var(--radius);
  background: var(--paper-2); border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
}
.honesty h3 { margin-bottom: .45em; }
.honesty p { margin: 0; color: var(--text-muted); font-size: .97rem; }

.steps { list-style: none; counter-reset: s; margin: 0; padding: 0; display: grid; gap: 4px; }
.steps li { display: grid; grid-template-columns: 68px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.steps li:first-child { border-top: none; padding-top: 0; }
.steps__n { font-family: var(--mono); font-size: 1.5rem; font-weight: 600; color: var(--accent); opacity: .55; letter-spacing: -.03em; }
.steps h3 { margin-bottom: .35em; }
.steps p { margin: 0; color: var(--text-muted); font-size: .96rem; }

/* ─────────────────────────── platform stack ─────────────────────────── */

.stack__item {
  background: rgba(255,255,255,.035); border: 1px solid var(--line-dark);
  border-radius: var(--radius); padding: 24px 22px;
}
.stack__item h3 { color: #fff; margin-bottom: .5em; }
.stack__item p { margin: 0; color: var(--text-invert-muted); font-size: .95rem; }

/* ─────────────────────────── cta ─────────────────────────── */

.cta { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(30px, 4vw, 56px); align-items: start; }
@media (max-width: 900px) { .cta { grid-template-columns: 1fr; } }

.contact-list { list-style: none; margin: 28px 0; padding: 0; display: grid; gap: 12px; }
.contact-list li { display: flex; align-items: baseline; gap: 16px; }
.contact-list__label {
  font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--text-muted); min-width: 56px;
}
.contact-list a { font-size: 1.06rem; font-weight: 600; }

.cta__panel {
  background: var(--ink); color: var(--text-invert); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-md);
}
.cta__panel h3 { color: #fff; margin-bottom: 1em; }
.cta__panel .ticks { border-top-color: var(--line-dark); padding-top: 0; border-top: none; }
.cta__panel .ticks li { color: var(--text-invert); }
.cta__panel .ticks li::before { border-color: var(--accent-2); }
.cta__panel-note { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line-dark); font-size: .9rem; color: var(--text-invert-muted); }

/* ─────────────────────────── footer ─────────────────────────── */

.footer { background: var(--ink); color: var(--text-invert-muted); padding: 52px 0 32px; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 26px; justify-content: space-between; align-items: flex-start; padding-bottom: 30px; border-bottom: 1px solid var(--line-dark); }
.footer__brand p { margin: 10px 0 0; font-size: .93rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer__links a { color: var(--text-invert-muted); text-decoration: none; font-size: .93rem; }
.footer__links a:hover { color: #fff; }
.footer__legal { padding-top: 22px; display: grid; gap: 8px; }
.footer__legal p { margin: 0; font-size: .84rem; }
.footer__disclaimer { color: #6f7d99; max-width: 78ch; }

/* ─────────────────────────── reveal on scroll ─────────────────────────── */

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

@media print {
  .nav, .nav__toggle, .hero__bg, .btn { display: none !important; }
  body { color: #000; background: #fff; }
}
