@font-face {
  font-family: "Onest";
  src: url("/fonts/Onest-wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/SpaceGrotesk-wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/JetBrainsMono-wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
}

:root {
  --paper: #f1ede4;
  --ink: #0a0a0a;
  --surface: #ffffff;
  --muted: #5a564d;
  --accent: #d8ff3a;
  --shadow-hard: 6px 6px 0 0 var(--ink);
  --shadow-soft: 3px 3px 0 0 var(--ink);
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --font-heading: "Onest", "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --motion-fast: 180ms;
  --motion-quiet: 220ms;
  --motion-soft: 320ms;
  --card-grid-gap: clamp(1rem, 1.7vw, 1.38rem);
  --card-shell-pad: clamp(1rem, 1.55vw, 1.35rem);
  --card-shell-gap: 0.88rem;
  --card-copy-gap: 0.66rem;
  --section-stack-gap: clamp(1.35rem, 2.4vw, 1.9rem);
  --anchor-scroll-offset: clamp(5.35rem, 9vw, 6.6rem);
  --card-divider: 1.5px dashed rgba(10, 10, 10, 0.24);
  --card-surface-soft: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 237, 228, 0.72) 100%);
  --card-surface-accent: linear-gradient(180deg, rgba(216, 255, 58, 0.28) 0%, rgba(255, 255, 255, 0.98) 100%);
  --fs-micro: 0.66rem;
  --fs-label: 0.72rem;
  --fs-meta: 0.79rem;
  --fs-body: 0.97rem;
  --fs-body-lg: 1.03rem;
  --fs-body-xl: 1.12rem;
  --fs-name: clamp(1.34rem, 2.35vw, 1.88rem);
  --fs-display: clamp(2.1rem, 5.2vw, 4.1rem);
  --fs-display-mobile: clamp(2.42rem, 9.3vw, 3.18rem);
  --fs-lead: clamp(1rem, 1.45vw, 1.1rem);
  --fs-subhead: clamp(1.1rem, 1.75vw, 1.34rem);
  --fs-section: clamp(1.48rem, 2.35vw, 1.9rem);
  --fs-stat: clamp(1.48rem, 2.55vw, 2.08rem);
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.32;
  min-height: 100dvh;
  background-image: radial-gradient(rgba(10, 10, 10, 0.045) 1px, transparent 1px);
  background-size: 3px 3px;
  position: relative;
  isolation: isolate;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 95;
  height: 3px;
  pointer-events: none;
  background: rgba(10, 10, 10, 0.08);
}
.scroll-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #b8eb30 100%);
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress, 0));
  transition: transform 110ms linear;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: 0;
  z-index: 96;
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--ink);
  background: var(--accent);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 1rem));
  transition: transform 160ms ease, opacity 160ms ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(1rem);
  outline: none;
}
.frame {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(1.1rem, 2.4vw, 2.2rem) clamp(1rem, 2.4vw, 2.2rem) clamp(1rem, 2vw, 1.8rem);
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.6rem);
}
.masthead {
  display: grid;
  gap: 0.55rem;
  padding-bottom: clamp(0.6rem, 1.2vw, 1rem);
  border-bottom: 2px solid var(--ink);
  transform: translate3d(0, calc(var(--masthead-shift, 0px) * -1), 0);
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.hero-shell {
  display: grid;
  gap: 0.7rem;
}
.hero-main {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}
.meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lang-switch {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.84);
  border: 1.5px solid var(--ink);
  box-shadow: none;
}
.lang-switch a,
.lang-switch span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.95rem;
  padding: 0.38rem 0.62rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-left: 1px solid var(--ink);
}
.lang-switch li:first-child a,
.lang-switch li:first-child span { border-left: 0; }
.lang-switch a:hover,
.lang-switch a:focus-visible {
  background: rgba(216, 255, 58, 0.18);
  outline: none;
}
.lang-switch .active {
  background: rgba(10, 10, 10, 0.96);
  color: var(--accent);
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  display: inline-block;
}
.spacer { flex: 1; }
.brand-switch {
  display: inline-flex;
  align-items: stretch;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-soft);
  background: var(--surface);
  overflow: hidden;
}
.switch-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
  text-transform: lowercase;
  padding: 0.42rem 0.78rem 0.42rem 0.9rem;
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.switch-brand::after {
  content: "";
  position: absolute;
  right: -0.62rem;
  top: -2px;
  width: 1.15rem;
  height: calc(100% + 4px);
  background: linear-gradient(135deg, transparent 0 46%, var(--ink) 46% 100%);
  pointer-events: none;
}
.brand-switch .lang-switch {
  position: relative;
  z-index: 1;
}
.brand-switch .lang-switch li { margin: 0; }
.brand-switch .lang-switch a,
.brand-switch .lang-switch span {
  align-items: center;
  justify-content: center;
  min-width: 3.6rem;
  padding: 0.42rem 0.72rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brand-switch .lang-switch a:hover { background: var(--paper); }
.brand-switch .lang-switch .active {
  background: var(--ink);
  color: var(--accent);
}
.byline {
  margin: 0.1rem 0 0.2rem;
  font-family: var(--font-heading);
  font-weight: 760;
  font-size: var(--fs-name);
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--ink);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.byline::after {
  content: "";
  flex: 1;
  height: 3px;
  background: var(--ink);
  min-width: 2.4rem;
  max-width: 6rem;
}
.headline {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-display);
  line-height: 0.96;
  letter-spacing: -0.03em;
}
.headline .phrase {
  display: block;
  white-space: nowrap;
  will-change: clip-path, transform, filter;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-origin: 0 100%;
}
html.js body:not(.fonts-ready) .headline .phrase {
  opacity: 0;
  clip-path: inset(0 -0.35em 102% -0.14em);
  -webkit-clip-path: inset(0 -0.35em 102% -0.14em);
  transform: translate3d(0, 0.42em, 0);
  filter: blur(6px);
}
html.js body.fonts-ready .headline .phrase {
  animation: heroPhraseReveal 1020ms linear(
    0, 0.0043 1.4%, 0.0179 2.8%, 0.0506 5%, 0.1038 7.5%, 0.1815 10.4%,
    0.2914 13.8%, 0.4413 17.8%, 0.5918 21.7%, 0.7176, 0.8175 29.4%,
    0.8915 33%, 0.9437 36.7%, 0.9771 40.5%, 0.9967 45%, 1.0056 50%,
    1.0082 56%, 1.006 62%, 1.0024 70%, 1.0004 80%, 1
  ) both;
}
html.js body.fonts-ready .headline .phrase:nth-child(1) { animation-delay: 60ms; }
html.js body.fonts-ready .headline .phrase:nth-child(2) { animation-delay: 200ms; }
html.js body.fonts-ready .headline .phrase:nth-child(3) { animation-delay: 340ms; }
.headline .phrase-em {
  will-change: clip-path, transform, filter;
}
.headline em {
  font-style: normal;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding: 0 0.01em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  z-index: 0;
  transition: transform 180ms ease;
}
.headline em::before {
  content: "";
  position: absolute;
  left: -0.05em;
  right: -0.05em;
  top: 56%;
  bottom: 0.02em;
  background: var(--accent);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: -1;
}
html.js body.fonts-ready .headline em::before {
  animation: heroMarkerSweep 780ms linear(
    0, 0.0064 2%, 0.0272 4.2%, 0.0782 7.5%, 0.1623 11.5%, 0.2816 16%,
    0.4329 21%, 0.5938, 0.7368 31.5%, 0.8459 36.6%, 0.9199 41.6%,
    0.9654 46.4%, 0.9893 51%, 1.0002 56%, 1.0024 62%, 1.0012 70%, 1
  ) 620ms forwards;
}
.headline .phrase-em:hover em {
  transform: translateY(-0.02em);
}
.headline .phrase-em:hover em::before {
  transform: scaleX(1.02);
}
@keyframes heroPhraseReveal {
  0% {
    opacity: 0;
    clip-path: inset(0 -0.35em 102% -0.14em);
    -webkit-clip-path: inset(0 -0.35em 102% -0.14em);
    transform: translate3d(0, 0.42em, 0);
    filter: blur(6px);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    clip-path: inset(0 -0.35em -0.22em -0.14em);
    -webkit-clip-path: inset(0 -0.35em -0.22em -0.14em);
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}
@keyframes heroMarkerSweep {
  from { transform: scaleX(0); opacity: 0.85; }
  to { transform: scaleX(1); opacity: 1; }
}
.deck {
  margin: 0;
  max-width: 62ch;
  font-size: var(--fs-lead);
  color: var(--muted);
  line-height: 1.4;
}
.hero-signal {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--fs-meta);
  letter-spacing: 0.02em;
  color: var(--muted);
}
.hero-signal::before {
  content: "";
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--accent);
  box-shadow: 0 0 0 0.24rem rgba(216, 255, 58, 0.25);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.78rem;
  flex-wrap: wrap;
}
.jump-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.jump-nav-label {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 0.1rem;
}
.jump-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  padding: 0.48rem 0.72rem;
  border: 1.5px solid var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.jump-link:hover,
.jump-link:focus-visible {
  background: var(--accent);
  outline: none;
}
.hero-anchor {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  font-family: var(--font-mono);
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
}
.hero-anchor:hover,
.hero-anchor:focus-visible {
  background: var(--paper);
  outline: none;
}
.trust-strip {
  display: grid;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border: 2px solid var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 237, 228, 0.88) 100%);
  box-shadow: var(--shadow-hard);
}
.trust-label {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.trust-list li {
  display: inline-flex;
  align-items: center;
  position: relative;
  min-height: 2.25rem;
  padding: 0.38rem 0.68rem;
  border: 1.5px solid var(--ink);
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 0.04em;
  overflow: visible;
}
.trust-list li.has-link > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}
.trust-list li.trust-chip-ai {
  padding-right: 3.72rem;
}
.trust-list li.trust-chip-ai > a {
  min-width: 0;
}
.trust-list li.trust-chip-ai .ai-badge.ai-badge-inline {
  top: 50%;
  right: 0.34rem;
  width: auto;
  min-width: 3.04rem;
  height: 1.3rem;
  padding: 0 0.28rem 0 0.3rem;
  border-width: 1.5px;
  border-radius: 999px;
  background:
    linear-gradient(120deg, rgba(255,255,255,0) 8%, rgba(255,255,255,0.4) 22%, rgba(255,255,255,0) 38%) 0 0 / 220% 100%,
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.22), transparent 30%),
    linear-gradient(135deg, #5a2bff 0%, #7f59ff 52%, #b79dff 100%);
  box-shadow:
    3px 3px 0 0 rgba(17, 17, 17, 0.94),
    0 0 0 1px rgba(255,255,255,0.14) inset,
    0 10px 18px -14px rgba(120, 82, 255, 0.42);
  transform: translateY(-50%) translateZ(0);
  animation:
    aiBadgeSheen 4.6s cubic-bezier(0.4, 0, 0.2, 1) infinite,
    trustAiPulse 5.8s cubic-bezier(0.42, 0, 0.18, 1) infinite;
}
.trust-list li.trust-chip-ai .ai-badge.ai-badge-inline::before,
.trust-list li.trust-chip-ai .ai-badge.ai-badge-inline::after {
  border-radius: 999px;
}
.trust-list li.trust-chip-ai .ai-badge.ai-badge-inline::before {
  inset: 2px;
}
.trust-list li.trust-chip-ai .ai-badge.ai-badge-inline span {
  gap: 0.14rem;
  font-size: 0.53rem;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.trust-list li.trust-chip-ai .ai-badge.ai-badge-inline .rocket {
  font-size: 0.6rem;
}
.ai-badge {
  --badge-w: 7.2rem;
  --badge-h: 2.9rem;
  position: absolute;
  top: -0.95rem;
  right: -0.85rem;
  width: var(--badge-w);
  height: var(--badge-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.85rem;
  border-radius: 1rem;
  border: 2px solid rgba(17, 17, 17, 0.92);
  background:
    linear-gradient(120deg, rgba(255,255,255,0) 18%, rgba(255,255,255,0.42) 28%, rgba(255,255,255,0) 38%) 0 0 / 220% 100%,
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.22), transparent 28%),
    linear-gradient(135deg, #5f2fff 0%, #8b5cff 48%, #c3a7ff 100%);
  box-shadow:
    8px 8px 0 0 rgba(17, 17, 17, 0.96),
    0 0 0 1px rgba(255,255,255,0.12) inset,
    0 14px 28px -10px rgba(133, 82, 255, 0.34);
  transform: rotate(-7deg) translateZ(0);
  isolation: isolate;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  animation:
    aiBadgeFloat 4.8s cubic-bezier(0.42, 0, 0.18, 1) infinite,
    aiBadgeSheen 3.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: transform, background-position, box-shadow;
}
.ai-badge::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 0.8rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.02) 100%);
}
.ai-badge::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 1rem;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,255,255,0.08));
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: 0.72;
}
.ai-badge span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.96);
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(17,17,17,0.18);
}
.ai-badge .rocket {
  font-size: 0.88rem;
  transform: translateY(-0.01rem);
}
@keyframes aiBadgeFloat {
  0% {
    transform: rotate(-7deg) translate3d(0, 0, 0) scale(1);
    box-shadow:
      8px 8px 0 0 rgba(17, 17, 17, 0.96),
      0 0 0 1px rgba(255,255,255,0.12) inset,
      0 14px 28px -10px rgba(133, 82, 255, 0.34);
  }
  50% {
    transform: rotate(-5.6deg) translate3d(0, -4px, 0) scale(1.015);
    box-shadow:
      10px 13px 0 0 rgba(17, 17, 17, 0.93),
      0 0 0 1px rgba(255,255,255,0.15) inset,
      0 20px 34px -12px rgba(133, 82, 255, 0.42);
  }
  100% {
    transform: rotate(-7deg) translate3d(0, 0, 0) scale(1);
    box-shadow:
      8px 8px 0 0 rgba(17, 17, 17, 0.96),
      0 0 0 1px rgba(255,255,255,0.12) inset,
      0 14px 28px -10px rgba(133, 82, 255, 0.34);
  }
}
@keyframes trustAiPulse {
  0%,
  100% {
    box-shadow:
      3px 3px 0 0 rgba(17, 17, 17, 0.94),
      0 0 0 1px rgba(255,255,255,0.14) inset,
      0 10px 18px -14px rgba(120, 82, 255, 0.42);
    filter: saturate(1) brightness(1);
  }
  50% {
    box-shadow:
      3px 3px 0 0 rgba(17, 17, 17, 0.94),
      0 0 0 1px rgba(255,255,255,0.18) inset,
      0 12px 22px -12px rgba(120, 82, 255, 0.52);
    filter: saturate(1.06) brightness(1.03);
  }
}
@keyframes aiBadgeSheen {
  0% { background-position: 130% 0, 0 0, 0 0; }
  52% { background-position: 130% 0, 0 0, 0 0; }
  100% { background-position: -90% 0, 0 0, 0 0; }
}
.trust-list li.has-link {
  transition: transform var(--motion-fast) ease, box-shadow var(--motion-fast) ease, background var(--motion-fast) ease;
}
.trust-list li.has-link:hover,
.trust-list li.has-link:focus-within {
  background: color-mix(in srgb, var(--accent) 18%, var(--surface));
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}
.trust-list li.has-link > a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 0.16rem;
}
.trust-toggle,
.proof-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 2.7rem;
  padding: 0.62rem 0.75rem;
  border: 1.5px solid var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}
.trust-toggle:hover,
.trust-toggle:focus-visible,
.proof-toggle:hover,
.proof-toggle:focus-visible {
  background: var(--accent);
  outline: none;
}
.trust-strip.is-collapsible .trust-toggle {
  display: inline-flex;
}
.proof-toggle {
  display: inline-flex;
  margin-top: 1.1rem;
  padding: 1rem 1.15rem;
  border-width: 2px;
  background: var(--surface);
  box-shadow: var(--shadow-hard);
}
.proof-toggle-copy {
  display: grid;
  gap: 0.18rem;
  text-align: left;
}
.proof-toggle-copy strong {
  font-family: var(--font-heading);
  font-size: var(--fs-body-xl);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.proof-toggle-copy small {
  font-family: var(--font-mono);
  font-size: var(--fs-meta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.proof-toggle-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  padding: 0 0.75rem;
  border: 2px solid var(--ink);
  background: var(--accent);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.proof-toggle[aria-expanded="true"] .proof-toggle-badge {
  background: var(--ink);
  color: var(--surface);
}
.positioning {
  display: grid;
  gap: 1rem;
}
.positioning-lead {
  max-width: 64rem;
  margin: 0;
  font-size: var(--fs-body-lg);
  line-height: 1.5;
  color: var(--muted);
}
.positioning-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--card-grid-gap);
  align-items: stretch;
}
.positioning-card {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: 0;
  min-height: 0;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 2px solid var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 245, 238, 0.96) 100%);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  isolation: isolate;
}
.positioning-card-main {
  display: grid;
  align-content: start;
  gap: var(--card-copy-gap);
  min-width: 0;
  padding: var(--card-shell-pad);
}
.positioning-card-accent {
  background: linear-gradient(180deg, rgba(216, 255, 58, 0.48) 0%, rgba(255, 255, 255, 0.98) 58%, rgba(255, 255, 255, 1) 100%);
}
.positioning-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--fs-subhead);
  line-height: 1.08;
  min-height: calc(1.08em * 2);
}
.positioning-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  min-height: calc(1.45em * 2);
}
.positioning-card h3 + p,
.positioning-card h3 + .positioning-list,
.positioning-card p + .positioning-list {
  padding-top: 0.82rem;
  border-top: var(--card-divider);
}
.positioning-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.62rem;
}
.positioning-list li {
  position: relative;
  padding-left: 1.02rem;
  line-height: 1.45;
}
.positioning-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
.recommendations {
  display: grid;
  gap: 1rem;
}
.recommendations-lead {
  max-width: 62rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.recommendations-source {
  margin: -0.35rem 0 0;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.recommendations-source a {
  color: var(--ink);
  text-underline-offset: 0.14em;
}
.recommendations-source a:hover,
.recommendations-source a:focus-visible {
  background: rgba(216, 255, 58, 0.32);
  outline: none;
}
.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--card-grid-gap);
  align-items: stretch;
}
.recommendation-card {
  display: grid;
  align-content: stretch;
  min-height: 0;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 2px solid var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 237, 228, 0.84) 100%);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  isolation: isolate;
}
.recommendation-card-main {
  display: grid;
  align-content: start;
  gap: var(--card-copy-gap);
  min-width: 0;
  height: auto;
  padding: var(--card-shell-pad);
}
.recommendation-head {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  min-height: 0;
  padding-bottom: 0.86rem;
  border-bottom: var(--card-divider);
}
.recommendation-avatar {
  position: static;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.1rem;
  border: 2px solid var(--ink);
  object-fit: cover;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 4px 4px 0 0 var(--ink);
}
.recommendation-note {
  width: fit-content;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.recommendation-note a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 10, 10, 0.32);
}
.recommendation-note a:hover,
.recommendation-note a:focus-visible {
  color: var(--ink);
  background: rgba(216, 255, 58, 0.32);
  outline: none;
}
.recommendation-card blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--fs-body-lg);
  line-height: 1.47;
}
.recommendation-quote {
  margin: 0;
}
.recommendation-highlight {
  padding: 0 0.18em;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 18%, rgba(216, 255, 58, 0.88) 18%, rgba(216, 255, 58, 0.88) 86%, rgba(0, 0, 0, 0) 86%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.recommendation-person {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
  align-content: start;
}
.recommendation-person strong {
  font-family: var(--font-heading);
  font-size: var(--fs-body-xl);
  line-height: 1.2;
}
.recommendation-person span,
.recommendation-person small {
  color: var(--muted);
  line-height: 1.4;
}
.recommendation-person span {
  overflow-wrap: anywhere;
}
.recommendation-role {
  overflow-wrap: anywhere;
  font-weight: 700;
  color: rgba(10, 10, 10, 0.78);
}
.recommendation-affiliation {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.68);
}
.recommendation-context {
  color: rgba(10, 10, 10, 0.62);
}
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--card-grid-gap);
}
.bento-primary { grid-template-columns: repeat(2, 1fr); }
.bento-actions { grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr)); }
.tile {
  position: relative;
  min-width: 0;
  background: var(--surface);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
  padding: clamp(0.95rem, 1.5vw, 1.35rem);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.tile-about,
.tile-numbers { grid-column: span 1; }
.tile-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 0.55rem;
  border-bottom: 1.5px dashed rgba(10, 10, 10, 0.28);
}
.tile-label b {
  font-weight: 700;
  background: var(--ink);
  color: var(--paper);
  padding: 0.1rem 0.38rem;
}
.label-text {
  margin: 0;
  font-size: inherit;
  font-weight: 500;
}
.about-grid {
  display: grid;
  grid-template-columns: clamp(140px, 18vw, 180px) 1fr;
  gap: 1.1rem;
  align-items: start;
}
.portrait {
  display: block;
  margin: 0;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
  background: var(--paper);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.tile-about .tile-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.tile-about p {
  margin: 0;
  font-size: var(--fs-body-lg);
  line-height: 1.46;
}
.numbers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}
.numbers li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  position: relative;
  padding: 0.18rem 0 0.22rem;
  --num-progress: 0;
}
.numbers li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.2rem;
  height: 0.18rem;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(216, 255, 58, 0.05) 100%);
  transform: scaleX(var(--num-progress, 0));
  transform-origin: left center;
  opacity: calc(0.4 + 0.55 * var(--num-progress, 0));
  will-change: transform, opacity;
}
.numbers li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08rem;
  height: 1.5px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  pointer-events: none;
}
.numbers li.is-arrived::after {
  animation: numArrivalLine 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.numbers b {
  font-family: var(--font-heading);
  font-size: var(--fs-stat);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  display: inline-block;
  transform-origin: left center;
}
.numbers b.is-counting {
  text-shadow: 0 0 18px rgba(216, 255, 58, 0.38);
}
.numbers li.is-arrived b {
  animation: numArrivalBump 540ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes numArrivalLine {
  0% { transform: scaleX(0); opacity: 0; }
  22% { opacity: 1; }
  60% { transform: scaleX(1); opacity: 0.92; }
  100% { transform: scaleX(1); opacity: 0; }
}
@keyframes numArrivalBump {
  0% { transform: scale(1); }
  38% { transform: scale(1.042); }
  100% { transform: scale(1); }
}
.numbers span {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.motion-ready .motion-section-reveal,
.motion-ready .motion-reveal {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity var(--motion-quiet) ease,
    transform var(--motion-soft) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: transform, opacity;
}
.motion-ready .motion-section-reveal.motion-inview,
.motion-ready .motion-reveal.motion-inview {
  opacity: 1;
  transform: none;
}
@keyframes mastheadDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -6px, 0); }
}
@keyframes sectionRevealProgress {
  0% {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes scrollProgressFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@supports (animation-timeline: view()) {
  body.motion-scroll-driven .motion-section-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    animation-name: sectionRevealProgress;
    animation-duration: 1ms;
    animation-fill-mode: both;
    animation-timing-function: linear;
    animation-timeline: view(block);
    animation-range: entry 8% cover 26%;
  }
}
@supports (animation-timeline: scroll(root block)) {
  body.motion-scroll-driven .scroll-progress-bar {
    transition: none;
    animation: scrollProgressFill 1ms linear both;
    animation-timeline: scroll(root block);
  }
  body.motion-scroll-driven .masthead {
    transition: none;
    animation: mastheadDrift 1ms linear both;
    animation-timeline: scroll(root block);
    animation-range: 0 180px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.78rem 0.95rem;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
  transition:
    transform 150ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 160ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 140ms ease,
    color 140ms ease,
    border-color 140ms ease;
}
.btn:hover,
.btn:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 0 var(--ink);
  outline: none;
}
.btn:active {
  transform: translate(0, 0) scale(0.985);
  box-shadow: 2px 2px 0 0 var(--ink);
}
.tile-cta {
  position: relative;
  background: var(--accent);
  justify-content: space-between;
  overflow: hidden;
  animation: bookingCardBeacon 4.2s ease-in-out infinite;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease;
}
.tile-cta::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.82rem;
  height: 0.24rem;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(10, 10, 10, 0.1) 100%);
  transform-origin: center;
  opacity: 0.32;
  pointer-events: none;
  animation: bookingCardUnderline 4.2s ease-in-out infinite;
}
.tile-cta:hover,
.tile-cta:focus-within {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 0 var(--ink);
  background: #e1ff56;
}
.tile-cta .btn { color: var(--accent); }
.tile-project,
.tile-network { justify-content: space-between; }
.tile-cta p,
.tile-project p,
.tile-network p {
  margin: 0;
  font-size: var(--fs-lead);
  line-height: 1.36;
}
.email-link {
  font-family: var(--font-mono);
  font-size: var(--fs-body);
  text-decoration: none;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 0.1rem;
  align-self: flex-start;
  overflow-wrap: anywhere;
}
.email-link:hover { background: var(--accent); }
.network {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.network a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-mono);
  font-size: var(--fs-meta);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 0.55rem 0.65rem;
  border: 1.5px solid var(--ink);
  background: var(--paper);
}
.network a:hover {
  background: var(--ink);
  color: var(--paper);
}
.network-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}
.network-copy strong,
.network-copy small {
  display: block;
}
.network-copy strong {
  font-size: var(--fs-meta);
}
.network-copy small {
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: none;
  color: rgba(10, 10, 10, 0.68);
}
.network a:hover .network-copy small,
.network a:focus-visible .network-copy small {
  color: rgba(241, 237, 228, 0.86);
}
@keyframes bookingCardBeacon {
  0%, 100% {
    box-shadow: var(--shadow-hard);
    filter: saturate(1);
  }
  50% {
    box-shadow: 8px 8px 0 0 var(--ink), 0 0 0 0.32rem rgba(216, 255, 58, 0.18);
    filter: saturate(1.04);
  }
}
@keyframes bookingCardUnderline {
  0%, 100% {
    transform: scaleX(0.88);
    opacity: 0.22;
  }
  50% {
    transform: scaleX(1);
    opacity: 0.48;
  }
}
.sticky-calendly {
  position: fixed;
  right: max(0.85rem, calc((100vw - 1240px) / 2 - 0.2rem));
  bottom: clamp(0.85rem, 2vw, 1.2rem);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: min(15rem, calc(100vw - 2rem));
  padding: 0.74rem 0.82rem;
  border: 2px solid var(--ink);
  background: var(--accent);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transform: translateY(1rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-calendly.is-visible {
  animation: bookingCardBeacon 4.2s ease-in-out infinite;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sticky-calendly.is-boosted {
  animation-duration: 2.6s;
}
.sticky-calendly:hover,
.sticky-calendly:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 0 var(--ink), 0 0 0 0.36rem rgba(216, 255, 58, 0.22);
  outline: none;
}
.sticky-calendly.is-visible:hover,
.sticky-calendly.is-visible:focus-visible {
  transform: translate(-2px, -2px);
}
.sticky-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.15rem;
  padding: 0.28rem 0.46rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1.5px solid var(--ink);
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sticky-copy {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}
.sticky-title {
  font-family: var(--font-heading);
  font-size: var(--fs-body-xl);
  font-weight: 800;
  line-height: 1.05;
}
.sticky-meta {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.72);
}
.sticky-arrow {
  margin-left: auto;
  font-size: 1.15rem;
  line-height: 1;
}
@keyframes ctaCardJitter {
  0%, 84%, 100% { transform: translate(0, 0) rotate(0deg); }
  87% { transform: translate(-1px, 0) rotate(-0.45deg); }
  90% { transform: translate(1px, -1px) rotate(0.38deg); }
  93% { transform: translate(-1px, 1px) rotate(-0.32deg); }
  96% { transform: translate(1px, 0) rotate(0.22deg); }
}
.section-head {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 1rem;
}
.section-num {
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  background: var(--ink);
  color: var(--paper);
  padding: 0.18rem 0.46rem;
  font-weight: 700;
}
.section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--fs-section);
  font-weight: 760;
  letter-spacing: -0.02em;
}
.services,
.proof,
.experience,
.education,
.positioning,
.recommendations,
#contact-cta {
  margin-top: var(--section-stack-gap);
  scroll-margin-top: var(--anchor-scroll-offset, 5.6rem);
}
.services {
  background: linear-gradient(180deg, rgba(216, 255, 58, 0.24) 0%, rgba(216, 255, 58, 0.1) 100%), var(--surface);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
  padding: 1rem 1.05rem 1.05rem;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: attr(data-services-eyebrow);
  position: absolute;
  top: 0.95rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
}
.services-lead,
.proof-lead,
.experience-lead,
.education-lead {
  max-width: 62rem;
  margin: 0 0 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}
.services-lead {
  font-family: var(--font-heading);
  font-size: var(--fs-subhead);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.service-list {
  counter-reset: service-card;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--card-grid-gap);
}
.service-list li {
  counter-increment: service-card;
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
}
.service-list li:nth-child(1),
.service-list li:nth-child(2) { grid-column: span 6; }
.service-list li:nth-child(6) {
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.75fr);
  gap: 0.6rem 1rem;
}
.service-list li::before {
  content: counter(service-card, decimal-leading-zero);
  position: absolute;
  top: 0.72rem;
  right: 0.78rem;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.42);
}
.service-list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.32rem;
  background: var(--ink);
}
.service-list h3,
.proof-card h3,
.role-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 760;
  color: var(--ink);
}
.service-list h3 { font-size: var(--fs-body-xl); line-height: 1.08; }
.service-list p { margin: 0; color: rgba(10, 10, 10, 0.74); line-height: 1.38; }
.service-paths {
  margin-top: 0.45rem;
  display: grid;
  gap: 0.6rem;
}
.service-paths-head {
  display: grid;
  gap: 0.2rem;
}
.service-paths-head-secondary {
  margin-top: 0.2rem;
  padding-top: 0.35rem;
  border-top: 1px dashed rgba(10, 10, 10, 0.18);
}
.service-paths-lead {
  margin: 0;
  max-width: 58rem;
  color: var(--muted);
  line-height: 1.42;
  font-size: var(--fs-body-sm);
}
.service-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 0.58rem;
  align-items: stretch;
}
.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0.72rem 0.86rem;
  border: 1.5px solid rgba(10, 10, 10, 0.92);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 3px 3px 0 0 rgba(10, 10, 10, 0.9);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.service-link:hover,
.service-link:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 0 rgba(10, 10, 10, 0.94);
  background: rgba(255, 255, 255, 1);
}
.service-link:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.service-link-label,
.service-link-arrow {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service-link-label {
  font-weight: 700;
  color: var(--ink);
  min-width: 0;
}
.service-link-arrow {
  color: var(--muted);
  flex-shrink: 0;
}
.service-link-core {
  background: rgba(248, 244, 234, 0.94);
}
.service-link-industry {
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 620px) {
  .service-links {
    grid-template-columns: 1fr;
  }
  .service-link {
    min-height: 0;
  }
}
.proof-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--card-grid-gap);
  align-items: stretch;
}
.proof-list > li {
  display: block;
  min-height: 0;
  height: 100%;
}
.proof-list > li[hidden] {
  display: none;
}
.proof-card {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0;
  height: 100%;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 241, 232, 0.9) 100%);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}
.proof-card-main {
  display: grid;
  align-content: start;
  gap: var(--card-copy-gap);
  min-width: 0;
  width: 100%;
  height: auto;
  padding: var(--card-shell-pad);
}
.proof-card-head {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  min-height: 0;
  padding-bottom: 0.86rem;
  border-bottom: var(--card-divider);
}
.proof-card-head-text-only {
  display: block;
  grid-template-columns: 1fr;
  width: 100%;
}
.proof-card-thumb {
  display: block;
  grid-column: 1;
  grid-row: 1;
  width: 72px;
  min-width: 72px;
  max-width: 72px;
  height: 72px;
  min-height: 72px;
  max-height: 72px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 1.1rem;
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 4px 4px 0 0 var(--ink);
}
.proof-card-copy {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  align-content: start;
  gap: var(--card-copy-gap);
  min-width: 0;
  width: 100%;
}
.proof-card-head-text-only .proof-card-copy {
  grid-column: 1;
  width: 100%;
}
.proof-card:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.proof-meta {
  display: block;
  min-height: 0;
}
.proof-card h3 {
  min-height: calc(1.12em * 2);
}
.proof-meta,
.proof-cta,
.role-dates {
  font-family: var(--font-mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
}
.proof-meta { font-size: var(--fs-micro); line-height: 1.45; }
.proof-card h3 { font-size: var(--fs-body-xl); line-height: 1.15; }
.proof-cta {
  margin-top: auto;
  padding: 0.86rem var(--card-shell-pad) var(--card-shell-pad);
  border-top: var(--card-divider);
  font-size: var(--fs-micro);
  font-weight: 700;
  color: var(--ink);
}
.proof-cta-band {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border: 2px solid var(--ink);
  background: linear-gradient(135deg, rgba(216, 255, 58, 0.72) 0%, rgba(255, 255, 255, 0.95) 52%, rgba(255, 255, 255, 1) 100%);
  box-shadow: var(--shadow-hard);
}
.proof-cta-copy {
  display: grid;
  gap: 0.32rem;
}
.proof-cta-kicker {
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.proof-cta-copy p {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.45;
  color: var(--ink);
}
.proof-cta-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.proof-anchor {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--ink);
}
.proof-anchor:hover,
.proof-anchor:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  outline: none;
}
.faq {
  display: grid;
  gap: 1rem;
}
.faq-lead {
  max-width: 62rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.faq-list {
  display: grid;
  gap: var(--card-grid-gap);
}
.faq-item {
  border: 2px solid var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow-hard);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.05rem;
  font-family: var(--font-heading);
  font-size: var(--fs-body-xl);
  font-weight: 800;
  line-height: 1.2;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item[open] summary {
  border-bottom: 2px solid var(--ink);
}
.faq-answer {
  padding: 0.9rem 1.05rem 1rem;
}
.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}
.roles {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--card-grid-gap);
}
.role {
  background: var(--surface);
  padding: var(--card-shell-pad);
  display: flex;
  flex-direction: column;
  gap: 0.52rem;
  position: relative;
  overflow: visible;
}
.role.role-ai {
  padding-top: calc(var(--card-shell-pad) + 0.92rem);
  padding-right: var(--card-shell-pad);
}
.role.role-ai > .ai-badge {
  top: -0.92rem;
  right: 0.82rem;
  width: auto;
  min-width: 4.5rem;
  height: 2.18rem;
  padding: 0 0.54rem;
}
.role::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.28rem;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(127, 153, 8, 0.9) 100%);
}
.role-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.role-title { font-size: var(--fs-body-xl); letter-spacing: -0.01em; }
.role-dates { font-size: var(--fs-label); white-space: nowrap; }
.role-company,
.role-context {
  margin: 0;
  color: var(--ink);
}
.role-company { font-size: var(--fs-body); font-weight: 700; }
.role-context { font-size: var(--fs-body); line-height: 1.42; color: var(--muted); }
.role-impact {
  margin: 0.16rem 0 0;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.72);
}
.role-company a,
.edu-list a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.role-company a:hover,
.role-company a:focus-visible,
.edu-list a:hover,
.edu-list a:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  outline: none;
}
.role-bullets {
  list-style: none;
  padding: 0;
  margin: 0.15rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
}
.role-bullets li {
  position: relative;
  padding-left: 0.92rem;
  font-size: var(--fs-body);
  line-height: 1.38;
}
.role-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: 700;
}
.role-stack {
  margin: 0.28rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.role-stack span,
.role-stack a {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.role-stack a {
  text-decoration: none;
}
.role-stack a:hover,
.role-stack a:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
  outline: none;
}
.edu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--card-grid-gap);
}
.edu-list li {
  font-size: var(--fs-body);
  line-height: 1.46;
  padding: 0.85rem 0.9rem 0.88rem 1rem;
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  border: 1.5px solid rgba(10, 10, 10, 0.18);
}
.edu-list li::before {
  content: "·";
  position: absolute;
  left: 0.45rem;
  font-weight: 700;
}
.colophon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 0.9rem;
  border-top: 2px solid var(--ink);
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 960px) {
  .bento-primary,
  .bento-actions,
  .positioning-grid,
  .recommendations-grid,
  .roles,
  .proof-list,
  .edu-list { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .proof-cta-band { grid-template-columns: 1fr; }
  .proof-cta-actions { justify-content: flex-start; }
  .proof-card-head {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
  }
  .proof-card-head-text-only {
    grid-template-columns: 1fr;
  }
  .proof-card-thumb {
    width: 72px;
    min-width: 72px;
    max-width: 72px;
    height: 72px;
    min-height: 72px;
    max-height: 72px;
    border-radius: 1.1rem;
    flex-shrink: 0;
  }
  .service-list li,
  .service-list li:nth-child(1),
  .service-list li:nth-child(2),
  .service-list li:nth-child(6) {
    grid-column: span 1;
    display: flex;
  }
}
@media (max-width: 620px) {
  :root {
    --card-gap: 0.72rem;
    --card-pad-y: 0.95rem;
    --card-pad-x: 0.95rem;
    --card-grid-gap: 1rem;
    --card-header-reserve: 5.8rem;
    --card-shell-pad: 0.98rem;
    --card-shell-gap: 0.8rem;
    --card-copy-gap: 0.6rem;
    --section-stack-gap: 1.15rem;
    --anchor-scroll-offset: 5.45rem;
  }
  .frame { gap: 1.15rem; padding: 1.1rem 0.95rem 1rem; }
  .site-header {
    top: 0.5rem;
    margin-bottom: 0.75rem;
  }
  .site-header-row {
    padding: 0.76rem 0.78rem;
  }
  .site-brand {
    max-width: min(68vw, 15rem);
    min-height: 2.2rem;
    font-size: clamp(0.88rem, 4.1vw, 1rem);
  }
  .site-mobile-toggle {
    min-height: 2.2rem;
    padding: 0.42rem 0.7rem;
  }
  .site-mobile-panel {
    width: min(18rem, calc(100vw - 1.9rem));
    padding: 0.76rem;
  }
  .breadcrumb {
    gap: 0.35rem;
    margin-bottom: 0.7rem;
  }
  .masthead { gap: 0.68rem; }
  .meta { font-size: var(--fs-micro); gap: 0.42rem; align-items: flex-start; }
  .lang-switch a,
  .lang-switch span { min-width: 2.55rem; padding: 0.32rem 0.44rem; font-size: var(--fs-micro); }
  .switch-brand { font-size: var(--fs-micro); padding: 0.36rem 0.62rem 0.36rem 0.72rem; }
  .byline { gap: 0.42rem; }
  .byline::after { max-width: 4.2rem; min-width: 1.8rem; }
  .headline {
    max-width: 100%;
    font-size: clamp(2.35rem, 9.4vw, 3.18rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }
  .hero-actions { align-items: stretch; }
  .deck {
    max-width: 30ch;
    font-size: 0.98rem;
    line-height: 1.36;
  }
  .hero-signal {
    max-width: 33ch;
    align-items: flex-start;
    line-height: 1.42;
  }
  .hero-signal::before {
    margin-top: 0.1rem;
  }
  .hero-actions .btn,
  .hero-anchor,
  .positioning-card .btn,
  .proof-cta-actions .btn,
  .proof-anchor,
  .jump-link {
    width: 100%;
    justify-content: center;
  }
  .jump-nav {
    align-items: stretch;
  }
  .jump-nav-label {
    width: 100%;
    margin-right: 0;
  }
  .trust-strip.is-collapsible.is-collapsed .trust-list li:nth-child(n+7) {
    display: none;
  }
  .trust-list li {
    width: 100%;
    justify-content: center;
  }
  .trust-list li.trust-chip-ai {
    padding-right: 3.34rem;
  }
  .trust-list li.trust-chip-ai .ai-badge.ai-badge-inline {
    min-width: 2.78rem;
    height: 1.18rem;
    right: 0.3rem;
    padding: 0 0.24rem 0 0.26rem;
  }
  .trust-list li.trust-chip-ai .ai-badge.ai-badge-inline span {
    gap: 0.12rem;
    font-size: 0.48rem;
  }
  .trust-list li.trust-chip-ai .ai-badge.ai-badge-inline .rocket {
    font-size: 0.55rem;
  }
  .ai-badge {
    --badge-w: 6.6rem;
    --badge-h: 2.65rem;
    top: -0.78rem;
    right: -0.6rem;
  }
  .ai-badge span {
    font-size: 0.88rem;
  }
  .headline .phrase { white-space: normal; }
  .headline em {
    display: inline;
    white-space: normal;
    padding: 0 0.03em;
    background: linear-gradient(transparent 58%, var(--accent) 58%);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }
  .headline em::before { display: none; animation: none; }
  html[lang^="ru"] .headline {
    font-size: clamp(2.18rem, 8.8vw, 2.95rem);
    line-height: 0.93;
  }
  .bento { grid-template-columns: 1fr; gap: var(--card-grid-gap); }
  .tile { padding: 1.05rem 1rem; }
  .tile-cta:hover,
  .tile-cta:focus-within { transform: none; box-shadow: var(--shadow-hard); }
  .about-grid { grid-template-columns: 132px 1fr; gap: 0.9rem; }
  .numbers { grid-template-columns: 1fr; gap: 0; }
  .numbers li {
    padding: 0.72rem 0;
    border-bottom: 1.5px dashed rgba(10, 10, 10, 0.22);
  }
  .numbers li:last-child { border-bottom: 0; padding-bottom: 0.2rem; }
  .numbers b { font-size: clamp(2rem, 8.8vw, 2.7rem); }
  .service-list { grid-template-columns: 1fr; gap: var(--card-grid-gap); }
  .service-list li { grid-column: span 1; }
  .proof-intro-card,
  .proof-visual-card,
  .proof-facts-card,
  .proof-summary-card,
  .proof-archive-card {
    padding: 0.98rem;
  }
  .proof-archive-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 0.75rem;
  }
  .proof-archive-card-text-only {
    grid-template-columns: 1fr;
  }
  .proof-archive-thumb {
    width: 64px;
    height: 64px;
    min-width: 64px;
  }
  .faq-item summary { font-size: var(--fs-body-lg); }
  .sticky-calendly {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.75rem;
    min-width: 0;
    justify-content: space-between;
    padding: 0.82rem 0.9rem;
    box-shadow: var(--shadow-hard);
  }
  .sticky-title { font-size: var(--fs-body); }
  .sticky-meta { display: inline; }
}

/* Mobile-first retrofit: homepage baseline starts on narrow viewports and expands progressively. */
.frame {
  gap: 1.15rem;
  padding: 1rem 0.95rem max(5.8rem, calc(env(safe-area-inset-bottom) + 4.9rem));
}
.masthead {
  gap: 0.72rem;
}
.meta {
  font-size: var(--fs-micro);
  gap: 0.42rem;
  align-items: flex-start;
}
.lang-switch a,
.lang-switch span {
  min-width: 2.55rem;
  padding: 0.32rem 0.44rem;
  font-size: var(--fs-micro);
}
.switch-brand {
  font-size: var(--fs-micro);
  padding: 0.36rem 0.62rem 0.36rem 0.72rem;
}
.byline {
  gap: 0.42rem;
}
.byline::after {
  max-width: 4.2rem;
  min-width: 1.8rem;
}
.headline {
  max-width: 100%;
  font-size: var(--fs-display-mobile);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
html[lang^="ru"] .headline {
  font-size: clamp(2.18rem, 8.8vw, 3.02rem);
  line-height: 0.93;
}
.headline .phrase {
  white-space: normal;
}
.headline em {
  display: inline;
  white-space: normal;
  padding: 0 0.03em;
  background: linear-gradient(transparent 58%, var(--accent) 58%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.headline em::before {
  display: none;
  animation: none;
}
html.js body.fonts-ready .headline em {
  animation: none;
}
.deck {
  max-width: 32ch;
  font-size: 0.98rem;
  line-height: 1.38;
}
.hero-signal {
  max-width: 33ch;
  align-items: flex-start;
  line-height: 1.42;
}
.hero-signal::before {
  margin-top: 0.1rem;
}
.hero-actions {
  display: grid;
  gap: 0.72rem;
  align-items: stretch;
}
.hero-actions .btn,
.hero-anchor,
.positioning-card .btn,
.proof-cta-actions .btn,
.proof-anchor,
.jump-link {
  width: 100%;
  justify-content: center;
}
.jump-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: stretch;
}
.jump-nav-label {
  grid-column: 1 / -1;
  width: 100%;
  margin-right: 0;
}
.trust-strip {
  padding: 0.92rem 0.95rem;
}
.trust-strip.is-collapsible.is-collapsed .trust-list li:nth-child(n+5) {
  display: none;
}
.trust-list li {
  width: 100%;
  justify-content: center;
}
.proof-toggle {
  margin-top: 1rem;
  padding: 0.92rem 0.95rem;
}
.positioning-grid,
.recommendations-grid,
.proof-list,
.roles,
.edu-list,
.bento,
.bento-primary,
.bento-actions {
  grid-template-columns: 1fr;
}
.positioning-card h3,
.positioning-card p,
.proof-card h3 {
  min-height: 0;
}
.recommendation-head {
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.role.role-ai {
  padding-top: calc(var(--card-shell-pad) + 0.72rem);
  padding-right: var(--card-shell-pad);
}
.role.role-ai > .ai-badge {
  top: -0.82rem;
  right: 0.62rem;
}
.recommendation-avatar {
  width: 4rem;
  height: 4rem;
}
.tile {
  padding: 1.05rem 1rem;
}
.tile-cta:hover,
.tile-cta:focus-within {
  transform: none;
  box-shadow: var(--shadow-hard);
}
.about-grid {
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
.portrait {
  max-width: min(15rem, 100%);
}
.numbers {
  grid-template-columns: 1fr;
  gap: 0;
}
.numbers li {
  padding: 0.72rem 0;
  border-bottom: 1.5px dashed rgba(10, 10, 10, 0.22);
}
.numbers li:last-child {
  border-bottom: 0;
  padding-bottom: 0.2rem;
}
.numbers b {
  font-size: clamp(2rem, 8.8vw, 2.7rem);
}
.section-head {
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.services {
  padding: 1rem 0.95rem 1rem;
}
.services::before {
  position: static;
  display: block;
  margin-bottom: 0.7rem;
}
.service-list {
  grid-template-columns: 1fr;
  gap: var(--card-grid-gap);
}
.service-list li,
.service-list li:nth-child(1),
.service-list li:nth-child(2),
.service-list li:nth-child(6) {
  grid-column: span 1;
  display: flex;
}
.proof-card-head {
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 0.75rem;
}
.proof-card-head-text-only {
  grid-template-columns: 1fr;
}
.proof-card-thumb {
  width: 64px;
  min-width: 64px;
  max-width: 64px;
  height: 64px;
  min-height: 64px;
  max-height: 64px;
}
.proof-card-copy {
  grid-column: 2;
  grid-row: 1;
}
.proof-card-head-text-only .proof-card-copy {
  grid-column: 1;
  grid-row: 1;
}
.proof-cta-band {
  grid-template-columns: 1fr;
  align-items: start;
}
.proof-cta-actions {
  justify-content: flex-start;
}
.faq-item summary {
  font-size: var(--fs-body-lg);
}
.sticky-calendly {
  left: 0.75rem;
  right: 0.75rem;
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  min-width: 0;
  justify-content: space-between;
  padding: 0.82rem 0.9rem;
  box-shadow: var(--shadow-hard);
}
.sticky-title {
  font-size: var(--fs-body);
}
.sticky-meta {
  display: inline;
}

@media (min-width: 520px) {
  .about-grid {
    grid-template-columns: 132px 1fr;
    gap: 0.9rem;
  }
  .recommendation-head {
    grid-template-columns: 4rem minmax(0, 1fr);
  }
  .jump-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .proof-card-head {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .proof-card-copy {
    grid-column: 2;
  }
}

@media (min-width: 700px) {
  .frame {
    gap: 1.25rem;
    padding: 1.1rem 1.15rem max(6rem, calc(env(safe-area-inset-bottom) + 4.8rem));
  }
  .meta {
    font-size: var(--fs-label);
    gap: 0.6rem;
    align-items: center;
  }
  .lang-switch a,
  .lang-switch span {
    min-width: 2.8rem;
    padding: 0.36rem 0.56rem;
    font-size: var(--fs-label);
  }
  .switch-brand {
    font-size: var(--fs-label);
    padding: 0.4rem 0.68rem 0.4rem 0.8rem;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .hero-actions .btn,
  .hero-anchor,
  .positioning-card .btn,
  .proof-cta-actions .btn,
  .proof-anchor,
  .jump-link {
    width: auto;
  }
  .jump-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .jump-nav-label {
    width: auto;
    grid-column: auto;
  }
  .trust-list li {
    width: auto;
    justify-content: flex-start;
  }
  .positioning-grid,
  .recommendations-grid,
  .roles,
  .edu-list,
  .proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bento-primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .frame {
    gap: clamp(1rem, 1.8vw, 1.6rem);
    padding: clamp(1.1rem, 2.4vw, 2.2rem) clamp(1rem, 2.4vw, 2.2rem) clamp(1rem, 2vw, 1.8rem);
  }
  .headline {
    max-width: 11ch;
    font-size: var(--fs-display);
    line-height: 0.96;
    letter-spacing: -0.03em;
  }
  .headline .phrase {
    white-space: nowrap;
    width: max-content;
    max-width: none;
  }
  .headline em {
    display: inline-block;
    white-space: nowrap;
    padding: 0 0.01em;
    background: none;
  }
  .headline em::before {
    display: block;
  }
  html.js body.fonts-ready .headline em::before {
    animation: heroMarkerSweep 780ms linear(
      0, 0.0064 2%, 0.0272 4.2%, 0.0782 7.5%, 0.1623 11.5%, 0.2816 16%,
      0.4329 21%, 0.5938, 0.7368 31.5%, 0.8459 36.6%, 0.9199 41.6%,
      0.9654 46.4%, 0.9893 51%, 1.0002 56%, 1.0024 62%, 1.0012 70%, 1
    ) 620ms forwards;
  }
  .deck {
    max-width: 62ch;
    font-size: var(--fs-lead);
    line-height: 1.4;
  }
  .hero-signal {
    max-width: none;
    align-items: center;
    line-height: inherit;
  }
  .hero-signal::before {
    margin-top: 0;
  }
  .positioning-grid,
  .recommendations-grid,
  .roles,
  .edu-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .recommendation-head {
    grid-template-columns: 4.5rem minmax(0, 1fr);
  }
  .recommendation-avatar {
    width: 4.5rem;
    height: 4.5rem;
  }
  .bento {
    grid-template-columns: repeat(6, 1fr);
  }
  .bento-primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bento-actions {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  }
  .about-grid {
    grid-template-columns: clamp(140px, 18vw, 180px) 1fr;
    gap: 1.1rem;
  }
  .services {
    padding: 1rem 1.05rem 1.05rem;
  }
  .services::before {
    position: absolute;
    top: 0.95rem;
    right: 1rem;
    margin-bottom: 0;
  }
  .service-list {
    grid-template-columns: repeat(12, 1fr);
  }
  .service-list li {
    grid-column: span 4;
  }
  .service-list li:nth-child(1),
  .service-list li:nth-child(2) {
    grid-column: span 6;
  }
  .service-list li:nth-child(6) {
    grid-column: span 12;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.75fr);
    gap: 0.6rem 1rem;
  }
  .proof-card-head {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.9rem;
  }
  .proof-card-head.proof-card-head-text-only {
    grid-template-columns: 1fr;
  }
  .proof-card-thumb {
    width: 72px;
    min-width: 72px;
    max-width: 72px;
    height: 72px;
    min-height: 72px;
    max-height: 72px;
  }
  .proof-card-head.proof-card-head-text-only .proof-card-copy {
    grid-column: 1;
  }
  .proof-list {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
  .proof-card {
    min-height: 0;
    grid-template-rows: auto auto;
  }
  .proof-card-main {
    height: auto;
  }
  .proof-cta-band {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
  .sticky-calendly {
    left: auto;
    right: max(0.85rem, calc((100vw - 1240px) / 2 - 0.2rem));
    bottom: clamp(0.85rem, 2vw, 1.2rem);
    min-width: min(15rem, calc(100vw - 2rem));
    padding: 0.74rem 0.82rem;
    box-shadow: var(--shadow-soft);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::before,
  body::after { animation: none; }
  .headline .phrase,
  .headline em {
    animation: none;
    opacity: 1;
    transform: none;
    clip-path: none;
    -webkit-clip-path: none;
    filter: none;
  }
  html.js body:not(.fonts-ready) .headline .phrase,
  html.js body.fonts-ready .headline .phrase {
    animation: none;
    opacity: 1;
    transform: none;
    clip-path: none;
    -webkit-clip-path: none;
    filter: none;
  }
  .headline em::before { animation: none; transform: scaleX(1); opacity: 1; }
  .numbers li { --num-progress: 1; }
  .numbers li::before { transform: scaleX(1); opacity: 0.95; }
  .numbers li::after,
  .numbers li.is-arrived::after,
  .numbers li.is-arrived b { animation: none; }
  .numbers b { transform: none; text-shadow: none; }
  .tile-cta,
  .tile-cta::after { animation: none; }
  .scroll-progress-bar {
    transition: none;
    animation: none;
  }
  .sticky-calendly,
  .sticky-calendly.is-visible,
  .sticky-calendly.is-boosted,
  .sticky-calendly:hover,
  .sticky-calendly:focus-visible {
    animation: none;
    transform: none;
  }
  .masthead {
    transition: none;
    animation: none;
    transform: none;
    will-change: auto;
  }
  .motion-ready .motion-section-reveal,
  .motion-ready .motion-reveal,
  .motion-ready .motion-section-reveal.motion-inview,
  .motion-ready .motion-reveal.motion-inview,
  .btn,
  .btn:hover,
  .btn:focus-visible,
  .btn:active,
  .tile-cta,
  .tile-cta:hover,
  .tile-cta:focus-within,
  .recommendation-card,
  .recommendation-card:hover,
  .service-list li,
  .service-list li:hover,
  .service-link,
  .service-link:hover,
  .service-link:focus-visible,
  .proof-card,
  .proof-card:hover,
  .proof-card:focus-visible,
  .ai-badge {
    transition: none;
    animation: none;
    transform: none;
    filter: none;
  }
}
