/* ============================================================================
   Ainstainer — production stylesheet
   1. Tokens            5. Hero + orbit        9. Model / ladder
   2. Reset + base      6. Approach cards     10. CTA
   3. Primitives        7. Products           11. Footer
   4. Header / nav      8. AI-first panel     12. Motion + print
   ========================================================================== */

/* ── 1. Tokens ───────────────────────────────────────────────────────────── */
:root {
  /* surfaces */
  --bg: #f3f5f9;
  --surface: #fff;
  --line: #e3e8f1;
  --deep: #050a1c;
  --deep-2: #0a1430;
  --deep-3: #060d24;
  --deep-4: #0b1634;

  /* ink */
  --ink: #070d1f;
  --ink-2: #4a5570;
  --ink-3: #58627c;
  --ink-4: #67708a;
  --on-deep: #eef3ff;
  --on-deep-2: #aab7d3;
  --on-deep-3: #7f8dab;
  --on-deep-4: #7f9ccc;
  --on-deep-5: #c5d2ec;

  /* brand */
  --brand: #1463e6;
  --brand-dark: #0b47c7;
  --brand-deep: #1459e8;
  --cyan: #2fd0ff;
  --blue: #1f5bff;
  --sky: #8fc4ff;
  --hairline: rgba(120, 170, 255, .18);

  --grad-brand: linear-gradient(100deg, #2fd0ff 0%, #1a8ff0 45%, #1f5bff 100%);

  /* metrics */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 32px);
  --header-h: 76px;
  --section-y: clamp(80px, 10vw, 128px);
  --r-card: 28px;
  --r-panel: 36px;
  --ease: cubic-bezier(.2, .7, .3, 1);

  --font: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --focus: var(--brand);
}

/* ── 2. Reset + base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, picture, svg { max-width: 100%; }
img { height: auto; border: 0; }
a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand-dark); }
button { font: inherit; color: inherit; }
strong { font-weight: 600; }

:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: rgba(20, 99, 230, .18); color: var(--ink); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 500;
  box-shadow: 0 12px 32px -12px rgba(5, 10, 28, .5);
  transform: translateY(-160%);
  transition: transform .25s var(--ease);
}
.skip-link:focus-visible { transform: none; }

/* ── 3. Primitives ───────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow--light { color: var(--sky); }

.section-title {
  margin-top: 18px;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 600;
  text-wrap: balance;
}

.section-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: clamp(28px, 4vw, 48px);
  align-items: end;
}
.section-head--split { align-items: end; }

.section-intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  text-wrap: pretty;
}
.section-intro__lead { color: var(--ink); font-weight: 500; }

.section-note {
  max-width: 420px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  justify-self: start;
}
@media (min-width: 760px) {
  .section-head--split { grid-template-columns: 1fr auto; }
  .section-note { justify-self: end; text-align: left; }
}

.grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), filter .25s var(--ease);
}
.btn__arrow { transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(180deg, #2b8dff, #1459e8);
  color: #fff;
  box-shadow: 0 10px 40px -10px rgba(30, 120, 255, .8), inset 0 1px 0 rgba(255, 255, 255, .3);
}
.btn--primary:hover { color: #fff; filter: brightness(1.08); transform: translateY(-2px); }

.btn--ghost { border-color: rgba(255, 255, 255, .18); color: #e6ecfa; }
.btn--ghost:hover { color: #fff; border-color: rgba(255, 255, 255, .45); background: rgba(255, 255, 255, .06); }

.btn--light { background: #fff; color: var(--deep); }
.btn--light:hover { background: #d9e8ff; color: var(--deep); }

.btn--white {
  padding: 18px 30px;
  background: #fff;
  color: #0b2f9e;
  font-size: 17px;
  font-weight: 600;
  box-shadow: 0 16px 40px -12px rgba(0, 20, 80, .5);
}
.btn--white:hover { background: #eaf2ff; color: #0b2f9e; transform: translateY(-2px); }

.btn--sm { padding: 10px 18px; font-size: 14px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid rgba(120, 170, 255, .25);
  border-radius: 999px;
  background: rgba(20, 99, 230, .12);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sky);
}
.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1bb8f2;
  box-shadow: 0 0 12px #1bb8f2;
}

/* scroll reveal — only when JS is on, so no-JS users always see content */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* ── 4. Header / nav ─────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease),
              backdrop-filter .3s var(--ease);
}
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 10, 28, .82);
  border-bottom-color: var(--hairline);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  flex: none;
}
.brand:hover { color: #fff; }
.brand picture { display: flex; }
.brand__mark { width: 36px; height: 36px; }
.brand__name { font-size: 19px; font-weight: 600; letter-spacing: -.02em; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav__list { display: flex; align-items: center; gap: 32px; }
.nav__link { color: #b7c3dd; font-size: 15px; }
.nav__link:hover { color: #fff; }
.nav__link.is-current { color: #fff; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: #fff;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle__bars { margin-inline: auto; position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after { content: ''; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }
.site-header.is-open .nav-toggle__bars { background: transparent; }
.site-header.is-open .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.site-header.is-open .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 899px) {
  :root { --header-h: 64px; }
  .nav-toggle { display: grid; place-items: center; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 20px var(--gutter) 28px;
    background: rgba(5, 10, 28, .97);
    border-bottom: 1px solid var(--hairline);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .site-header.is-open .nav { opacity: 1; visibility: visible; transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link {
    display: block;
    padding: 14px 4px;
    font-size: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }
  .nav .btn { margin-top: 18px; }
}

/* ── 5. Hero + orbit ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: var(--on-deep);
  --focus: var(--cyan);
}
.hero__aurora,
.hero__grid { position: absolute; inset: 0; pointer-events: none; }
.hero__aurora { background: radial-gradient(60% 70% at 78% 45%, rgba(27, 140, 240, .35), rgba(5, 10, 28, 0) 70%); }
.hero__grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 40%, #000, transparent);
  mask-image: radial-gradient(80% 80% at 50% 40%, #000, transparent);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(40px, 6vw, 48px);
  align-items: center;
  padding-top: calc(var(--header-h) + clamp(48px, 8vw, 72px));
  padding-bottom: clamp(80px, 11vw, 120px);
}
@media (min-width: 980px) {
  .hero__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.hero__title {
  margin-top: 28px;
  font-size: clamp(44px, 7.4vw, 104px);
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 600;
  text-wrap: balance;
}
.hero__lead {
  margin-top: 32px;
  max-width: 520px;
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.55;
  color: var(--on-deep-2);
  text-wrap: pretty;
}
.hero__sub {
  margin-top: 14px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-deep-3);
  text-wrap: pretty;
}
.hero__actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero__visual { padding-block: 24px; }

/* orbit */
.orbit {
  position: relative;
  width: min(100%, 520px);
  margin-inline: auto;
  aspect-ratio: 1;
}
.orbit__ring { position: absolute; border-radius: 50%; }
.orbit__ring--outer { inset: 2%; border: 1px dashed rgba(120, 170, 255, .12); }
.orbit__ring--inner { inset: 14%; border: 1px solid rgba(120, 170, 255, .1); }
.orbit__core {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 150, 255, .35), rgba(5, 10, 28, 0) 70%);
  will-change: transform, opacity;   /* driven by the heartbeat */
}

/* the ring is an ECG trace: faint track, a three-layer sweep, and the head */
.orbit__pulse {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.orbit__trace {
  fill: none;
  stroke: rgba(120, 170, 255, .18);
  stroke-width: .3;
  stroke-linejoin: round;
}
.orbit__beam { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.orbit__beam--glow { stroke: rgba(47, 208, 255, .13); stroke-width: 2.6; }
.orbit__beam--far { stroke: rgba(130, 185, 255, .55); stroke-width: .45; }
.orbit__beam--near { stroke: rgba(47, 208, 255, .95); stroke-width: .85; }
.orbit__head { filter: drop-shadow(0 0 3px rgba(47, 208, 255, .95)); }
.orbit__head-halo { fill: rgba(47, 208, 255, .22); }
.orbit__head-dot { fill: #fff; }

.orbit__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26%;
  transform: translate(-50%, -50%);
}
.orbit__logo img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 60, 200, .6));
  animation: ainFloat 7s ease-in-out infinite;
}

.orbit__status {
  position: absolute;
  left: 50%;
  top: 66.5%;
  width: min(62%, 240px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.orbit__counter {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--cyan);
}
.orbit__caption {
  min-height: 2.9em;
  font-size: 14px;
  line-height: 1.45;
  color: var(--on-deep-5);
  text-wrap: balance;
}

.orbit__node { position: absolute; width: 52px; height: 52px; }
.orbit__node--top { left: 50%; top: 14%; transform: translate(-50%, -50%); }
.orbit__node--right { left: 86%; top: 50%; transform: translate(-50%, -50%); }
.orbit__node--bottom { left: 50%; top: 86%; transform: translate(-50%, -50%); }
.orbit__node--left { left: 14%; top: 50%; transform: translate(-50%, -50%); }

.orbit__dot {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--deep-4);
  box-shadow: inset 0 0 0 1px rgba(120, 170, 255, .28);
  color: var(--on-deep-4);
  font-family: var(--font-mono);
  font-size: 13px;
  transition: background .4s var(--ease), box-shadow .4s var(--ease),
              color .4s var(--ease), transform .4s var(--ease);
}
.orbit__label {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  transform: translateX(-50%);
  padding: 5px 12px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--deep-3);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  color: var(--on-deep-4);
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.orbit__node--top .orbit__label { top: auto; bottom: calc(100% + 12px); }

.orbit__node.is-active .orbit__dot {
  background: linear-gradient(135deg, var(--cyan), var(--brand-deep));
  box-shadow: 0 0 0 8px rgba(47, 160, 255, .15), 0 0 40px rgba(47, 190, 255, .8);
  color: #fff;
  transform: scale(1.12);
}
.orbit__node.is-active .orbit__label { color: #fff; border-color: rgba(120, 170, 255, .4); }

@media (max-width: 520px) {
  /* tighter ring: the mark moves up and shrinks so the caption clears node 03 */
  .orbit { width: min(100%, 360px); }
  .orbit__node { width: 44px; height: 44px; }
  .orbit__dot { font-size: 12px; }
  .orbit__label { font-size: 12px; padding: 4px 10px; }
  .orbit__logo { width: 22%; top: 45%; }
  .orbit__status { top: 60%; width: min(72%, 230px); }
  .orbit__caption { font-size: 13px; min-height: 2.7em; }
}

/* ── 6. Approach cards ───────────────────────────────────────────────────── */
.approach .cards {
  margin-top: clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 620px) { .approach .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .approach .cards { grid-template-columns: repeat(4, 1fr); } }

.card {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--surface);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(20, 70, 180, .4); }
.card--dark { background: var(--deep); border-color: var(--deep); }
.card--dark:hover { box-shadow: 0 30px 60px -24px rgba(20, 70, 220, .6); }
.card--dark .card__index { color: var(--sky); }
.card--dark .card__title { color: #fff; }
.card--dark .card__text { color: var(--on-deep-2); }

.card__figure {
  position: relative;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background: #f6f9fe;
}
.card__body { padding: 24px 18px 20px; display: flex; flex-direction: column; gap: 10px; }
.card__index { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; color: var(--brand); }
.card__title { font-size: 28px; font-weight: 600; letter-spacing: -.03em; }
.card__text { font-size: 16px; line-height: 1.5; color: var(--ink-3); }

/* figure 01 — discover / radar */
.fig-discover { background: radial-gradient(circle at 50% 50%, #eaf3ff, #f6f9fe 70%); }
.fig-discover > * { position: absolute; }
.fig-discover__dots {
  inset: 0;
  background-image: radial-gradient(rgba(20, 99, 230, .18) 1px, transparent 1px);
  background-size: 14px 14px;
}
.fig-discover__ring {
  left: 50%; top: 50%;
  border-radius: 50%;
  translate: -50% -50%;
}
.fig-discover__ring--1 { width: 180px; height: 180px; border: 1px solid rgba(20, 99, 230, .18); }
.fig-discover__ring--2 { width: 120px; height: 120px; border: 1px solid rgba(20, 99, 230, .25); }
.fig-discover__ring--3 { width: 60px; height: 60px; border: 1px solid rgba(20, 99, 230, .35); }
.fig-discover__sweep {
  left: 50%; top: 50%;
  width: 180px; height: 180px;
  margin: -90px 0 0 -90px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    rgba(27, 160, 245, 0) 0deg, rgba(27, 160, 245, 0) 280deg, rgba(27, 160, 245, .45) 360deg);
  animation: ainSpin 4s linear infinite;
}
.fig-discover__center {
  left: 50%; top: 50%;
  width: 8px; height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--brand-deep);
}
.fig-discover__blip { width: 6px; height: 6px; border-radius: 50%; background: #9fb6de; }
.fig-discover__blip--1 { left: calc(50% + 38px); top: calc(50% - 50px); }
.fig-discover__blip--2 { left: calc(50% - 72px); top: calc(50% + 14px); }
.fig-discover__blip--3 { left: calc(50% - 20px); top: calc(50% + 62px); }
.fig-discover__target,
.fig-discover__pulse {
  left: calc(50% + 48px);
  top: calc(50% + 24px);
  width: 12px; height: 12px;
  border-radius: 50%;
}
.fig-discover__target {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 0 6px rgba(31, 120, 255, .15), 0 0 18px rgba(31, 140, 255, .8);
}
.fig-discover__pulse { border: 1px solid #1f7bff; animation: ainBlink 2s ease-in-out infinite; }

/* figure 02 — build / layers */
.fig-build { perspective: 600px; }
.fig-build__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 99, 230, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 99, 230, .08) 1px, transparent 1px);
  background-size: 20px 20px;
}
.fig-build__stack {
  position: absolute;
  left: 50%; top: 50%;
  width: 0; height: 0;
  transform: rotateX(58deg) rotateZ(-45deg);
  transform-style: preserve-3d;
}
.fig-build__plate {
  position: absolute;
  left: -60px; top: -60px;
  width: 120px; height: 120px;
  border-radius: 18px;
}
.fig-build__plate--3 { background: #dbe6f8; border: 1px solid #c6d6f1; transform: translateZ(0); }
.fig-build__plate--2 { background: #b8d0f6; border: 1px solid #a3c0f0; transform: translateZ(28px); opacity: .95; }
.fig-build__plate--1 {
  background: linear-gradient(135deg, var(--cyan), var(--brand-deep));
  box-shadow: 0 0 40px rgba(31, 120, 255, .5);
  transform: translateZ(56px);
  animation: ainLift 5s ease-in-out infinite;
}
.fig-build__bar, .fig-build__chip { position: absolute; }
.fig-build__bar { height: 8px; border-radius: 4px; }
.fig-build__bar--a { left: 16px; top: 16px; width: 40px; background: rgba(255, 255, 255, .7); }
.fig-build__bar--b { left: 16px; top: 32px; width: 64px; background: rgba(255, 255, 255, .4); }
.fig-build__chip {
  right: 16px; bottom: 16px;
  width: 24px; height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .85);
}

/* figure 03 — validate / bars */
.fig-validate__axis,
.fig-validate__gridline { position: absolute; left: 28px; right: 28px; }
.fig-validate__axis { bottom: 32px; height: 1px; background: #cfdbef; }
.fig-validate__gridline { border-top: 1px dashed #dde6f4; }
.fig-validate__gridline--mid { bottom: 92px; }
.fig-validate__gridline--top { bottom: 152px; }
.fig-validate__bars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 0 28px 32px;
}
.fig-validate__bar {
  position: relative;
  flex: 1;
  max-width: 26px;
  height: var(--h, 40px);
  border-radius: 8px 8px 3px 3px;
  background: #c4d7f5;
  transform-origin: bottom;
  animation: ainBar 3s ease-in-out var(--d, 0s) infinite;
}
.fig-validate__bar:nth-child(1) { background: #d7e3f7; }
.fig-validate__bar:nth-child(4) { background: #9dbdf1; }
.fig-validate__bar:nth-child(5) { background: #6c9df0; }
.fig-validate__bar--win {
  background: linear-gradient(180deg, var(--cyan), var(--brand-deep));
  box-shadow: 0 10px 30px -6px rgba(31, 120, 255, .7);
  animation: none;
}
.fig-validate__check {
  position: absolute;
  left: 50%; top: -38px;
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  margin-left: -14px;
  border: 1px solid #cfe0fb;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 16px -4px rgba(20, 89, 232, .4);
  color: var(--brand-deep);
  font-size: 14px;
  font-weight: 700;
}

/* figure 04 — scale / orbit */
.fig-scale {
  background: radial-gradient(90% 90% at 20% 90%, rgba(31, 120, 255, .35), rgba(5, 10, 28, 0) 70%), var(--deep-2);
}
.fig-scale > * { position: absolute; left: 24px; bottom: 24px; }
.fig-scale__arc { border-radius: 50%; }
.fig-scale__arc--3 { width: 280px; height: 280px; margin: 0 0 -140px -140px; border: 1px solid rgba(120, 170, 255, .14); }
.fig-scale__arc--2 { width: 180px; height: 180px; margin: 0 0 -90px -90px; border: 1px solid rgba(120, 170, 255, .22); }
.fig-scale__arc--1 { width: 100px; height: 100px; margin: 0 0 -50px -50px; border: 1px solid rgba(120, 170, 255, .32); }
.fig-scale__core {
  width: 40px; height: 40px;
  margin: 0 0 -20px -20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--brand-deep));
  box-shadow: 0 0 30px rgba(47, 208, 255, .7);
}
.fig-scale__orbit--inner {
  width: 180px; height: 180px;
  margin: 0 0 -90px -90px;
  animation: ainSpin 9s linear infinite;
}
.fig-scale__orbit--outer {
  width: 280px; height: 280px;
  margin: 0 0 -140px -140px;
  animation: ainSpin 16s linear infinite reverse;
}
.fig-scale__sat {
  position: absolute;
  left: 50%; top: -5px;
  width: 10px; height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.fig-scale__sat--a { top: -4px; width: 8px; height: 8px; margin-left: -4px; background: var(--sky); box-shadow: none; }
.fig-scale__sat--b { left: -4px; top: 50%; width: 8px; height: 8px; margin: -4px 0 0 0; background: var(--sky); box-shadow: none; }
.fig-scale__tag {
  left: auto; bottom: auto;
  right: 20px; top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--sky);
}

/* ── 7. Products ─────────────────────────────────────────────────────────── */
.products { padding-top: clamp(40px, 5vw, 64px); }

.products__grid {
  margin-top: clamp(40px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 20px;
}

.product {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--surface);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.product:hover { transform: translateY(-4px); box-shadow: 0 32px 64px -32px rgba(20, 70, 180, .4); }

.product__media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--line);
  background: #eef3fb;   /* shows while the screenshot loads */
}
.product__status {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(5, 10, 28, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #dfe7f8;
}
.product__status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
}
.product__status--live::before { background: #34d07f; box-shadow: 0 0 10px #34d07f; }

/* a real screenshot replaces the placeholder mock */
.product__media picture { display: block; width: 100%; height: 100%; }
.product__shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.product__body { display: flex; flex-direction: column; gap: 12px; flex: 1; padding: clamp(24px, 3vw, 32px); }
.product__facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.product__facts li {
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f6f9fe;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--ink-3);
}
.product__index { font-family: var(--font-mono); font-size: 12px; color: #697693; }
.product__name { font-size: clamp(26px, 3vw, 30px); font-weight: 600; letter-spacing: -.03em; }
.product__tagline { font-size: 17px; font-weight: 500; color: var(--brand); }
.product__text { font-size: 16px; line-height: 1.6; color: var(--ink-3); text-wrap: pretty; }
.product__link {
  margin-top: auto;
  padding-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  align-self: flex-start;
}
.product__link:hover { color: var(--brand); }

/* ── 8. AI-first panel ───────────────────────────────────────────────────── */
.panel-section { padding-inline: 16px; }
.panel-section--tight { padding-bottom: 16px; }

.panel {
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin-inline: auto;
  padding: clamp(72px, 9vw, 120px) var(--gutter);
  border-radius: var(--r-panel);
}
.panel--dark { background: var(--deep); color: var(--on-deep); --focus: var(--cyan); }
.panel__glow {
  position: absolute;
  right: -10%;
  top: -30%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 120, 255, .45), rgba(5, 10, 28, 0) 65%);
  pointer-events: none;
}
.panel__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(36px, 5vw, 56px);
  max-width: 1176px;
  margin-inline: auto;
}
.panel__title {
  margin-top: 18px;
  font-size: clamp(42px, 6.4vw, 88px);
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 600;
}
.panel__lead {
  margin-top: 32px;
  max-width: 480px;
  font-size: clamp(19px, 2.4vw, 22px);
  line-height: 1.45;
  color: #dfe7f8;
  text-wrap: pretty;
}

.principles { align-self: end; }
.principle {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.principle:last-child { border-bottom: 1px solid rgba(255, 255, 255, .12); }
.principle__marker { font-family: var(--font-mono); font-size: 13px; color: #5f8bd6; }
.principle p { font-size: 17px; line-height: 1.6; color: var(--on-deep-2); }

/* ── 9. Model / ladder ───────────────────────────────────────────────────── */
.model__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(36px, 5vw, 56px);
}
.model__lead { margin-top: 28px; font-size: clamp(18px, 2.2vw, 20px); line-height: 1.5; font-weight: 500; }
.model__text { margin-top: 16px; max-width: 500px; font-size: 17px; line-height: 1.6; color: var(--ink-2); text-wrap: pretty; }

.ladder { display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.ladder__step { letter-spacing: -.02em; }
.ladder__step--1 {
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  font-size: clamp(18px, 2vw, 20px);
  color: var(--ink-4);
}
.ladder__step--1 strong { color: var(--ink); font-weight: 500; }
.ladder__step--2 {
  padding: 28px 32px;
  border: 1px solid #c9dcfb;
  border-radius: 22px;
  background: #e4efff;
  font-size: clamp(22px, 2.6vw, 26px);
  color: #3d5a8f;
}
.ladder__step--2 strong { color: #0b3fb8; font-weight: 600; }
.ladder__step--3 {
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(120deg, #1bb0f2, var(--brand-deep) 60%, #1a3fd0);
  color: #fff;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -.035em;
  box-shadow: 0 30px 60px -30px rgba(20, 89, 232, .7);
}

/* ── 10. CTA ─────────────────────────────────────────────────────────────── */
.panel--cta {
  background: linear-gradient(135deg, #0d2a8a 0%, var(--brand-deep) 55%, #19a6f0 100%);
  color: #fff;
  text-align: center;
  --focus: #fff;
}
.panel__watermark {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 460px;
  opacity: .16;
  pointer-events: none;
}
.panel__watermark img { display: block; width: 100%; }

.cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 820px;
  margin-inline: auto;
}
.cta__title {
  font-size: clamp(40px, 7vw, 96px);
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 600;
  text-wrap: balance;
}
.cta__text {
  max-width: 620px;
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.55;
  color: #e3edff;
  text-wrap: pretty;
}
.cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
/* the ghost button needs more presence on the bright gradient */
.panel--cta .btn--ghost { border-color: rgba(255, 255, 255, .45); color: #fff; }
.panel--cta .btn--ghost:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .8); }
.cta__mail { font-family: var(--font-mono); font-size: 14px; letter-spacing: .04em; }
.cta__mail a { color: #cfe2ff; }
.cta__mail a:hover { color: #fff; }

/* ── 11. Footer ──────────────────────────────────────────────────────────── */
.site-footer { padding-block: 36px 48px; color: var(--ink-4); font-size: 14px; }
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer__brand { display: flex; align-items: center; gap: 10px; }
.site-footer__brand picture { display: flex; }
.site-footer__brand img { width: 24px; height: 24px; }
.site-footer__nav { display: flex; gap: 24px; flex-wrap: wrap; }
.site-footer__nav a { color: var(--ink-4); }
.site-footer__nav a:hover { color: var(--ink); }

/* ── 12. Motion + print ──────────────────────────────────────────────────── */
@keyframes ainFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}
@keyframes ainSpin { to { transform: rotate(360deg); } }
@keyframes ainBlink {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: .35; }
}
@keyframes ainBar {
  0%, 100% { transform: scaleY(.55); }
  50% { transform: scaleY(1); }
}
@keyframes ainLift {
  0%, 100% { transform: translateZ(56px); }
  50% { transform: translateZ(74px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .orbit__beam, .orbit__head { display: none; }
}

@media print {
  .site-header, .skip-link, .orbit, .panel__glow, .panel__watermark, .hero__aurora, .hero__grid { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, .panel--dark, .panel--cta, .card--dark { background: #fff !important; color: #000 !important; }
  .hero__title, .panel__title, .cta__title { font-size: 32px; }
  a[href^="http"]::after, a[href^="mailto"]::after { content: " (" attr(href) ")"; font-size: 11px; }
}

/* ── 13. Not found ──────────────────────────────────────────────────────── */
.page-dark {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  background: var(--deep);
  color: var(--on-deep);
  --focus: var(--cyan);
}

.notfound {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(36px, 5vw, 56px));
  padding-bottom: clamp(56px, 7vw, 80px);
}
.notfound__aurora,
.notfound__grid { position: absolute; inset: 0; pointer-events: none; }
.notfound__aurora { background: radial-gradient(58% 65% at 72% 42%, rgba(27, 140, 240, .34), rgba(5, 10, 28, 0) 70%); }
.notfound__grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 45%, #000, transparent);
  mask-image: radial-gradient(80% 80% at 50% 45%, #000, transparent);
}

.notfound__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(48px, 7vw, 72px);
  align-items: center;
  width: 100%;
}
@media (min-width: 980px) {
  .notfound__inner { grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); }
}

.notfound__title {
  margin-top: 26px;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 600;
  text-wrap: balance;
}
.notfound__title .grad { white-space: normal; }
.notfound__text {
  margin-top: 24px;
  max-width: 480px;
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.55;
  color: var(--on-deep-2);
  text-wrap: pretty;
}
.notfound__actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* quick links — same numbered rhythm as the approach steps */
.jumplist { margin-top: clamp(36px, 4vw, 44px); max-width: 420px; }
.jumplist__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-deep-3);
}
.jumplist ul { margin-top: 14px; }
.jumplist li + li a { border-top: 1px solid rgba(255, 255, 255, .1); }
.jumplist a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 4px;
  font-size: 17px;
  font-weight: 500;
  color: #dfe7f8;
}
.jumplist a:hover { color: #fff; }
.jumplist a:hover .jumplist__index { color: var(--cyan); }
.jumplist a:hover .btn__arrow { transform: translateX(4px); }
.jumplist__index {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--on-deep-4);
  transition: color .25s var(--ease);
}
.jumplist .btn__arrow { color: var(--on-deep-4); }

/* 404 glyph — the middle zero is an orbit the page has fallen out of */
.notfound__visual { display: flex; flex-direction: column; align-items: center; gap: clamp(20px, 3vw, 28px); }

.glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.2vw, 16px);
  font-size: clamp(108px, 13vw, 184px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.045em;
}
.glyph__digit {
  background: linear-gradient(180deg, #ffffff 0%, #b9c8e8 55%, #7e93bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 24px 50px rgba(31, 120, 255, .35));
}

.glyph__orbit {
  position: relative;
  width: .88em;
  height: .88em;
  flex: none;
}
.glyph__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  /* bright where the trail breaks, empty where the node escaped */
  background: conic-gradient(from 0deg,
    rgba(47, 208, 255, .95) 0deg,
    rgba(47, 208, 255, .9) 22deg,
    rgba(47, 208, 255, 0) 30deg,
    rgba(47, 208, 255, 0) 78deg,
    rgba(120, 170, 255, .3) 88deg,
    rgba(120, 170, 255, .5) 210deg,
    rgba(120, 170, 255, .62) 310deg,
    rgba(47, 208, 255, .95) 360deg);
  -webkit-mask: radial-gradient(circle closest-side,
    transparent calc(100% - 2.5px), #000 calc(100% - 2px), #000 100%, transparent 100%);
  mask: radial-gradient(circle closest-side,
    transparent calc(100% - 2.5px), #000 calc(100% - 2px), #000 100%, transparent 100%);
}
.glyph__ring::after {
  content: '';
  position: absolute;
  left: 75%;
  top: 6.7%;
  width: .07em;
  height: .07em;
  translate: -50% -50%;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 .05em var(--cyan), 0 0 .16em var(--cyan);
}
.glyph__dash {
  position: absolute;
  inset: 13%;
  border: 1px dashed rgba(120, 170, 255, .16);
  border-radius: 50%;
  animation: ainSpin 26s linear infinite;
}
.glyph__core {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 150, 255, .34), rgba(5, 10, 28, 0) 70%);
}
.glyph__mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  translate: -50% -50%;
}
.glyph__mark img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 16px 32px rgba(0, 60, 200, .6));
  animation: ainFloat 7s ease-in-out infinite;
}
.glyph__stray {
  position: absolute;
  left: 92%;
  top: 8%;
  display: grid;
  place-items: center;
  width: .22em;
  height: .22em;
  translate: -50% -50%;
  border: 1px solid rgba(47, 208, 255, .45);
  border-radius: 50%;
  background: rgba(5, 10, 28, .9);
  color: var(--cyan);
  box-shadow: 0 0 .12em rgba(47, 208, 255, .25), inset 0 0 .1em rgba(47, 208, 255, .2);
  animation: ain404Drift 7s ease-in-out infinite;
}
.glyph__stray > span {
  font-family: var(--font-mono);
  font-size: .1em;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.glyph__caption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-deep-3);
}
.glyph__status { color: var(--cyan); }

@keyframes ain404Drift {
  0%, 100% { transform: translate(0, 0); opacity: .95; }
  50% { transform: translate(16%, -26%); opacity: .5; }
}

@media (max-width: 979px) {
  .notfound { padding-top: calc(var(--header-h) + 48px); }
  .notfound__inner { gap: 48px; }
  .notfound__visual { order: -1; }
  .jumplist { max-width: none; }
}

/* dark footer variant used by the not-found page */
.site-footer--dark { border-top: 1px solid rgba(255, 255, 255, .08); color: var(--on-deep-3); }
.site-footer--dark a { color: var(--on-deep-3); }
.site-footer--dark a:hover { color: #fff; }

/* ── 14. Product page ────────────────────────────────────────────────────── */
.backlink {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 26px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--on-deep-3);
}
.backlink:hover { color: #fff; }

.applock { display: flex; align-items: center; gap: 20px; margin-top: 26px; }
.applock__icon { display: block; flex: none; }
.applock__icon img {
  display: block;
  width: clamp(60px, 7vw, 78px);
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(0, 60, 200, .45));
}
.applock__name {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 600;
}
.applock__tagline {
  margin-top: 20px;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.3;
  letter-spacing: -.02em;
  color: #dfe7f8;
  text-wrap: balance;
}
.applock__facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.applock__facts li {
  padding: 6px 12px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .05em;
  color: var(--on-deep-5);
}

/* framed screenshots */
.shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 30px 60px -36px rgba(20, 70, 180, .5);
}
.shot img { display: block; width: 100%; height: auto; }
.hero .shot {
  border-color: rgba(120, 170, 255, .2);
  background: #0b1020;
  box-shadow: 0 44px 80px -44px rgba(0, 0, 0, .9);
}
.shot--tight { background: transparent; border: 0; box-shadow: none; }
.shot--tight img {
  max-width: 420px;
  margin-inline: auto;
  filter: drop-shadow(0 22px 40px rgba(12, 22, 52, .35));
}

/* alternating feature rows */
.feature {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding-block: clamp(40px, 6vw, 72px);
  border-top: 1px solid var(--line);
}
.feature:first-child { border-top: 0; padding-top: 0; }
@media (min-width: 900px) {
  .feature { grid-template-columns: minmax(0, .85fr) minmax(0, 1fr); }
  .feature:nth-child(even) .feature__media { order: -1; }
  /* a very wide capture reads better across the whole row */
  .feature--wide { grid-template-columns: 1fr; gap: clamp(24px, 3vw, 36px); }
  .feature--wide .feature__body { max-width: 640px; }
  .feature.feature--wide .feature__media { order: 0; }   /* beats the alternating rule */
}
.feature__title {
  margin-top: 14px;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 600;
  text-wrap: balance;
}
.feature__text {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  text-wrap: pretty;
}
.feature__text code {
  padding: 2px 6px;
  border-radius: 5px;
  background: #e8eefb;
  font-family: var(--font-mono);
  font-size: .92em;
  color: var(--brand-dark);
}

.panel__title--sm { font-size: clamp(32px, 4.4vw, 52px); line-height: 1.02; }
