/* sizlix.com shared styles (landing + contact).
   Tokens follow the "Precision Ledger" Stitch design. Fonts and icons are
   self-hosted: no third-party requests on page load. */

@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/hanken-grotesk-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/hanken-grotesk-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(/assets/fonts/jetbrains-mono-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(/assets/fonts/jetbrains-mono-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --primary: #002743;
  --primary-2: #0a3d62;
  --on-primary-2: #80a8d3;
  --primary-fixed: #cfe5ff;
  --secondary: #0051d5;
  --secondary-soft: rgb(0 81 213 / 0.10);
  --bg: #faf8ff;
  --card: #ffffff;
  --tint: #f2f3ff;
  --tint-2: #eaedff;
  --tint-3: #e2e7ff;
  --tint-4: #dae2fd;
  --ink: #131b2e;
  --ink-2: #42474e;
  --outline: #72777f;
  --outline-2: #c2c7cf;
  --emerald: #059669;
  --emerald-ink: #047857;
  --mint: #6ffbbe;
  --mint-dim: #4edea3;
  --on-mint: #002113;
  --error: #ba1a1a;

  --font-sans: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  --header-h: 80px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, p, dl, dd, figure, blockquote { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--secondary); outline-offset: 2px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  padding: 10px 16px; border-radius: var(--r-sm);
  background: var(--primary); color: #fff; font-weight: 600;
}
.skip-link:focus { top: 12px; }
.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;
}

/* Icons: <svg class="i"><use href="/assets/icons.svg#name"/></svg> */
.i { width: 20px; height: 20px; fill: currentColor; flex: none; }
.i-16 { width: 16px; height: 16px; }
.i-18 { width: 18px; height: 18px; }
.i-22 { width: 22px; height: 22px; }
.i-24 { width: 24px; height: 24px; }
.i-28 { width: 28px; height: 28px; }

/* ---------- Layout ---------- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }
main { padding-top: var(--header-h); }
.section { padding: 80px 0; }
.section--tint { background: rgb(242 243 255 / 0.6); }
.section--tint-solid { background: var(--tint); }
@media (max-width: 640px) { .section { padding: 56px 0; } }

/* ---------- Type ---------- */
.eyebrow {
  display: block; margin-bottom: 8px;
  font-family: var(--font-mono); font-size: 12px; line-height: 16px;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--secondary);
}
.h2 {
  font-size: clamp(28px, 3.4vw, 40px); line-height: 1.2;
  font-weight: 600; letter-spacing: -0.025em; color: var(--primary);
}
.h3 {
  font-size: 20px; line-height: 28px;
  font-weight: 700; letter-spacing: -0.015em; color: var(--primary);
}
.title {
  font-size: 16px; line-height: 24px;
  font-weight: 700; letter-spacing: -0.01em; color: var(--primary);
}
.lead { font-size: 18px; line-height: 28px; letter-spacing: -0.01em; color: var(--ink-2); }
.body { color: var(--ink-2); }
.small { font-size: 13px; line-height: 20px; }
.mono { font-family: var(--font-mono); font-size: 11px; line-height: 16px; letter-spacing: 0.04em; }
.kicker {
  display: block; margin-bottom: 4px;
  font-family: var(--font-mono); font-size: 11px; line-height: 16px;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--secondary);
}
.section-head { max-width: 768px; margin-bottom: 40px; }
.section-head .h2 { margin-bottom: 8px; }
.section-head--split {
  max-width: none; display: flex; align-items: flex-end;
  justify-content: space-between; gap: 16px 48px;
}
.section-head--split > p { max-width: 448px; }
@media (max-width: 767px) {
  .section-head--split { flex-direction: column; align-items: flex-start; }
}

/* ---------- Small parts ---------- */
.dot {
  position: relative; display: inline-block; flex: none;
  width: 8px; height: 8px; border-radius: 50%; background: var(--emerald);
}
.dot--sm { width: 6px; height: 6px; }
.dot--lg { width: 12px; height: 12px; }
.dot--blue { background: var(--secondary); }
.dot--red { background: var(--error); }
.dot--grey { background: var(--outline-2); }
.dot--ping::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: inherit; animation: ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping { 75%, 100% { transform: scale(2.4); opacity: 0; } }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: var(--r-xs);
  background: var(--tint-3); color: var(--primary);
  font-family: var(--font-mono); font-size: 11px; line-height: 16px;
  font-weight: 500; letter-spacing: 0.04em; white-space: nowrap;
}
.badge--blue { background: var(--secondary-soft); color: var(--secondary); }
.badge--green { color: var(--emerald); font-weight: 600; }

.chips { display: flex; flex-wrap: wrap; gap: 4px; }
.chip {
  padding: 2px 8px; border-radius: var(--r-xs);
  background: var(--card); color: var(--ink-2);
  font-family: var(--font-mono); font-size: 11px; line-height: 16px; letter-spacing: 0.04em;
}

.tile {
  display: flex; align-items: center; justify-content: center; flex: none;
  width: 40px; height: 40px; border-radius: var(--r-xs);
  background: var(--primary); color: #fff;
}

.status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 8px; border-radius: var(--r-xs);
  font-family: var(--font-mono); font-size: 11px; line-height: 16px;
  font-weight: 600; letter-spacing: 0.04em; white-space: nowrap;
}
.status--live { background: rgb(5 150 105 / 0.10); color: var(--emerald-ink); }
.status--soon { background: var(--tint-2); color: var(--ink-2); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 16px; line-height: 24px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--secondary); transition: color 0.15s;
}
.link-arrow:hover { color: var(--primary); }
.link-arrow .i { width: 16px; height: 16px; transition: transform 0.2s; }
.link-arrow:hover .i { transform: translateX(3px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px 40px; border-radius: var(--r-sm);
  font-size: 16px; line-height: 24px; font-weight: 600; letter-spacing: -0.01em;
  white-space: nowrap; transition: background-color 0.15s, box-shadow 0.15s, color 0.15s;
}
.btn .i { width: 20px; height: 20px; }
.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--primary-2); box-shadow: var(--shadow-xl); }
.btn--soft { background: var(--card); color: var(--primary); box-shadow: var(--shadow-sm); }
.btn--soft:hover { background: var(--tint); box-shadow: var(--shadow-md); }
.btn--mint { background: var(--mint); color: var(--on-mint); box-shadow: var(--shadow-md); }
.btn--mint:hover { background: var(--mint-dim); }
.btn--on-dark { background: var(--primary-2); color: #fff; }
.btn--on-dark:hover { background: var(--secondary); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; box-shadow: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgb(250 248 255 / 0.9);
  -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
  box-shadow: 0 1px 8px rgb(0 0 0 / 0.04);
}
.site-header__row {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { width: 36px; height: 36px; border-radius: var(--r-md); }
.brand__name {
  font-size: 20px; line-height: 28px; font-weight: 700; letter-spacing: -0.015em;
  color: var(--primary);
}
.brand .dot { margin-left: -4px; align-self: center; }

.nav { display: none; align-items: center; gap: 20px; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav__link, .nav__dd-btn {
  display: inline-flex; align-items: center; gap: 4px; padding: 8px 0;
  font-size: 13px; line-height: 20px; font-weight: 500; color: var(--ink-2);
  transition: color 0.15s;
}
.nav__link:hover, .nav__dd-btn:hover { color: var(--ink); }
.nav__dd { position: relative; }
.nav__dd-btn .i { width: 16px; height: 16px; color: var(--outline); transition: transform 0.2s; }
.nav__dd-menu { position: absolute; top: 100%; left: -8px; width: 320px; padding-top: 8px; display: none; }
.nav__dd-btn[aria-expanded="true"] + .nav__dd-menu { display: block; }
.nav__dd-btn[aria-expanded="true"] .i { transform: rotate(180deg); }
@media (hover: hover) and (pointer: fine) {
  .nav__dd:hover .nav__dd-menu { display: block; }
  .nav__dd:hover .nav__dd-btn .i { transform: rotate(180deg); }
}
.nav__dd-panel {
  display: flex; flex-direction: column; gap: 2px; padding: 8px;
  background: var(--card); border-radius: var(--r-md);
  box-shadow: 0 20px 25px -5px rgb(15 23 42 / 0.1), 0 8px 10px -6px rgb(15 23 42 / 0.05);
}
.dd-item { display: flex; flex-direction: column; padding: 8px; border-radius: var(--r-sm); transition: background-color 0.15s; }
.dd-item:hover { background: var(--tint); }
.dd-item__name {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-size: 16px; line-height: 24px; font-weight: 600; letter-spacing: -0.01em; color: var(--primary);
}
.dd-item__desc { font-size: 13px; line-height: 20px; color: var(--ink-2); }
.dd-item .status { padding: 1px 6px; font-size: 10px; }

.header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-soft {
  display: none; padding: 8px 16px; border-radius: var(--r-sm);
  background: var(--tint); color: var(--primary);
  font-size: 16px; line-height: 24px; font-weight: 600; letter-spacing: -0.01em;
  transition: background-color 0.15s;
}
.header-soft:hover { background: var(--tint-3); }
@media (min-width: 1200px) { .header-soft { display: inline-flex; } }
.header-cta {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 24px; border-radius: var(--r-lg);
  background: var(--primary); color: #fff;
  font-size: 16px; line-height: 20px; font-weight: 600; letter-spacing: -0.01em;
  box-shadow: 0 2px 8px rgb(0 39 67 / 0.15); transition: background-color 0.15s;
}
.header-cta:hover { background: var(--primary-2); }
.header-cta .i { width: 16px; height: 16px; }
@media (max-width: 560px) { .header-cta { display: none; } }
.menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--r-sm); color: var(--primary);
}
.menu-btn:hover { background: var(--tint); }
@media (min-width: 1024px) { .menu-btn { display: none; } }

.mobile-nav {
  max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  border-top: 1px solid var(--tint-3); background: var(--bg);
}
@media (min-width: 1024px) { .mobile-nav { display: none !important; } }
.mobile-nav .wrap { padding-top: 12px; padding-bottom: 24px; }
.mobile-nav__label {
  display: block; margin: 12px 0 4px;
  font-family: var(--font-mono); font-size: 11px; line-height: 16px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--outline);
}
.mobile-nav a:not(.btn) {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 10px 0; border-bottom: 1px solid var(--tint-2);
  font-size: 16px; line-height: 24px; font-weight: 500; color: var(--primary);
}
.mobile-nav .btn { width: 100%; margin-top: 20px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; isolation: isolate; padding: 48px 0 80px; }
.hero__glow {
  position: absolute; z-index: -1; top: -128px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 450px; border-radius: 50%; pointer-events: none;
  background: linear-gradient(to bottom, rgb(0 81 213 / 0.10), rgb(0 39 67 / 0.05), transparent);
  filter: blur(64px);
}
.hero__inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; margin-bottom: 24px; border-radius: var(--r-lg);
  background: var(--tint); box-shadow: var(--shadow-sm);
  font-family: var(--font-mono); font-size: 12px; line-height: 16px;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--primary);
  text-align: center;
}
.hero h1 {
  max-width: 1024px; margin-bottom: 16px;
  font-size: clamp(36px, 6vw, 56px); line-height: 1.1;
  font-weight: 700; letter-spacing: -0.03em; color: var(--primary);
}
.hero h1 .accent { color: var(--secondary); }
.br-sm { display: none; }
@media (min-width: 640px) { .br-sm { display: inline; } }
.hero .lead { max-width: 768px; margin-bottom: 40px; }
.hero__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 24px; }
@media (max-width: 639px) {
  .hero__ctas { flex-direction: column; width: 100%; max-width: 448px; }
  .hero__ctas .btn { width: 100%; }
}
.trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 24px; margin-bottom: 64px;
  font-family: var(--font-mono); font-size: 11px; line-height: 16px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2);
}
.trust li { display: inline-flex; align-items: center; gap: 6px; }
.trust .i { width: 16px; height: 16px; color: var(--emerald); }
.trust .i--blue { color: var(--secondary); }

/* Pipeline illustration */
.pipeline {
  width: 100%; padding: 24px; text-align: left;
  background: var(--card); border-radius: var(--r-md); box-shadow: var(--shadow-xl);
}
@media (min-width: 768px) { .pipeline { padding: 40px; } }
.pipeline__head {
  display: flex; flex-direction: column; gap: 16px; justify-content: space-between;
  padding: 16px; margin-bottom: 24px; border-radius: var(--r-sm);
  background: rgb(242 243 255 / 0.5);
}
@media (min-width: 768px) { .pipeline__head { flex-direction: row; align-items: center; } }
.pipeline__head .eyebrow { margin-bottom: 2px; }
.pipeline__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.pipeline__grid { display: grid; gap: 16px; }
@media (min-width: 768px) { .pipeline__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pipeline__grid { grid-template-columns: repeat(4, 1fr); } }

.stage {
  --bar: var(--outline);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 16px 16px 16px 24px; border-radius: var(--r-sm);
  background: var(--tint); box-shadow: var(--shadow-sm);
}
.stage::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--bar); }
.stage--2 { --bar: var(--secondary); }
.stage--3 { --bar: var(--primary-2); }
.stage--4 { --bar: var(--mint); background: var(--primary); color: #fff; box-shadow: var(--shadow-md); }
.stage__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.stage__label {
  font-family: var(--font-mono); font-size: 11px; line-height: 16px;
  font-weight: 600; letter-spacing: 0.04em; color: var(--ink-2);
}
.stage__top .i { color: var(--primary); }
.stage--2 .stage__label, .stage--2 .stage__top .i { color: var(--secondary); }
.stage--3 .stage__label { color: var(--primary); }
.stage--4 .stage__label { color: var(--primary-fixed); }
.stage--4 .stage__top .i { color: var(--mint); }
.stage__title { margin-bottom: 4px; font-size: 16px; line-height: 24px; font-weight: 700; color: var(--primary); }
.stage--4 .stage__title { color: #fff; }
.stage__desc { margin-bottom: 16px; font-size: 13px; line-height: 20px; color: var(--ink-2); }
.stage--4 .stage__desc { color: var(--on-primary-2); }
.stage__rows { display: flex; flex-direction: column; gap: 6px; }
.rowchip {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 4px 8px; border-radius: var(--r-xs); background: var(--card);
  font-family: var(--font-mono); font-size: 11px; line-height: 16px; letter-spacing: 0.02em; color: var(--ink);
}
.rowchip b { font-weight: 600; color: var(--emerald); white-space: nowrap; }
.rowchip b.blue { color: var(--secondary); }
.rowchip b.grey { color: var(--outline); }
.stage--4 .rowchip { padding: 6px 10px; background: var(--primary-2); color: var(--primary-fixed); }
.stage--4 .rowchip b { color: var(--mint); }
.appchip { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: var(--r-xs); background: var(--card); }
.appchip strong { display: block; font-size: 12px; line-height: 16px; font-weight: 600; color: var(--primary); }
.appchip small { display: block; font-family: var(--font-mono); font-size: 10px; line-height: 14px; color: var(--ink-2); }
.stage__foot {
  display: flex; justify-content: space-between; gap: 8px; margin-top: 16px; padding-top: 4px;
  font-family: var(--font-mono); font-size: 11px; line-height: 16px; color: var(--ink-2);
}
.stage__foot b { font-weight: 600; color: var(--emerald); }
.stage--4 .stage__foot { color: var(--primary-fixed); }
.stage--4 .stage__foot b { color: var(--mint); }

/* ---------- Cards & grids ---------- */
.grid-3 { display: grid; gap: 24px; }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-3x { display: grid; gap: 24px; }
@media (min-width: 640px) { .grid-3x { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3x { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--card); border-radius: var(--r-md); box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, background-color 0.2s; }
.card--hover:hover { box-shadow: var(--shadow-md); }

/* Capabilities */
.cap { display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.cap__body { padding: 24px; }
.cap__icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; margin-bottom: 16px; border-radius: var(--r-sm);
  background: var(--tint-2); color: var(--primary);
}
.cap__icon--blue { color: var(--secondary); }
.cap .h3 { margin-bottom: 8px; }
.cap__foot { padding: 16px 24px; background: rgb(242 243 255 / 0.5); }
.cap__foot-label {
  display: block; margin-bottom: 6px;
  font-family: var(--font-mono); font-size: 11px; line-height: 16px; font-weight: 500; color: var(--primary);
}

/* Products */
.grid-products { display: grid; gap: 24px; }
@media (min-width: 768px) {
  .grid-products { grid-template-columns: repeat(2, 1fr); }
  .grid-products > :last-child:nth-child(odd) { grid-column: 1 / -1; }
}
.product { display: flex; flex-direction: column; justify-content: space-between; padding: 24px; }
.product__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.product__id { display: flex; align-items: center; gap: 10px; min-width: 0; }
.product__sub {
  display: block; font-family: var(--font-mono); font-size: 11px; line-height: 16px;
  font-weight: 600; letter-spacing: 0.04em; color: var(--secondary);
}
.product__desc { margin-bottom: 16px; color: var(--ink-2); }
.checks {
  display: flex; flex-direction: column; gap: 8px;
  padding: 10px 12px; margin-bottom: 16px; border-radius: var(--r-sm); background: var(--tint);
}
.checks li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; line-height: 20px; color: var(--ink); }
.checks .i { width: 18px; height: 18px; margin-top: 1px; color: var(--emerald); }
.product__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 8px; }
.product__meta { font-family: var(--font-mono); font-size: 11px; line-height: 16px; color: var(--ink-2); }
.product__foot .link-arrow { flex: none; white-space: nowrap; }

.upcoming-head { margin: 48px 0 16px; }
.upcoming { display: grid; gap: 16px; }
@media (min-width: 768px) { .upcoming { grid-template-columns: repeat(2, 1fr); } }
.upcoming > :only-child { grid-column: 1 / -1; }
.upcoming__card {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; padding: 16px 20px;
  border-radius: var(--r-md); background: var(--tint); border: 1px dashed var(--outline-2);
}
.upcoming__card .tile { background: var(--tint-3); color: var(--primary); }
.upcoming__body { flex: 1 1 220px; min-width: 0; }
.upcoming__body .title { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.upcoming__body p { font-size: 13px; line-height: 20px; color: var(--ink-2); }
.upcoming__card .link-arrow { font-size: 14px; white-space: nowrap; }

/* Before / after */
.compare { display: grid; gap: 24px; margin-bottom: 40px; }
@media (min-width: 1024px) { .compare { grid-template-columns: repeat(2, 1fr); } }
.panel {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px; border-radius: var(--r-md); background: var(--card); box-shadow: var(--shadow-sm);
}
.panel--dark { background: var(--primary); color: #fff; box-shadow: var(--shadow-md); }
.panel__head {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px 12px;
  padding: 8px; margin-bottom: 16px; border-radius: var(--r-xs); background: rgb(226 231 255 / 0.4);
}
.panel--dark .panel__head { background: var(--primary-2); }
.panel__title {
  display: flex; align-items: center; gap: 8px;
  font-size: 20px; line-height: 28px; font-weight: 700; letter-spacing: -0.015em; color: var(--primary);
}
.panel--dark .panel__title { color: #fff; }
.panel__tag { font-family: var(--font-mono); font-size: 11px; line-height: 16px; font-weight: 600; color: var(--error); }
.panel--dark .panel__tag { color: var(--mint); }
.panel .body { margin-bottom: 16px; }
.panel--dark .body { color: var(--on-primary-2); }
.steps {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px;
  font-family: var(--font-mono); font-size: 11px; line-height: 16px; letter-spacing: 0.02em;
}
.steps li { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: var(--r-xs); background: var(--tint); color: var(--ink); }
.steps__n {
  display: flex; align-items: center; justify-content: center; flex: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg); color: var(--ink-2); font-weight: 700;
}
.panel--dark .steps li { background: var(--primary-2); color: #fff; }
.panel--dark .steps__n { background: var(--secondary); color: #fff; }
.panel--dark .steps__n .i { width: 16px; height: 16px; }
.outcome-box { padding: 16px; border-radius: var(--r-xs); background: rgb(226 231 255 / 0.6); font-size: 13px; line-height: 20px; color: var(--ink); }
.outcome-box strong { display: block; margin-bottom: 2px; color: var(--error); }
.panel--dark .outcome-box { background: var(--primary-2); color: #fff; }
.panel--dark .outcome-box strong { color: var(--mint); }

.results { display: grid; gap: 16px; }
@media (min-width: 640px) { .results { grid-template-columns: repeat(3, 1fr); } }
.result { padding: 16px; border-radius: var(--r-sm); background: var(--card); box-shadow: var(--shadow-sm); }
.result__label {
  display: block; margin-bottom: 4px;
  font-family: var(--font-mono); font-size: 11px; line-height: 16px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2);
}
.result__big {
  display: block; margin-bottom: 4px;
  font-size: 26px; line-height: 1.25; font-weight: 700; letter-spacing: -0.02em; color: var(--primary);
}
.result__big--green { color: var(--emerald); }
.result__big--blue { color: var(--secondary); }
.result p { font-size: 13px; line-height: 20px; color: var(--ink-2); }

/* Services */
.service {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px; border-radius: var(--r-md); background: var(--tint); box-shadow: var(--shadow-sm);
  transition: background-color 0.2s, box-shadow 0.2s;
}
.service:hover { background: var(--card); box-shadow: var(--shadow-md); }
.service .tile { margin-bottom: 16px; }
.service .title { margin-bottom: 4px; }
.service p { margin-bottom: 16px; font-size: 13px; line-height: 20px; color: var(--ink-2); }
.flow {
  padding: 8px; border-radius: var(--r-xs); background: var(--tint-2);
  font-family: var(--font-mono); font-size: 11px; line-height: 16px; letter-spacing: 0.02em; color: var(--primary);
}

.process { margin-top: 40px; padding: 24px; border-radius: var(--r-md); background: var(--card); box-shadow: var(--shadow-sm); }
@media (min-width: 768px) { .process { padding: 40px; } }
.process__steps { display: grid; gap: 8px; margin-top: 24px; grid-template-columns: repeat(2, 1fr); text-align: center; }
@media (min-width: 768px) { .process__steps { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .process__steps { grid-template-columns: repeat(6, 1fr); } }
.pstep { display: flex; flex-direction: column; align-items: center; padding: 10px 8px; border-radius: var(--r-sm); background: var(--tint); }
.pstep__n {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; margin-bottom: 8px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
}
.pstep__n--green { background: var(--emerald); }
.pstep strong { margin-bottom: 2px; font-size: 13px; line-height: 18px; font-weight: 700; color: var(--primary); }
.pstep span { font-size: 12px; line-height: 16px; color: var(--ink-2); }

/* Blueprint tabs */
.tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.tab {
  padding: 10px 16px; border-radius: var(--r-sm);
  background: var(--card); color: var(--primary); box-shadow: var(--shadow-sm);
  font-size: 16px; line-height: 24px; font-weight: 600; letter-spacing: -0.01em;
  transition: background-color 0.15s, color 0.15s;
}
.tab:hover { background: var(--tint-3); }
.tab[aria-selected="true"] { background: var(--primary); color: #fff; }
@media (max-width: 639px) { .tab { flex: 1 1 100%; text-align: left; } }
.tabpanels { padding: 24px; border-radius: var(--r-md); background: var(--card); box-shadow: var(--shadow-md); }
@media (min-width: 768px) { .tabpanels { padding: 40px; } }
.bp { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 24px; }
@media (min-width: 1024px) { .bp { flex-direction: row; } }
.bp__main { max-width: 600px; }
.bp__main .badge { margin-bottom: 8px; }
.bp__main .h3 { margin-bottom: 4px; }
.bp__main > p { margin-bottom: 16px; color: var(--ink-2); }
.bp__steps { display: flex; flex-direction: column; gap: 8px; font-size: 13px; line-height: 20px; color: var(--ink); }
.bp__steps li { display: flex; align-items: flex-start; gap: 8px; }
.bp__steps .i { width: 18px; height: 18px; margin-top: 1px; color: var(--emerald); }
.bp__specs {
  display: flex; flex-direction: column; justify-content: space-between;
  width: 100%; padding: 16px; border-radius: var(--r-sm); background: var(--tint);
}
@media (min-width: 1024px) { .bp__specs { flex: none; width: 384px; } }
.bp__specs-title {
  display: block; margin-bottom: 8px;
  font-family: var(--font-mono); font-size: 12px; line-height: 16px;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary);
}
.specs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; font-family: var(--font-mono); font-size: 11px; line-height: 16px; }
.specs > div { display: flex; justify-content: space-between; gap: 12px; }
.specs dt { color: var(--ink-2); }
.specs dd { font-weight: 600; color: var(--primary); text-align: right; }
.bp__specs .btn { width: 100%; padding: 10px 16px; border-radius: var(--r-xs); }

/* Why a CA builds software */
.why { padding: 24px; border-radius: var(--r-xl); background: var(--card); box-shadow: var(--shadow-lg); }
@media (min-width: 768px) { .why { padding: 40px; } }
.why__grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .why__grid { grid-template-columns: 7fr 5fr; } }
.why .h2 { margin-bottom: 16px; }
.prose { display: flex; flex-direction: column; gap: 16px; color: var(--ink-2); }
.quote { padding: 16px; border-radius: var(--r-sm); background: var(--tint); color: var(--primary); font-weight: 500; font-style: italic; }
.prose .conviction { font-weight: 700; color: var(--primary); }
.founder { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.founder img { width: 48px; height: 48px; border-radius: var(--r-lg); }
.founder strong { display: block; font-size: 16px; line-height: 24px; font-weight: 700; color: var(--primary); }
.founder span { font-family: var(--font-mono); font-size: 11px; line-height: 16px; color: var(--ink-2); }
.matrix { padding: 24px; border-radius: var(--r-md); background: var(--tint); box-shadow: var(--shadow-sm); }
.matrix__title {
  display: block; margin-bottom: 8px;
  font-family: var(--font-mono); font-size: 11px; line-height: 16px;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary);
}
.matrix ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; font-family: var(--font-mono); font-size: 11px; line-height: 16px; }
.matrix li { display: flex; justify-content: space-between; gap: 12px; padding: 10px; border-radius: var(--r-xs); background: var(--card); color: var(--ink); }
.matrix li b { font-weight: 600; color: var(--emerald); text-align: right; }
.matrix li b.navy { color: var(--primary); }
.matrix__quote {
  padding: 10px; border-radius: var(--r-xs); background: rgb(218 226 253 / 0.6);
  text-align: center; font-size: 13px; line-height: 20px; font-weight: 500; color: var(--primary);
}

/* Closing call to action */
.cta-band {
  position: relative; overflow: hidden; isolation: isolate;
  padding: 40px 24px; border-radius: var(--r-xl);
  background: var(--primary); color: #fff; text-align: center; box-shadow: var(--shadow-xl);
}
@media (min-width: 768px) { .cta-band { padding: 48px 40px; } }
.cta-band::after {
  content: ""; position: absolute; z-index: -1; right: -96px; bottom: -96px;
  width: 384px; height: 384px; border-radius: 50%;
  background: rgb(0 81 213 / 0.2); filter: blur(64px); pointer-events: none;
}
.cta-band__inner { display: flex; flex-direction: column; align-items: center; max-width: 768px; margin: 0 auto; }
.cta-band__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px; margin-bottom: 16px; border-radius: var(--r-lg);
  background: var(--primary-2); color: var(--mint);
  font-family: var(--font-mono); font-size: 11px; line-height: 16px; letter-spacing: 0.04em;
}
.cta-band .h2 { margin-bottom: 16px; color: #fff; }
.cta-band .lead { max-width: 672px; margin-bottom: 40px; color: var(--on-primary-2); }
.cta-band__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 24px; }
@media (max-width: 639px) {
  .cta-band__btns { flex-direction: column; width: 100%; }
  .cta-band__btns .btn { width: 100%; }
}
.cta-band__note {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; line-height: 16px; color: var(--on-primary-2);
}
.cta-band__note .i { width: 18px; height: 18px; color: var(--mint); }

/* ---------- Footer ---------- */
.site-footer { background: var(--tint); }
.site-footer .wrap { padding-top: 48px; padding-bottom: 24px; }
.footer-grid { display: grid; gap: 40px; margin-bottom: 40px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr 1.1fr; } }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand p { font-size: 13px; line-height: 20px; color: var(--ink-2); }
.footer-note { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; line-height: 16px; color: var(--ink-2); }
.footer-col h2 { margin-bottom: 8px; font-size: 16px; line-height: 24px; font-weight: 600; color: var(--primary); }
.footer-col ul { display: flex; flex-direction: column; gap: 6px; }
.footer-col li { font-size: 13px; line-height: 20px; color: var(--ink-2); }
.footer-col a { transition: color 0.15s; }
.footer-col a:hover { color: var(--ink); }
.footer-col .soon { margin-left: 4px; font-family: var(--font-mono); font-size: 10px; color: var(--outline); }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; }
.footer-contact .i { width: 18px; height: 18px; color: var(--primary); }
.footer-contact .link-arrow { margin-top: 6px; font-size: 13px; line-height: 20px; }
.footer-bottom {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--tint-3); text-align: center;
  font-family: var(--font-mono); font-size: 11px; line-height: 16px; color: var(--ink-2);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; text-align: left; } }
.footer-bottom .copy { color: var(--outline); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
