/* ==========================================================================
   EfCE Design System — "Clean Technical"
   Light, precise, whitespace-led. One accent colour. Minimal motion.
   Self-contained: no Bootstrap, no jQuery, no icon fonts, no web fonts.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
    --ink: #0b1015;
    --ink-body: #39434e;
    --muted: #6b7784;
    --line: #e4e9ee;
    --line-strong: #cfd6de;
    --surface: #f6f8fa;
    --surface-2: #eef2f6;
    --white: #ffffff;

    --accent: #0f62d0;
    --accent-dark: #0a4a9e;
    --accent-tint: #eaf1fc;
    --ok: #1c7c54;

    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

    --gap: 1.5rem;
    --section-y: clamp(4rem, 7vw, 6.5rem);
    --container: 1200px;
    --container-wide: 1400px;
    --header-h: 74px;

    --ease: cubic-bezier(.22, .61, .36, 1);

    --radius: 12px;
    --shadow-md: 0 12px 32px -12px rgba(11, 16, 21, .16);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 64px); }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--ink-body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-dark); }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
hr { border: 0; height: 1px; background: var(--line); margin: 2.5rem 0; }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 { margin: 0; color: var(--ink); font-weight: 650; line-height: 1.15; letter-spacing: -.02em; }

.display { font-size: clamp(2.1rem, 3.7vw, 3.15rem); font-weight: 680; letter-spacing: -.03em; line-height: 1.08; }
.display-2 { font-size: clamp(1.85rem, 3.1vw, 2.65rem); font-weight: 670; letter-spacing: -.03em; line-height: 1.08; }
.h2 { font-size: clamp(1.75rem, 3.2vw, 2.55rem); letter-spacing: -.028em; }
.h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); letter-spacing: -.02em; }
.h4 { font-size: 1.08rem; letter-spacing: -.015em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: clamp(1.08rem, 1.5vw, 1.27rem); line-height: 1.6; color: var(--ink-body); }
.muted { color: var(--muted); }
.small { font-size: .88rem; }
.ink { color: var(--ink); }
strong { color: var(--ink); font-weight: 620; }

.eyebrow {
    display: inline-flex; align-items: center; gap: .7rem;
    font-family: var(--font-mono); font-size: .72rem; font-weight: 500;
    letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
    margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent); opacity: .55; }
.eyebrow.is-plain::before { display: none; }

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.container-wide { max-width: var(--container-wide); }
.container-narrow { max-width: 860px; }

.section { padding-block: var(--section-y); }
.section-sm { padding-block: clamp(2.75rem, 5vw, 4.25rem); }
.section-surface { background: var(--surface); }
.section-line { border-top: 1px solid var(--line); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.section-head .h2 + p, .section-head .h2 + .lead { margin-top: 1rem; }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head.is-center .eyebrow { justify-content: center; }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Two-column text + media */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4.5vw, 4rem); align-items: center; }
.split.is-top { align-items: start; }
.split.is-flipped > :first-child { order: 2; }
.split-media img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); }
.split + .split { margin-top: clamp(3rem, 6vw, 5rem); }

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.skip-link {
    position: absolute; left: 1rem; top: -100px; z-index: 200;
    background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 6px;
}
.skip-link:focus { top: 1rem; color: #fff; }

.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
}
.nav-bar { position: relative; display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }
.nav-brand { display: flex; align-items: center; flex: 0 0 auto; }
.nav-brand img { height: 42px; width: auto; }

.nav-menu { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: .2rem; }
.nav-item { position: relative; display: flex; align-items: center; flex-wrap: wrap; }
.nav-item.has-mega { position: static; }

.nav-link {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .6rem .75rem; font-size: .93rem; font-weight: 520; color: var(--ink);
    border-radius: 6px; white-space: nowrap;
    transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav-link:hover { color: var(--accent); background: var(--accent-tint); }
.nav-item.is-active > .nav-link { color: var(--accent); }

.nav-item.has-drop > .nav-link { padding-right: .25rem; }
.nav-expand { display: inline-flex; align-items: center; justify-content: center; padding: .6rem .5rem; border-radius: 6px; color: var(--ink); pointer-events: none; }
.nav-caret { width: 9px; height: 9px; flex: none; opacity: .5; transition: transform .25s var(--ease); }
.nav-item:hover .nav-caret { transform: rotate(180deg); }

.nav-drop {
    position: absolute; top: calc(100% + 6px); left: 0; min-width: 258px; padding: .5rem;
    background: var(--white); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav-item:hover > .nav-drop, .nav-item:focus-within > .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop a { display: block; padding: .45rem .6rem; font-size: .9rem; line-height: 1.4; color: var(--ink); border-radius: 6px; }
.nav-drop a:hover, .nav-drop a.is-current { background: var(--surface); color: var(--accent); }

/* Grouped services menu, anchored to the header bar */
.nav-mega {
    top: calc(100% - 4px); left: 1.5rem; right: 1.5rem;
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .5rem 1.25rem;
    padding: 1.4rem 1.4rem 0;
}
.mega-col { min-width: 0; }
.mega-h {
    font-family: var(--font-mono); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase;
    color: var(--muted); padding: 0 .6rem .55rem; border-bottom: 1px solid var(--line); margin-bottom: .45rem;
}
.mega-foot {
    grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; align-items: center; justify-content: space-between;
    margin-top: .9rem; padding: .9rem .6rem 1.1rem; border-top: 1px solid var(--line); font-size: .86rem; color: var(--muted);
}
.nav-drop .mega-foot a { display: inline-flex; padding: 0; }
.nav-drop .mega-foot a:hover { background: none; }

.nav-utils { display: flex; align-items: center; gap: .9rem; flex: 0 0 auto; }
.lang-switch { display: flex; align-items: center; gap: .3rem; font-family: var(--font-mono); font-size: .78rem; color: var(--line-strong); }
.lang-switch a { color: var(--muted); padding: .3rem .2rem; letter-spacing: .06em; }
.lang-switch a:hover { color: var(--accent); }
.lang-switch a.is-current { color: var(--ink); font-weight: 600; }

.nav-toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 8px; }
.nav-toggle:hover { background: var(--surface); }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--ink); position: relative; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 1.5px; background: var(--ink); transition: transform .25s var(--ease); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Buttons & links
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    padding: .9rem 1.6rem; font-size: .95rem; font-weight: 570; letter-spacing: -.005em; line-height: 1.2;
    border-radius: 7px; border: 1px solid transparent; text-align: center;
    transition: background-color .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease), transform .22s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .55rem 1rem; font-size: .86rem; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-outline { border-color: var(--line-strong); color: var(--ink); background: var(--white); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-arrow { width: 14px; height: 14px; flex: none; transition: transform .25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }

.link-arrow { display: inline-flex; align-items: center; gap: .45rem; font-weight: 550; font-size: .93rem; }
.link-arrow svg { width: 13px; height: 13px; flex: none; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   7. Home hero
   -------------------------------------------------------------------------- */
.hero { padding-top: clamp(3.25rem, 6vw, 5.5rem); padding-bottom: clamp(3rem, 5vw, 4.5rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.hero-copy .display { margin-bottom: 1.35rem; }
.hero-copy .lead { max-width: 36rem; margin-bottom: 2rem; }
.mark-accent { color: var(--accent); }
.hero-media { position: relative; }
.hero-media img { width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }

.spec-plate {
    position: absolute; left: -18px; bottom: -18px; max-width: 270px;
    background: var(--white); border: 1px solid var(--line); border-radius: 10px;
    padding: .95rem 1.15rem; box-shadow: var(--shadow-md);
}
.spec-plate .k { display: block; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.spec-plate .v { display: block; font-size: .92rem; font-weight: 560; color: var(--ink); line-height: 1.4; }
a.spec-plate { transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease); }
a.spec-plate:hover { border-color: var(--accent); transform: translateY(-2px); }
.spec-more { display: inline-flex; align-items: center; gap: .4rem; margin-top: .55rem; font-size: .84rem; font-weight: 560; color: var(--accent); }
.spec-more svg { width: 12px; height: 12px; transition: transform .25s var(--ease); }
a.spec-plate:hover .spec-more svg { transform: translateX(3px); }

.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; padding-top: 2rem; margin-top: 2.5rem; border-top: 1px solid var(--line); }
.stat-n { font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 660; letter-spacing: -.03em; color: var(--ink); line-height: 1.1; }
.stat-l { font-size: .83rem; color: var(--muted); line-height: 1.45; margin-top: .3rem; }

/* --------------------------------------------------------------------------
   8. Inner page hero, breadcrumb, section links
   -------------------------------------------------------------------------- */
.page-hero { padding-top: clamp(2rem, 4vw, 3rem); padding-bottom: clamp(2.75rem, 5vw, 4.25rem); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.page-hero.no-media .page-hero-grid { grid-template-columns: 1fr; max-width: 52rem; }
.page-hero .display-2 { margin-bottom: 1.1rem; }
.page-hero .lead { max-width: 40rem; }
.page-hero .btn-row { margin-top: 1.9rem; }
.page-hero-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
/* Result plots keep their own proportions, so legends and colour bars are never cropped or letterboxed */
.page-hero-media.is-contain img { object-fit: contain; aspect-ratio: auto; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .8rem; color: var(--muted); margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.breadcrumb li { display: inline-flex; align-items: center; gap: .4rem; }
.breadcrumb li + li::before { content: "/"; color: var(--line-strong); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }

.subnav { position: sticky; top: var(--header-h); z-index: 50; background: rgba(255, 255, 255, .94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.subnav ul { display: flex; gap: .25rem; overflow-x: auto; scrollbar-width: none; padding-block: .55rem; }
.subnav ul::-webkit-scrollbar { display: none; }
.subnav a { display: block; white-space: nowrap; padding: .4rem .75rem; font-size: .86rem; color: var(--ink-body); border-radius: 999px; }
.subnav a:hover, .subnav a.is-current { background: var(--accent-tint); color: var(--accent); }

/* --------------------------------------------------------------------------
   9. Long-form text
   -------------------------------------------------------------------------- */
.prose { max-width: 46rem; }
.prose h2 { font-size: clamp(1.45rem, 2.4vw, 1.85rem); margin: 2.6rem 0 1rem; }
.prose h3 { font-size: 1.18rem; margin: 2rem 0 .7rem; }
.prose > :first-child { margin-top: 0; }
.prose ul, .prose ol { margin: 0 0 1.2em; }
.prose ul li { position: relative; padding-left: 1.25rem; margin-bottom: .45rem; }
.prose ul li::before { content: ""; position: absolute; left: .1rem; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: .55; }
.prose ol { counter-reset: n; }
.prose ol li { position: relative; padding-left: 2rem; margin-bottom: .45rem; counter-increment: n; }
.prose ol li::before { content: counter(n); position: absolute; left: 0; top: .15em; font-family: var(--font-mono); font-size: .75rem; color: var(--accent); }
.prose img { border-radius: 10px; margin: 1.5rem 0; height: auto; }
.prose blockquote { margin: 1.8rem 0; padding: .2rem 0 .2rem 1.3rem; border-left: 3px solid var(--accent); color: var(--ink); font-size: 1.12rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .93rem; display: block; overflow-x: auto; }
.prose th, .prose td { padding: .6rem .75rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

/* --------------------------------------------------------------------------
   10. Cards: capabilities, families, services
   -------------------------------------------------------------------------- */
.card {
    position: relative; display: flex; flex-direction: column;
    padding: 1.75rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    transition: border-color .28s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease);
}
a.card, .card.is-link { color: inherit; }
a.card:hover, .card.is-link:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: .6rem; }
.card > p { font-size: .95rem; }
.card .link-arrow { margin-top: auto; padding-top: 1.1rem; }
.card > .tag { align-self: flex-start; }

.card-n { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; color: var(--accent); margin-bottom: 1.2rem; }

.card-list { margin-top: 1rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.card-list li { position: relative; padding-left: 1.1rem; font-size: .9rem; line-height: 1.5; }
.card-list li + li { margin-top: .45rem; }
.card-list li::before { content: ""; position: absolute; left: 0; top: .6em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: .6; }
.card-list a { color: var(--ink); }
.card-list a:hover { color: var(--accent); }

/* Service card inside a family on /Services */
.family + .family { margin-top: clamp(3rem, 6vw, 4.5rem); }
.family-head { display: grid; grid-template-columns: 4rem 1fr; gap: 1rem; align-items: baseline; margin-bottom: 1.5rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); }
.family-head .card-n { margin: 0; }
.family-head p { margin: .35rem 0 0; color: var(--muted); max-width: 44rem; }
.svc-card h3 { font-size: 1.1rem; }
.svc-card p { color: var(--muted); font-size: .92rem; }

/* --------------------------------------------------------------------------
   11. Chips, packages, approach pillars
   -------------------------------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
    display: inline-flex; align-items: center; gap: .35rem;
    font-size: .8rem; line-height: 1.3; color: var(--ink-body);
    border: 1px solid var(--line); border-radius: 999px; padding: .32rem .8rem; background: var(--white);
}
a.chip:hover { border-color: var(--accent); color: var(--accent); }

/* Non-interactive list of terms: plain text, deliberately not chip-shaped */
.inline-list { font-size: .95rem; color: var(--ink); line-height: 1.8; padding-top: .9rem; border-top: 1px solid var(--line); }
.inline-list-k { display: block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }

.tag {
    display: inline-block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase;
    color: var(--accent); background: var(--accent-tint); padding: .3rem .6rem; border-radius: 4px; margin-bottom: 1rem;
}

.package { padding: 1.75rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); display: flex; flex-direction: column; }
.package h3 { font-size: 1.1rem; margin-bottom: 1.1rem; }
.package ol { counter-reset: s; margin-bottom: 1.1rem; }
.package ol li { position: relative; counter-increment: s; padding: .5rem 0 .5rem 2.2rem; font-size: .92rem; line-height: 1.45; border-top: 1px dashed var(--line); }
.package ol li:first-child { border-top: 0; }
.package ol li::before {
    content: counter(s); position: absolute; left: 0; top: .5rem; width: 1.5rem; height: 1.5rem;
    display: grid; place-items: center; font-family: var(--font-mono); font-size: .7rem; color: var(--accent);
    border: 1px solid var(--accent); border-radius: 50%;
}
.package .foot { margin-top: auto; font-size: .85rem; color: var(--muted); padding-top: .9rem; border-top: 1px solid var(--line); }

.pillar { padding-top: 1.25rem; border-top: 2px solid var(--ink); }
.pillar h3 { font-size: 1.08rem; margin-bottom: .55rem; }
.pillar p { font-size: .94rem; color: var(--ink-body); }

/* --------------------------------------------------------------------------
   12. Lists: questions, ticks, ladder, scope
   -------------------------------------------------------------------------- */
.q-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem 2rem; }
.q-list li { position: relative; padding: .8rem 0 .8rem 2.1rem; border-bottom: 1px solid var(--line); color: var(--ink); line-height: 1.5; }
.q-list li::before {
    content: "?"; position: absolute; left: 0; top: .82rem; width: 1.4rem; height: 1.4rem; display: grid; place-items: center;
    font-family: var(--font-mono); font-size: .75rem; color: var(--accent); background: var(--accent-tint); border-radius: 4px;
}

.ticks li { position: relative; padding: .45rem 0 .45rem 1.9rem; line-height: 1.5; }
.ticks li::before {
    content: ""; position: absolute; left: 0; top: .72rem; width: 1rem; height: .55rem;
    border-left: 2px solid var(--ok); border-bottom: 2px solid var(--ok); transform: rotate(-45deg);
}
.ticks.is-2col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 2rem; }

.dots li { position: relative; padding: .3rem 0 .3rem 1.2rem; line-height: 1.55; }
.dots li::before { content: ""; position: absolute; left: .1rem; top: .95em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: .55; }
.dots.is-2col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 2rem; }
.dots.is-3col { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 2rem; }

/* --------------------------------------------------------------------------
   13. Quote, callout, contrast
   -------------------------------------------------------------------------- */
.quote { font-size: clamp(1.25rem, 2.3vw, 1.7rem); line-height: 1.35; letter-spacing: -.015em; color: var(--ink); font-weight: 560; max-width: 48rem; margin: 0; }
.quote::before { content: ""; display: block; width: 44px; height: 3px; background: var(--accent); margin-bottom: 1.3rem; }
.quote.is-center { margin-inline: auto; text-align: center; }
.quote.is-center::before { margin-inline: auto; }

.callout { padding: 1.4rem 1.6rem; border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 0 10px 10px 0; background: var(--surface); }
.callout h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.callout p { font-size: .95rem; }
.callout.is-plain { border-left-color: var(--line-strong); }

/* --------------------------------------------------------------------------
   14. Examples, figures, galleries, steps
   -------------------------------------------------------------------------- */
.example { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.example + .example { margin-top: 1.5rem; }
.example-head { padding: 1.6rem 1.75rem 1.3rem; border-bottom: 1px solid var(--line); }
.example-head h3 { margin-bottom: .45rem; }
.example-head p { color: var(--ink); margin: 0; }
.example-body { display: grid; grid-template-columns: 1.2fr 1fr; }
.example-body > div { padding: 1.4rem 1.75rem 1.6rem; }
.example-body > div + div { border-left: 1px solid var(--line); background: var(--surface); }
.example-k { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-bottom: .7rem; }
.example-body .dots li { font-size: .93rem; }
.example-body p { font-size: .94rem; }
.example-body p + .example-k { margin-top: 1.3rem; }
.example .chips { padding: 1rem 1.75rem; border-top: 1px solid var(--line); }

.figure { margin: 0; }
.figure img { width: 100%; border-radius: 10px; border: 1px solid var(--line); background: var(--surface); }
.figure figcaption { margin-top: .7rem; font-size: .84rem; color: var(--muted); line-height: 1.5; }
.figure figcaption b { color: var(--ink); font-weight: 600; }

.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.gallery .figure img { aspect-ratio: 3 / 2; object-fit: cover; }
.gallery.is-contain .figure img { object-fit: contain; }

.steps { counter-reset: st; }
.steps li { position: relative; counter-increment: st; padding: 0 0 1.6rem 3.4rem; }
.steps li::before {
    content: counter(st); position: absolute; left: 0; top: 0; width: 2.2rem; height: 2.2rem; display: grid; place-items: center;
    font-family: var(--font-mono); font-size: .8rem; color: var(--accent); background: var(--white); border: 1px solid var(--accent); border-radius: 50%; z-index: 1;
}
.steps li::after { content: ""; position: absolute; left: 1.1rem; top: 2.2rem; bottom: 0; width: 1px; background: var(--line-strong); }
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }
.steps h3 { font-size: 1.05rem; margin: .3rem 0 .3rem; }
.steps p { font-size: .95rem; margin: 0; }
.steps li.is-loop::before { content: "↻"; font-size: 1rem; background: var(--accent); color: #fff; }

.spec-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.spec-table th, .spec-table td { text-align: left; padding: .8rem .9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.spec-table td:first-child { color: var(--ink); font-weight: 600; white-space: nowrap; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }

.fineprint { font-size: .76rem; color: var(--muted); line-height: 1.5; margin-top: 1rem; }

/* Related services at the foot of a service page */
.related { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem; align-items: start; }
.related h2 { font-size: 1.3rem; margin-bottom: .5rem; }
.related p { color: var(--muted); font-size: .95rem; }

/* --------------------------------------------------------------------------
   15. Work / case studies, track record, secondary items
   -------------------------------------------------------------------------- */
.work { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4.5vw, 4rem); align-items: center; }
.work + .work { margin-top: clamp(3.25rem, 6vw, 5rem); }
.work.is-flipped .work-media { order: 2; }
.work-media img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.work-media.is-contain img { object-fit: contain; background: var(--white); }
.work-body h3 { margin-bottom: .85rem; }
.work-body > p { margin-bottom: 1.2rem; }
.work-body .dots { margin-bottom: 1.2rem; }

.record { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.record-list { border-top: 1px solid var(--line); }
.record-row { display: grid; grid-template-columns: 118px 1fr; gap: 1.25rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.record-yr { font-family: var(--font-mono); font-size: .8rem; color: var(--accent); letter-spacing: .04em; padding-top: .15rem; }
.record-t { font-weight: 570; color: var(--ink); margin-bottom: .2rem; }
.record-d { font-size: .9rem; color: var(--muted); line-height: 1.6; }

.mini { padding: 1.5rem; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.mini h3, .mini h4 { font-size: 1.02rem; margin-bottom: .45rem; }
.mini p { font-size: .9rem; color: var(--muted); }

.logo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1.5rem 2rem; align-items: center; }
.logo-cell { display: flex; align-items: center; justify-content: center; height: 78px; padding: .5rem; }
.logo-cell img { max-width: 100%; max-height: 100%; width: auto; object-fit: contain; filter: grayscale(100%); opacity: .55; transition: filter .3s var(--ease), opacity .3s var(--ease); }
.logo-cell:hover img { filter: grayscale(0%); opacity: 1; }

.founder { display: grid; grid-template-columns: 280px 1fr; gap: clamp(2rem, 4vw, 3.25rem); align-items: start; }
.founder-photo img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); aspect-ratio: 1; object-fit: cover; }
.founder-name { font-weight: 600; color: var(--ink); font-size: 1.1rem; }
.founder-role { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; }

/* --------------------------------------------------------------------------
   16. Posts
   -------------------------------------------------------------------------- */
.post-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 10px; background: var(--white); height: 100%; overflow: hidden; transition: border-color .25s var(--ease), transform .25s var(--ease); }
.post-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.post-card-img { aspect-ratio: 16 / 9; background: var(--surface); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; }
.post-date { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; color: var(--muted); margin-bottom: .7rem; }
.post-card h3 { font-size: 1.08rem; margin-bottom: .7rem; line-height: 1.3; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--accent); }
.post-card p { font-size: .92rem; color: var(--muted); }
.post-card .link-arrow { margin-top: auto; padding-top: 1rem; }

.posts-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.filter-box + .filter-box { margin-top: 2rem; }
.filter-box h2 { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: .8rem; }
.filter-links { display: flex; flex-wrap: wrap; gap: .45rem; }
.filter-links a { font-size: .85rem; padding: .3rem .75rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-body); }
.filter-links a:hover { border-color: var(--accent); color: var(--accent); }
.filter-links a.is-current { background: var(--ink); border-color: var(--ink); color: #fff; }
.search-row { display: flex; gap: .5rem; }
.search-row input { flex: 1; min-width: 0; }

.article { max-width: 46rem; margin-inline: auto; }
.article-meta { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; font-family: var(--font-mono); font-size: .75rem; letter-spacing: .06em; color: var(--muted); margin: 1rem 0 2rem; }
.article-img { margin-bottom: 2rem; }
.article-img img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); }
.article-body img { max-width: 100%; height: auto !important; }
.article-body iframe { max-width: 100%; }

/* --------------------------------------------------------------------------
   17. Forms
   -------------------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem 1.25rem; }
.field { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.field.is-full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 560; color: var(--ink); }
.field .req { color: var(--accent); }
.field .hint { font-size: .8rem; color: var(--muted); }
input[type="text"], input[type="email"], input[type="tel"], input[type="search"], select, textarea {
    width: 100%; font: inherit; font-size: .97rem; color: var(--ink);
    padding: .72rem .85rem; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--white);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
textarea { min-height: 9rem; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
input[type="file"] { font-size: .9rem; padding: .6rem; border: 1px dashed var(--line-strong); border-radius: 8px; background: var(--surface); width: 100%; }
.field-validation-error, .text-danger { font-size: .82rem; color: #b42318; }
.input-validation-error { border-color: #b42318 !important; }
.validation-summary-errors { padding: .9rem 1.1rem; border-radius: 8px; background: #fef3f2; color: #b42318; font-size: .9rem; margin-bottom: 1.25rem; }
.validation-summary-errors ul li { list-style: disc; margin-left: 1.1rem; }
.validation-summary-valid { display: none; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 1.5rem; }
.form-actions .fineprint { margin: 0; max-width: 28rem; }

.contact-layout { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-box { padding: 1.75rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.contact-box h2 { font-size: 1.1rem; margin-bottom: 1rem; }
.contact-box .footer-contact li { font-size: .95rem; }
.map { margin-top: 1.25rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 3; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* --------------------------------------------------------------------------
   18. CTA
   -------------------------------------------------------------------------- */
.cta { background: var(--ink); border-radius: 16px; padding: clamp(2.5rem, 5vw, 4rem); color: #fff; text-align: center; }
.cta h2 { color: #fff; margin-bottom: 1rem; }
.cta p { color: rgba(255, 255, 255, .74); max-width: 40rem; margin-inline: auto; margin-bottom: 2rem; }
.cta .btn-outline { background: transparent; border-color: rgba(255, 255, 255, .3); color: #fff; }
.cta .btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, .06); color: #fff; }
.cta .btn-row { justify-content: center; }
.cta-assure { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin-top: 2rem; font-size: .85rem; color: rgba(255, 255, 255, .62); }
.cta-assure span { display: inline-flex; align-items: center; gap: .45rem; }
.cta-assure svg { width: 14px; height: 14px; color: #5b9bf0; flex: none; }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding-block: clamp(3rem, 5vw, 4.5rem) 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1.2fr .8fr 1.2fr; gap: 2.5rem; }
.footer-h { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); font-weight: 600; margin-bottom: 1.1rem; }
.footer-brand img { height: 34px; width: auto; margin-bottom: 1.1rem; }
.footer-grid p, .footer-grid li { font-size: .89rem; color: var(--muted); line-height: 1.6; }
.footer-links li + li { margin-top: .5rem; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: .6rem; margin-bottom: .7rem; }
.footer-contact a { color: var(--muted); }
.footer-contact a:hover { color: var(--accent); }
.footer-contact .k { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); flex: none; width: 58px; padding-top: .18rem; }

.social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social a { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line-strong); border-radius: 7px; color: var(--muted); transition: border-color .2s var(--ease), color .2s var(--ease); }
.social a:hover { border-color: var(--accent); color: var(--accent); }
.social svg { width: 15px; height: 15px; }

.footer-bottom { margin-top: clamp(2.5rem, 4vw, 3.5rem); border-top: 1px solid var(--line); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .83rem; color: var(--muted); }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent); }

/* --------------------------------------------------------------------------
   20. Motion
   -------------------------------------------------------------------------- */
/* Content is only hidden for the reveal when scripts run (html.js is set inline in the head). */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .07s; }
.reveal-d2 { transition-delay: .14s; }
.reveal-d3 { transition-delay: .21s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
    .js .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   21. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
    .nav-cta { display: none; }
    .nav-link { padding-inline: .6rem; }
}

@media (max-width: 1080px) {
    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .nav-mega { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
    .nav-toggle { display: inline-flex; }
    .nav-menu {
        position: fixed; inset: var(--header-h) 0 auto 0; margin: 0;
        background: var(--white); border-bottom: 1px solid var(--line);
        padding: .5rem 1.5rem 1.5rem; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
        transform: translateY(-8px); opacity: 0; visibility: hidden;
        transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
    }
    .nav-menu.is-open { opacity: 1; visibility: visible; transform: none; }
    .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
    .nav-link { padding: .8rem 0; font-size: 1rem; border-radius: 0; }
    .nav-link:hover { background: none; }
    .nav-item { border-bottom: 1px solid var(--line); }
    .nav-item.has-drop > .nav-link { padding-right: 0; }
    .nav-expand { pointer-events: auto; margin-left: auto; padding: .8rem .25rem; }
    .nav-item:hover .nav-caret { transform: none; }
    .nav-drop, .nav-mega {
        flex-basis: 100%; position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
        border: 0; border-radius: 0; margin: 0 0 .8rem; padding: 0; min-width: 0; display: none;
    }
    .nav-item.is-expanded .nav-drop { display: block; }
    .nav-item.is-expanded .nav-caret { transform: rotate(180deg); }
    .mega-col { margin-bottom: .6rem; }
    .mega-h { padding-left: 0; }
    .nav-drop a { padding-left: .75rem; }
    .mega-foot { padding-inline: 0; }

    .hero-grid, .page-hero-grid, .work, .record, .founder, .split, .related, .contact-layout, .posts-layout, .example-body { grid-template-columns: 1fr; }
    .work.is-flipped .work-media, .split.is-flipped > :first-child { order: 0; }
    .page-hero-media { max-width: 560px; }
    .founder-photo { max-width: 220px; }
    .grid-3, .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .example-body > div + div { border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 680px) {
    body { font-size: 1rem; }
    .grid-2, .grid-3, .grid-4, .gallery, .q-list, .ticks.is-2col, .dots.is-2col, .dots.is-3col, .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stat-strip { grid-template-columns: 1fr; gap: 1rem; }
    .record-row { grid-template-columns: 1fr; gap: .3rem; }
    .spec-plate { position: static; margin-top: 1rem; max-width: none; box-shadow: none; }
    .cta { border-radius: 12px; }
    .btn-row .btn { width: 100%; }
    .btn-row { flex-direction: column; align-items: stretch; }
    .family-head { grid-template-columns: 1fr; gap: .3rem; }
    .lang-switch { font-size: .74rem; }
    .example-head, .example-body > div, .example .chips { padding-inline: 1.25rem; }
}

/* --------------------------------------------------------------------------
   21b. Brand layer (body.theme-brand, always on) — logo blue, pale drawing-paper
        bands with a faint grid, drawing annotations, footer title block.
   -------------------------------------------------------------------------- */
.theme-brand {
    --brand: #3a93db;          /* from the logo */
    --accent: #1f6fb8;         /* logo hue, dark enough for text on white */
    --accent-dark: #17568f;
    --accent-tint: #e9f3fc;
    --paper: #f3f7fb;          /* drawing paper: barely tinted with the logo blue */
    --grid-minor: rgba(58, 147, 219, .06);
    --grid-major: rgba(58, 147, 219, .13);
}

/* Drawing paper: pale tint with a faint grid. Text stays dark, buttons stay normal. */
.theme-brand .hero,
.theme-brand .page-hero,
.theme-brand .cta {
    background-color: var(--paper);
    background-image:
        linear-gradient(var(--grid-major) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-major) 1px, transparent 1px),
        linear-gradient(var(--grid-minor) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-minor) 1px, transparent 1px);
    background-size: 120px 120px, 120px 120px, 24px 24px, 24px 24px;
    background-position: -1px -1px;
}
.theme-brand .hero { border-bottom: 1px solid var(--line); }
.theme-brand .hero .mark-accent { color: var(--accent); }
.theme-brand .hero-media img { background: var(--white); }

/* Crop marks on the hero image, like registration marks on a drawing */
.theme-brand .hero-media::before,
.theme-brand .hero-media::after {
    content: ""; position: absolute; width: 18px; height: 18px; pointer-events: none;
    border-color: var(--brand); border-style: solid; opacity: .7;
}
.theme-brand .hero-media::before { top: -9px; right: -9px; border-width: 1px 1px 0 0; }
.theme-brand .hero-media::after { bottom: -9px; right: -9px; border-width: 0 1px 1px 0; }

/* Closing box on the same paper, dark text */
.theme-brand .cta { color: var(--ink-body); border: 1px solid var(--line-strong); border-radius: 6px; }
.theme-brand .cta h2 { color: var(--ink); }
.theme-brand .cta p { color: var(--ink-body); }
.theme-brand .cta .btn-outline { background: var(--white); border-color: var(--line-strong); color: var(--ink); }
.theme-brand .cta .btn-outline:hover { border-color: var(--ink); background: var(--white); color: var(--ink); }
.theme-brand .cta-assure { color: var(--muted); }
.theme-brand .cta-assure svg { color: var(--accent); }

/* Eyebrow label drawn as a dimension line: |———| */
.theme-brand .eyebrow::before {
    width: 38px; height: 9px; opacity: .9;
    background: linear-gradient(currentColor, currentColor) center / 100% 1px no-repeat;
    border-left: 1px solid currentColor; border-right: 1px solid currentColor;
}

/* Section edges drawn as a ruler scale instead of a plain rule */
.theme-brand .section-line { border-top: 0; position: relative; }
.theme-brand .section-line::before {
    content: ""; position: absolute; left: 0; right: 0; top: 0; height: 12px; pointer-events: none;
    background:
        linear-gradient(var(--line-strong), var(--line-strong)) top left / 100% 1px no-repeat,
        repeating-linear-gradient(90deg, var(--line-strong) 0 1px, transparent 1px 120px) top left / 100% 11px no-repeat,
        repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 24px) top left / 100% 6px no-repeat;
}

/* Numbered cards pick up the drawing language: small corner tick */
.theme-brand .card { border-radius: 6px; }
.theme-brand .card-n::after { content: ""; display: inline-block; width: 18px; height: 1px; background: currentColor; margin-left: .55rem; vertical-align: middle; opacity: .6; }
.theme-brand .package, .theme-brand .work-media img, .theme-brand .founder-photo img { border-radius: 6px; }

/* Footer title block, as on an engineering drawing */
.title-block {
    display: grid; grid-template-columns: 2fr 2.4fr repeat(4, minmax(0, 1fr));
    margin-top: clamp(2.5rem, 4vw, 3.5rem);
    border: 1px solid var(--line-strong); background: var(--white);
    font-family: var(--font-mono);
}
.tb-cell { display: flex; flex-direction: column; gap: .2rem; padding: .6rem .8rem; border-left: 1px solid var(--line-strong); min-width: 0; }
.tb-cell:first-child { border-left: 0; }
.tb-k { font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.tb-v { font-size: .8rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tb-name .tb-v { font-family: var(--font-sans); font-weight: 650; }
.theme-brand .footer-bottom { margin-top: 1.2rem; border-top: 0; }

@media (max-width: 960px) {
    .title-block { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tb-cell { border-left: 0; border-top: 1px solid var(--line-strong); }
    .tb-cell:nth-child(-n+2) { border-top: 0; }
    .tb-cell:nth-child(even) { border-left: 1px solid var(--line-strong); }
    .theme-brand .hero-media::before, .theme-brand .hero-media::after { display: none; }
}

/* --------------------------------------------------------------------------
   22. Utilities
   -------------------------------------------------------------------------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.max-40 { max-width: 40rem; }
