:root {
  --bg: #eee4d0;
  --bg-warm: #efefea;
  --bg-dark: #1d1e19;
  --ink: #1d1e19;
  --ink-rgb: 29 30 25;
  --muted: #a7a7aa;
  --line: #e2e2df;
  --paper: #eee4d0;
  --paper-rgb: 238 228 208;
  --accent: #fab506;
  --accent-strong: #ffc020;
  --purple: #fab506;
  --orange: #ff6a1a;
  --lime: #c9ff4a;
  --cyan: #7de8ff;
  --rose: #ff7ab6;
  --max: 1600px;
  --pad: clamp(20px, 2.8vw, 48px);
  --cursor-offset-x: -42px;
  --cursor-offset-y: -42px;
}

@font-face {
  font-family: "Neuron Heavy";
  src:
    url("assets/fonts/Neuron Heavy.woff") format("woff"),
    url("assets/fonts/Neuron Heavy.otf") format("opentype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Neuron Regular";
  src:
    url("assets/fonts/Neuron Regular.woff") format("woff"),
    url("assets/fonts/Neuron Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background-color: var(--page-bg, var(--bg));
  color: var(--ink);
  font-family: "Neuron Regular", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  transition: background-color 900ms cubic-bezier(0.22, 1, 0.36, 1), color 420ms ease;
}

body[data-theme="light"] {
  --page-bg: var(--bg);
}

body[data-theme="warm"] {
  --page-bg: var(--bg-warm);
}

body[data-theme="dark"] {
  --page-bg: var(--bg-dark);
}

body.modal-open {
  overflow: hidden;
}

body.is-preloading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

:where(h1, h2, h3, h4, h5, h6) {
  font-family: "Neuron Heavy", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.roll-link {
  display: inline-block;
  height: 1.15em;
  overflow: hidden;
  vertical-align: bottom;
}

.roll-link__stack {
  display: block;
  transform: translateY(0);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.roll-link__text {
  display: block;
  line-height: 1.15;
  white-space: nowrap;
}

a:hover .roll-link__stack,
a:focus-visible .roll-link__stack,
button:hover .roll-link__stack,
button:focus-visible .roll-link__stack {
  transform: translateY(-50%);
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  background: transparent;
  pointer-events: auto;
  overflow: hidden;
  transition: opacity 360ms ease 1380ms, visibility 0s linear 1740ms;
}

.preloader-base {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  transition: opacity 260ms ease 620ms;
}

.preloader-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  width: 100%;
  height: 100%;
}

.preloader-lane {
  position: relative;
  overflow: hidden;
}

.preloader-panel {
  position: absolute;
  inset: 0 -1px;
  background: var(--bg-dark);
  box-shadow: none;
  transform: scaleX(1);
  transform-origin: left center;
  transition:
    transform 860ms cubic-bezier(0.72, 0, 0.24, 1),
    opacity 160ms ease 760ms;
  will-change: transform, opacity;
}

.preloader-panel.is-left {
  transform-origin: left center;
}

.preloader-panel.is-right {
  transform-origin: left center;
}

.preloader-mark {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  transition: opacity 260ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.preloader-mark img {
  display: block;
  width: clamp(220px, 30vw, 480px);
  height: auto;
  filter: none;
}

.preloader-sweep {
  display: none;
}

.preloader-lane:nth-child(1) .preloader-panel { transition-delay: 0ms, 760ms; }
.preloader-lane:nth-child(2) .preloader-panel { transition-delay: 70ms, 830ms; }
.preloader-lane:nth-child(3) .preloader-panel { transition-delay: 140ms, 900ms; }
.preloader-lane:nth-child(4) .preloader-panel { transition-delay: 210ms, 970ms; }
.preloader-lane:nth-child(5) .preloader-panel { transition-delay: 280ms, 1040ms; }
.preloader-lane:nth-child(6) .preloader-panel { transition-delay: 350ms, 1110ms; }
.preloader-lane:nth-child(7) .preloader-panel { transition-delay: 420ms, 1180ms; }
.preloader-lane:nth-child(8) .preloader-panel { transition-delay: 490ms, 1250ms; }

body.is-loaded .preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.is-loaded .preloader-mark {
  opacity: 0;
  transform: scale(0.88) translateY(-18px);
}

body.is-loaded .preloader-base {
  opacity: 0;
}

body.is-loaded .preloader-panel.is-left,
body.is-loaded .preloader-panel.is-right {
  opacity: 0;
  transform: scaleX(0);
}

.cursor-label {
  position: fixed;
  left: var(--cursor-x, 0);
  top: var(--cursor-y, 0);
  z-index: 30;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
  white-space: pre-line;
  pointer-events: none;
  opacity: 0;
  transform: translate(var(--cursor-offset-x), var(--cursor-offset-y)) scale(0.72);
  transition: opacity 160ms ease, transform 160ms ease, background-color 220ms ease, color 220ms ease;
  will-change: transform;
}

.cursor-label.is-visible {
  opacity: 1;
  transform: translate(var(--cursor-offset-x), var(--cursor-offset-y)) scale(1);
}

.cursor-label.is-action {
  background: var(--accent);
  color: var(--ink);
}

body[data-theme="dark"] .cursor-label {
  background: var(--accent);
  color: var(--ink);
}

body[data-theme="dark"] .cursor-label.is-action {
  background: var(--accent);
  color: var(--ink);
}

[data-hide-cursor],
[data-hide-cursor] * {
  cursor: none;
}

.icon-button {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.site-header {
  position: absolute;
  top: 39px;
  left: 0;
  right: 0;
  z-index: 11;
  padding: 30px var(--pad) 18px;
  color: var(--ink);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 1.8vw, 36px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: clamp(30px, -1.2vw, 26px);
  height: auto;
}

.nav-links,
.contact-link {
  display: flex;
  align-items: center;
  gap: clamp(18px, 0.4vw, 34px);
  font-size: clamp(15px, 1.35vw, 20px);
  color: #eee4d0;
  font-family: "Neuron Regular", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.contact-link {
  justify-content: flex-end;
  justify-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  text-decoration: none;
  cursor: pointer;
}

.arrow-circle {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--accent);
  text-decoration: none;
}

.arrow-circle img {
  display: block;
  width: 16px;
  height: 16px;
  filter: brightness(0);
}

.large-link .arrow-circle {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  align-self: center;
  transform: translateY(7px);
}

main {
  overflow: clip;
}

.hero {
  position: fixed;
  inset: 0;
  z-index: 0;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  padding: 132px var(--pad) 72px;
  background: #dd5737;
}

.hero-stage {
  position: relative;
  max-width: var(--max);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  row-gap: clamp(14px, 2.5svh, 36px);
  overflow: clip;
}

.hero-copy,
.section-heading,
.service-intro {
  max-width: var(--max);
  margin-inline: auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-row: 1;
  align-self: start;
  margin-top: 0;
  max-width: none;
  margin-inline: 0;
  padding-top: clamp(24px, 4svh, 72px);
  opacity: 0;
  transform: translate3d(0, 128px, 0);
  transition:
    opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1) 1200ms,
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1) 1200ms;
}

@media (min-width: 901px) {
  .hero-copy {
    padding-top: clamp(36px, 5svh, 84px);
  }
}

.hero-visual {
  grid-row: 2;
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 3;
  width: min(48vw, 680px);
  height: clamp(210px, 36svh, 460px);
  justify-self: start;
  align-self: end;
  margin: 0;
  overflow: hidden;
}

body.is-loaded .hero-visual {
  transform: rotate(-1deg);
  animation: hero-visual-sway 8.5s ease-in-out 2.2s infinite both;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: left bottom;
  transform-origin: left bottom;
  transform: translate3d(0, 72px, 0) scale(0.88);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1) 920ms,
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1) 920ms;
}

.hero h1 {
  max-width: 1600px;
  margin: 0;
  font-size: clamp(62px, min(6.4vw, 13.5svh), 132px);
  line-height: 1.02;
  color: #eee4d0;
  font-family: "Neuron Heavy", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-mark {
  display: none;
  width: clamp(56px, 3.8vw, 80px);
  height: auto;
  margin: 0 0 22px;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-line-secondary > span:first-child {
  color: #eee4d0;
}

.hero-line-mobile {
  display: none;
}

.hero-line-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  margin-top: -0.04em;
}

.hero-inline-media-shell {
  position: relative;
  display: inline-block;
  width: 0.58em;
  height: 0.58em;
  flex: 0 0 auto;
  transform: translateY(0.03em);
}

.hero-inline-media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity 360ms ease;
}

.hero-inline-media.is-active {
  opacity: 1;
}

.hero-rotator {
  position: relative;
  display: inline-block;
  height: 1.02em;
  width: clamp(360px, 48vw, 900px);
  font-size: 1em;
  line-height: 1.02;
  color: #f6bb06;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: baseline;
}

.hero-rotator-word {
  position: absolute;
  inset: 0;
  opacity: 0;
  line-height: 1.02;
  transition: opacity 360ms ease, transform 360ms ease;
  color: #f6bb06;
}

.hero-rotator-word.is-active {
  opacity: 1; 
}

body.is-loaded .hero-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.is-loaded .hero-image {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes hero-visual-sway {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(0, -3px, 0) rotate(1deg);
  }
}

@media (min-width: 1760px) and (max-width: 2200px) and (max-height: 1100px) {
  .hero-copy {
    padding-top: clamp(48px, 8.4svh, 88px);
  }

  .hero h1 {
    font-size: clamp(62px, min(10.2vw, 20svh), 118px);
  }

  .hero-rotator {
    width: clamp(340px, 42vw, 760px);
    height: 1.02em;
  }
}

@media (min-width: 901px) and (min-height: 1081px) {
  .hero-stage {
    grid-template-rows: auto auto;
    align-content: center;
    row-gap: clamp(66px, 6svh, 100px);
  }

  .hero-copy {
    padding-top: clamp(28px, 3.2svh, 64px);
  }

  .hero h1 {
    font-size: clamp(88px, min(6.2vw, 11svh), 170px);
  }

  .hero-visual {
    align-self: end;
    width: min(29.5vw, 770px);
    height: clamp(250px, 29svh, 530px);
  }

}

@media (max-width: 1320px) {
  .hero-copy {
    padding-bottom: clamp(14px, 2.4vh, 42px);
  }
}

@media (max-width: 1100px) {
  .hero-copy {
    padding-top: clamp(10px, 2vh, 34px);
  }

  .hero-inline-media-shell {
    display: none;
  }
}

@media (min-width: 1081px) {
  .site-header .nav {
    grid-template-columns: auto 1fr auto;
  }
}

@media (min-width: 901px) and (max-width: 1680px) and (max-height: 1024px) {
  .hero h1 {
    font-size: clamp(90px, 5.8vw, 118px);
  }

  .hero-copy {
    padding-top: clamp(24px, 3.2vh, 52px);
  }

  .hero-mark {
    display: none;
  }

  .hero-rotator {
    width: clamp(320px, 44vw, 760px);
    height: 1.02em;
  }
}

@media (min-width: 901px) {
  .site-header {
    top: 0;
  }

  .hero {
    padding-top: 104px;
  }
}

@media (max-width: 900px) and (orientation: portrait) {
  .hero {
    padding-top: 136px;
  }

  .hero-stage {
    grid-template-rows: minmax(0, 48%) minmax(0, 52%);
    gap: 0;
  }

  .hero-copy {
    align-self: end;
    padding-bottom: 10px;
    transform: translate3d(0, 0, 0);
  }

  .hero h1 {
    font-size: clamp(50px, 10.8vw, 82px);
    white-space: normal;
  }

  .hero-line {
    white-space: normal;
  }

  .hero-line-desktop {
    display: none;
  }

  .hero-line-mobile {
    display: block;
  }

  .hero-line-secondary {
    display: block;
  }

  .hero-line-secondary > span:first-child {
    display: none;
  }

  .hero-rotator {
    display: block;
    width: auto;
    height: 1em;
    top: 0;
    font-size: 0.92em;
    overflow: visible;
    margin-top: 2px;
  }

  .hero-inline-media-shell {
    display: none;
  }

  .hero-visual {
    width: min(76vw, 460px);
    height: auto;
    aspect-ratio: 1 / 1;
    justify-self: start;
    margin: 0;
  }

  .hero-image {
    height: 100%;
    object-position: left bottom;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .hero {
    padding-top: 110px;
  }

  .hero-stage {
    grid-template-rows: 1fr;
    align-content: center;
  }

  .hero-copy {
    grid-row: 1;
    align-self: center;
    padding-top: 0;
    transform: translate3d(0, 0, 0);
  }

  .hero h1 {
    font-size: clamp(34px, 5.2vw, 56px);
  }

  .hero-visual {
    display: none;
  }
}

.hero-scroll {
  position: absolute;
  right: var(--pad);
  bottom: clamp(18px, 2.2vh, 28px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hero-scroll span:last-child {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  font-size: 20px;
  line-height: 1;
}

.scroll-cue {
  --scroll-cue-width: 70px;
  --scroll-cue-arrow-top: 23%;
  --scroll-cue-arrow-width: 45%;
  --scroll-cue-arrow-bob: 6%;
  --scroll-cue-offset: clamp(20px, 2.8vw, 48px);
  position: absolute;
  right: var(--scroll-cue-offset);
  bottom: var(--scroll-cue-offset);
  z-index: 30;
  display: block;
  width: var(--scroll-cue-width);
  aspect-ratio: 134 / 236;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  color: var(--ink);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

body.show-scroll-cue .scroll-cue {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-cue-board,
.scroll-cue-arrow {
  position: absolute;
  display: block; 
}

.scroll-cue-board {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 0; 
  transform-origin: center center;
}

.scroll-cue-arrow {
  top: var(--scroll-cue-arrow-top);
  left: 50%;
  width: var(--scroll-cue-arrow-width);
  height: auto;
  object-fit: contain;
  transform: translateX(-50%) translateY(0);
  animation: scroll-cue-arrow-bob 1.6s ease-in-out infinite;
  transform-origin: center top;
  z-index: 1;
}

.valuation {
  position: relative;
  z-index: 2;
  padding: 110px var(--pad) 150px;
  background: var(--bg);
}

.valuation-conversion {
  margin-top: 100vh;
  padding-inline: var(--pad);
  padding-top: clamp(176px, 14vw, 260px);
  padding-bottom: clamp(176px, 14vw, 260px);
  display: grid;
  row-gap: clamp(18px, 2.8vw, 36px);
  transition: background-color 900ms cubic-bezier(0.22, 1, 0.36, 1), color 500ms ease;
}

.valuation-autowallis {
  padding-top: 72px;
  padding-bottom: 136px;
}

.valuation-conversion.is-dark-revealed {
  background-color: var(--bg-dark);
  color: var(--paper);
}

.valuation-heading {
  width: 100%;
  max-width: var(--max);
  min-height: 0;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  grid-template-areas:
    "intro intro"
    "eyebrow stickers"
    "title stickers"
    "summary stickers";
  align-content: space-between;
  gap: 28px 36px;
}

.valuation-intro {
  grid-area: intro;
  max-width: min(100%, 1280px);
  display: grid;
  margin-bottom: clamp(18px, 2.4vw, 40px);
}

.valuation-intro p {
  margin: 0;
  font-family: "Neuron Heavy", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(30px, 3.4vw, 68px);
  line-height: 0.98;
  color: var(--ink);
}

.valuation-intro small {
  display: inline-block;
  color: rgba(var(--ink-rgb), 0.58);
  font-family: "Neuron Regular", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(9px, 0.58vw, 11px);
  font-weight: 400;
  line-height: 1;
  vertical-align: top;
  transform: translateY(1em);
  white-space: nowrap;
}

.valuation-heading h2 {
  grid-area: title;
  font-size: clamp(136px, 24vw, 420px);
  line-height: 0.8;
  display: flex;
  align-items: baseline;
  gap: 0.01em;
  flex-wrap: nowrap;
  max-width: none;
}

.valuation-heading > .section-eyebrow {
  grid-area: eyebrow;
  margin: 0;
  align-self: start;
  color: #747474;
  font-size: 15px;
  text-transform: uppercase;
}

.valuation-summary {
  grid-area: summary;
  max-width: 420px;
  margin-top: 0;
  align-self: end;
  font-size: clamp(18px, 1.9vw, 26px);
  line-height: 1.12;
}

.conversion-sticker-stack {
  grid-area: stickers;
  position: relative;
  width: min(100%, 420px);
  height: clamp(210px, 25vw, 390px);
  justify-self: end;
  align-self: center;
  pointer-events: none;
}

.conversion-sticker {
  position: absolute;
  display: block;
  width: clamp(150px, 15vw, 245px);
  height: auto;
  opacity: 0;
  transform-origin: center center;
  filter:
    drop-shadow(3px 5px 0 rgba(var(--ink-rgb), 0.2))
    drop-shadow(0 2px 2px rgba(var(--ink-rgb), 0.12));
  will-change: transform, opacity;
}

.conversion-sticker-prehlednost {
  left: 50%;
  top: 52%;
  z-index: 3;
  width: clamp(216px, 19.6vw, 338px);
  transform: translate3d(-50%, -50%, 0) translate3d(-60px, -36px, 0) rotate(-18deg) scale(0.72);
}

.conversion-sticker-vykon {
  left: 50%;
  top: 52%;
  z-index: 2;
  width: clamp(154px, 14.9vw, 232px);
  transform: translate3d(-50%, -50%, 0) translate3d(-8px, 2px, 0) rotate(16deg) scale(0.74);
}

.conversion-sticker-udrzitelnost {
  left: 50%;
  top: 52%;
  z-index: 1;
  transform: translate3d(-50%, -50%, 0) translate3d(42px, 38px, 0) rotate(-8deg) scale(0.76);
}

.valuation-heading.is-stickered .conversion-sticker-prehlednost {
  animation: conversion-sticker-land-prehlednost 980ms cubic-bezier(0.18, 0.78, 0.2, 1) 1680ms forwards;
}

.valuation-heading.is-stickered .conversion-sticker-vykon {
  animation: conversion-sticker-land-vykon 980ms cubic-bezier(0.18, 0.78, 0.2, 1) 840ms forwards;
}

.valuation-heading.is-stickered .conversion-sticker-udrzitelnost {
  animation: conversion-sticker-land-udrzitelnost 980ms cubic-bezier(0.18, 0.78, 0.2, 1) forwards;
}

@media (max-width: 1180px) {
  .valuation-heading {
    grid-template-columns: minmax(0, 1fr) minmax(190px, 280px);
  }

  .valuation-heading h2 {
    font-size: clamp(104px, 20vw, 220px);
  }

  .conversion-sticker-stack {
    width: min(100%, 280px);
    height: 250px;
  }

  .conversion-sticker {
    width: clamp(124px, 16vw, 190px);
  }

  .conversion-sticker-vykon {
    width: clamp(145px, 15.4vw, 205px);
  }

  .conversion-sticker-prehlednost {
    width: clamp(187px, 22vw, 268px);
  }
}

.valuation-conversion.is-dark-revealed .valuation-summary,
.valuation-conversion.is-dark-revealed .valuation-intro p,
.valuation-conversion.is-dark-revealed .conversion-index,
.valuation-conversion.is-dark-revealed .section-index,
.valuation-conversion.is-dark-revealed .client-card-text h3,
.valuation-conversion.is-dark-revealed .conversion-highlights,
.valuation-conversion.is-dark-revealed .tag-list,
.valuation-conversion.is-dark-revealed .conversion-copy {
  color: var(--paper);
}

.valuation-conversion.is-dark-revealed .valuation-intro small,
.valuation-conversion.is-dark-revealed .section-eyebrow {
  color: rgba(238, 228, 208, 0.62);
}

.valuation-conversion.is-dark-revealed .tag-list span:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.34);
}

.autowallis-boost-number,
.autowallis-boost-label {
  color: var(--ink);
  white-space: nowrap;
}

.autowallis-boost-number {
  font-variant-numeric: tabular-nums;
}

.autowallis-boost-label {
  font-size: 0.42em;
  font-weight: 600;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 48px;
}

.section-heading > p:first-child,
.service-intro p {
  margin: 0;
  color: #747474;
  font-size: 15px;
  text-transform: uppercase;
}

.services .section-heading > p:first-child,
.services .service-intro p {
  color: rgba(var(--ink-rgb), 0.68);
}

.section-heading h2,
.service-intro h2,
.path-card h2,
.cta h2 {
  margin: 0;
  font-size: clamp(48px, 4.6vw, 130px);
  line-height: 0.96;
  font-family: "Neuron Heavy", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

.conversion-boost-number {
  font-size: clamp(48px, 20vw, 280px);
}

.section-heading small {
  color: var(--muted);
  font-size: 0.3em;
  font-weight: 500;
}

.section-heading > p:last-child {
  max-width: 520px;
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
}

.client-grid {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.client-grid-showcase {
  gap: clamp(28px, 2.6vw, 48px);
  padding-top: 46px;
  border-top: 1px solid var(--line);
  align-items: start;
}

.client-card {
  min-height: 0;
  background: transparent;
  display: grid;
  align-content: start;
  gap: 26px;
  overflow: visible;
}

.valuation-conversion .client-card {
  gap: 20px;
}

.client-gallery {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #efefec;
  padding: clamp(18px, 1.7vw, 26px);
}

.client-grid-showcase .client-shot {
  height: auto;
}

.client-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.client-shot-full {
  object-position: center top;
}

.conversion-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #66d65c;
  color: #0f1a0f;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.conversion-badge strong {
  font-size: 19px;
  line-height: 1;
}

.conversion-badge span {
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.thumb {
  position: absolute;
  border-radius: 4px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.14);
  background: linear-gradient(135deg, var(--a), var(--b));
}

.thumb.large {
  width: 60%;
  height: 150px;
  left: 5%;
  top: 2px;
}

.thumb.small {
  width: 34%;
  height: 86px;
  right: 12%;
  top: 34px;
}

.thumb.tiny {
  width: 30%;
  height: 70px;
  right: 3%;
  top: 112px;
}

.client-logo {
  font-size: 24px;
  font-weight: 800;
}

.client-card-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.client-card h3 {
  margin: 0;
  font-size: clamp(32px, 3.15vw, 56px);
  font-weight: 500;
  line-height: 0.98;
  min-height: 2.95em;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: #777;
  font-size: 14px;
}

.tag-list span:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-left: 14px;
  vertical-align: middle;
  border-radius: 50%;
  background: #bebebb;
}

.client-card-text {
  display: grid;
  align-content: start;
  padding-top: 4px;
  gap: 8px;
}

.conversion-index {
  margin: 0;
}

.client-card-text h3 {
  min-height: 0;
  max-width: 11ch;
  margin-top: 0;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 0.93;
}

.conversion-copy {
  margin: 0;
  color: #666661;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.18;
}

.conversion-highlights {
  margin-top: 2px;
  gap: 8px 12px;
  font-size: 14px;
  color: var(--ink);
}

.section-index {
  display: inline-block;
  color: #a7a7aa;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.work {
  position: relative;
  z-index: 2;
  padding: 140px var(--pad) 170px;
  background: var(--bg-dark);
  color: var(--paper);
}

.work .section-heading > p:first-child,
.work .portfolio-kicker {
  color: rgba(var(--paper-rgb), 0.68);
}

.work .section-heading h2,
.work .portfolio-copy h3,
.work .portfolio-copy p {
  color: var(--paper);
}

.portfolio-bands {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: clamp(96px, 10vw, 160px);
}

.portfolio-row {
  display: grid;
  align-items: start;
}

.portfolio-row-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 72px);
}

.portfolio-row-featured {
  grid-template-columns: minmax(0, 1fr);
}

.portfolio-row-featured .portfolio-case {
  width: 100%;
}

.portfolio-row-bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 4vw, 74px);
}

.portfolio-case {
  min-width: 0;
  width: 100%;
  display: grid;
  gap: 24px;
  align-content: start;
}

.portfolio-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--paper);
}

.portfolio-case-landscape .portfolio-media {
  aspect-ratio: 16 / 10;
}

.portfolio-case-offset {
  margin-top: clamp(20px, 4vw, 72px);
}

.portfolio-case-offset .portfolio-media {
  aspect-ratio: 16 / 10;
}

.portfolio-case-featured .portfolio-media {
  aspect-ratio: 16 / 10;
}

.portfolio-case .case-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  transform-origin: center center;
  display: block;
}

.portfolio-copy {
  display: grid;
  gap: 10px;
  max-width: 26rem;
  width: 100%;
}

.portfolio-case-featured .portfolio-copy {
  max-width: 30rem;
}

.portfolio-kicker {
  color: #777;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.portfolio-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: 0.99;
  font-weight: 500;
}

.portfolio-copy p {
  margin: 0;
  color: #666;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.32;
}

.conversion-compare {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.conversion-card {
  min-width: 0;
  padding: 28px;
  display: grid;
  gap: 16px;
  align-content: start;
  background: var(--paper);
  border: 1px solid var(--line);
}

.conversion-card span {
  color: #777;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.conversion-card h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 56px);
  line-height: 0.98;
  font-weight: 500;
}

.conversion-card p {
  margin: 0;
  color: #333;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
}

.conversion-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: #555;
  font-size: 16px;
  line-height: 1.35;
}

.conversion-video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  background: var(--paper);
}

.conversion-strip {
  max-width: var(--max);
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.conversion-strip div {
  padding: 18px 20px;
  background: var(--paper);
  color: #222;
  font-size: 18px;
  line-height: 1.35;
}

.case-media-main {
  aspect-ratio: 16 / 10;
}

.case-media:not(.case-media-main) {
  aspect-ratio: 16 / 10;
}

.case-media img,
.case-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-media-note {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px 18px 20px;
  border: 1px solid #e8e8e4;
  background: var(--paper);
}

.case-media-note span {
  color: #777;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.case-media-note p {
  margin: 0;
  color: #333;
  font-size: 18px;
  line-height: 1.45;
}

.services {
  position: relative;
  z-index: 2;
  padding: 140px var(--pad);
  background: var(--accent);
  color: var(--ink);
}

.services {
  max-width: none;
  margin: 0;
}

.service-intro {
  margin: 0 0 70px;
  max-width: var(--max);
  margin-inline: auto;
}

.service-list {
  max-width: var(--max);
  margin-inline: auto;
  border-top: 1px solid rgba(var(--ink-rgb), 0.16);
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr minmax(260px, 520px);
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(var(--ink-rgb), 0.16);
}

.service-row h3,
.service-row p {
  margin: 0;
}

.service-row h3 {
  font-size: clamp(30px, 4vw, 64px);
  font-weight: 500;
}

.service-row p {
  color: #666;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.35;
}

.services .service-intro h2,
.services .service-row h3,
.services .service-row p {
  color: var(--ink);
}

.services .section-index {
  color: rgba(var(--ink-rgb), 0.64);
}

.team {
  position: relative;
  z-index: 2;
  padding: 120px 0 130px;
  background-color: #fab506;
  color: var(--ink);
  transition:
    background-color 900ms cubic-bezier(0.22, 1, 0.36, 1),
    color 500ms ease;
}

.team-showcase {
  position: relative;
  z-index: 2;
  background: var(--bg-dark);
  color: var(--paper);
  padding-top: 76px;
}

.team-showcase-heading {
  max-width: var(--max);
  margin: 0 auto 28px;
  padding: 0 var(--pad);
  gap: 12px;
}

.team-showcase-heading > p:first-child {
  color: rgba(var(--paper-rgb), 0.68);
}

.team-showcase-title-row {
  display: flex;
  align-items: end;
  gap: clamp(18px, 2vw, 34px);
}

.team-showcase-heading h2 {
  color: var(--paper);
  max-width: none;
  white-space: nowrap;
}

.team-showcase-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  transform: none;
  padding-bottom: 1em;
}

.team.is-dark-revealed {
  background-color: var(--bg-dark);
  color: var(--paper);
}

.team.is-dark-revealed .section-index,
.team.is-dark-revealed .team-intro p,
.team.is-dark-revealed .team-feature p {
  color: rgba(var(--paper-rgb), 0.72);
}

.team.is-dark-revealed .team-intro h2,
.team.is-dark-revealed .team-feature strong,
.team.is-dark-revealed .team-feature p {
  color: var(--paper);
}

.team-intro {
  max-width: var(--max);
  margin: 0 auto 58px;
  padding: 0 var(--pad);
  display: grid;
  gap: 18px;
}

.team-intro p {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.team-intro h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(48px, 7vw, 118px);
  line-height: 0.94;
  font-family: "Neuron Heavy", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

.team-heading-line {
  display: inline-block;
  white-space: nowrap;
}

.team-features {
  display: grid;
  gap: 40px;
  max-width: 760px;
  margin-top: 46px;
}

.team-feature {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}



.team-feature strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 700;
}

.team-feature p {
  margin: 0;
  max-width: 30rem;
  color: var(--ink);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.38;
}

.founders-stage {
  position: relative;
  max-width: var(--max);
  margin: -190px auto 42px;
  padding: 0 var(--pad);
}

.team-server-frame {
  width: min(100%, 540px);
  aspect-ratio: 883 / 939;
  margin: 0 0 0 auto;
  transform: translateX(clamp(-48px, -3vw, -18px)) translateY(clamp(-100px, -8vw, -70px));
}

.team-server {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  pointer-events: none;
  user-select: none;
}

.team .section-index {
  color: rgba(var(--ink-rgb), 0.64);
}

.team .team-intro h2,
.team .team-feature strong,
.team .team-feature p {
  color: var(--ink);
}

.team-marquee {
  overflow: hidden;
  margin-bottom: 88px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
  touch-action: none;
  cursor: grab;
  user-select: none;
}

#team-marquee {
  scroll-margin-top: clamp(112px, 12vh, 164px);
}

.team-marquee.is-dragging {
  cursor: grabbing;
}

.team-marquee::-webkit-scrollbar {
  display: none;
}

.team-marquee-shell {
  position: relative;
  width: 100%;
  margin: 0 0 18px;
  padding: 0 0 18px;
}

.team-marquee-button {
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(var(--paper-rgb), 0.12);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  transform: none;
  opacity: 1;
  backdrop-filter: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.team-marquee-button:hover,
.team-marquee-button:focus-visible {
  background: #f4ead5;
  border-color: rgba(var(--paper-rgb), 0.28);
  transform: scale(1.05);
}

.team-marquee-button img {
  display: block;
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%);
  opacity: 1;
}

.team-marquee-button.is-prev img {
  transform: rotate(180deg);
}

.team-track {
  display: flex;
  gap: 0;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.team-strip {
  display: flex;
  gap: 6px;
  padding-right: 6px;
}

.portrait-card {
  width: clamp(210px, 21vw, 340px);
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.portrait-card-flip {
  perspective: 1200px;
}

.portrait-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
}

.portrait-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portrait-card-flip:hover .portrait-card-inner,
.portrait-card-flip:focus-within .portrait-card-inner {
  transform: rotateY(180deg);
}

.team-marquee.is-dragging .portrait-card-flip:hover .portrait-card-inner,
.team-marquee.is-dragging .portrait-card-flip:focus-within .portrait-card-inner,
.team-marquee.is-drag-suppressed .portrait-card-flip:hover .portrait-card-inner,
.team-marquee.is-drag-suppressed .portrait-card-flip:focus-within .portrait-card-inner,
.team-marquee.is-dragging .portrait-card-inner,
.team-marquee.is-drag-suppressed .portrait-card-inner {
  transform: rotateY(0deg) !important;
}

.portrait-card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.portrait-card-front,
.team-strip[aria-hidden="true"] .portrait-card {
  display: block;
  transform: rotateY(0deg);
}

.portrait {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  object-fit: cover;
  object-position: center top;
  background: #d8d8d4;
}

.portrait-card figcaption {
  display: grid;
  gap: 4px;
  margin-top: 12px;
}

.portrait-card strong {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.06;
}

.portrait-card span {
  color: rgba(var(--ink-rgb), 0.72);
  font-size: 16px;
  line-height: 1.2;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.portrait-card-back {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  background: #171814;
  color: var(--paper);
  border-radius: 28px;
  overflow: hidden;
  transform: rotateY(180deg);
}

.portrait-card-back--bio {
  gap: 14px;
  padding: 20px;
}

.portrait-card-back-kicker {
  margin: 0;
  color: rgba(var(--paper-rgb), 0.58);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portrait-card-back-lead {
  margin: 0;
  color: var(--paper);
  font-size: 18px;
  line-height: 1.32;
  font-weight: 700;
}

.portrait-card-back-copy {
  display: grid;
  gap: 10px;
}

.portrait-card-back-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(var(--paper-rgb), 0.88);
}

.portrait-card-back-links {
  display: none;
}

.portrait-card-back p {
  margin: 0;
  font-size: clamp(18px, 1.05vw, 20px);
  line-height: 1.36;
  color: rgba(var(--paper-rgb), 0.9);
}

.portrait-card-back .portrait-card-back-kicker {
  font-size: 12px;
  line-height: 1.1;
}

.portrait-card-back--bio .portrait-card-back-lead {
  font-size: clamp(18px, 1.05vw, 20px);
  line-height: 1.26;
  color: var(--paper);
}

.portrait-card-back--bio .portrait-card-back-copy p {
  font-size: clamp(18px, 1.05vw, 20px);
  line-height: 1.36;
}

.portrait-card-back-inline-link {
  color: var(--accent-strong);
  font-size: 1.05em;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 1px;
}

.path-card {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px var(--pad) 60px;
  color: var(--paper);
}

.path-card h2 {
  max-width: 1120px;
}

.path-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 76px;
}

.path-step {
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--paper);
  border-radius: 10px;
  appearance: none;
  -webkit-appearance: none;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.path-step:hover,
.path-step:focus-visible {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
  transform: translateY(-1px);
}

.path-step:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.path-step .section-index {
  color: rgba(var(--paper-rgb), 0.62);
}

.path-step:hover .section-index,
.path-step:focus-visible .section-index {
  color: rgba(var(--ink-rgb), 0.62);
}

.path-step strong {
  font-size: clamp(24px, 2.6vw, 42px);
  font-weight: 500;
}

.cta {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: clamp(560px, 52vw, 760px);
  padding: 120px max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad))) 0;
  background: var(--bg-dark);
  color: var(--paper);
  overflow: hidden;
}

.cta-copy {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  max-width: min(66vw, 1080px);
  justify-items: start;
  align-content: start;
}

.cta-address {
  display: grid;
  gap: 8px;
  margin: 34px 0 0;
  font-style: normal;
  color: rgba(var(--paper-rgb), 0.74);
  line-height: 1.45;
  padding-bottom: 100px;
}

.cta-media {
  position: absolute;
  right: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  bottom: -150px;
  z-index: 1;
  width: min(42vw, 620px);
  pointer-events: none;
}

.cta-video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cta-media > img,
.cta-media > video {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.cta-mark {
  display: block;
  width: clamp(38px, 4vw, 47px);
  height: auto;
  margin-bottom: clamp(22px, 2.4vw, 36px);
}

.cta h2 span {
  color: #fab506;
}

.cta h2 {
  font-size: clamp(42px, 8.6vw, 100px);
  line-height: 0.94;
  max-width: 15ch;
}

.large-link {
  margin-top: 42px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: clamp(30px, 4vw, 68px);
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  color: var(--paper);
  text-decoration: none;
  cursor: pointer;
}

.large-link,
.large-link .roll-link__text {
  color: var(--paper);
}

.large-link .roll-link {
  height: 1.35em;
}

.large-link .roll-link__text {
  line-height: 1.35;
}

.large-link span:last-child {
  display: inline-grid;
  place-items: center;
}

.contact-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: rgba(8, 8, 7, 0);
  display: grid;
  justify-items: end;
  pointer-events: none;
  visibility: hidden;
  backdrop-filter: blur(0px) saturate(100%);
  -webkit-backdrop-filter: blur(0px) saturate(100%);
  transition:
    background-color 260ms ease,
    backdrop-filter 260ms ease,
    -webkit-backdrop-filter 260ms ease,
    visibility 0s linear 320ms;
}

.contact-drawer.is-open {
  background: rgba(8, 8, 7, 0.68);
  backdrop-filter: blur(18px) saturate(72%);
  -webkit-backdrop-filter: blur(18px) saturate(72%);
  pointer-events: auto;
  visibility: visible;
  transition:
    background-color 260ms ease,
    backdrop-filter 260ms ease,
    -webkit-backdrop-filter 260ms ease;
}

.contact-drawer-panel {
  position: relative;
  width: min(720px, calc(100vw - 24px));
  height: 100vh;
  height: 100dvh;
  padding: 96px 30px 34px;
  background: var(--bg-dark);
  color: var(--paper);
  display: grid;
  align-content: start;
  gap: 22px;
  box-shadow: -28px 0 90px rgba(0, 0, 0, 0.5);
  border-left: 1px solid rgba(var(--paper-rgb), 0.08);
  overflow-y: auto;
  transform: translate3d(100%, 0, 0);
  will-change: transform;
  transition: transform 420ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.contact-drawer.is-open .contact-drawer-panel {
  transform: translate3d(0, 0, 0);
}

.contact-drawer-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.contact-drawer-eyebrow {
  margin: 0;
  color: rgba(var(--paper-rgb), 0.62);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.contact-drawer-title {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.96;
  font-family: "Neuron Heavy", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
}

.contact-drawer-text {
  margin: 0;
  max-width: 26rem;
  color: rgba(var(--paper-rgb), 0.78);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.34;
}

.contact-drawer-form {
  display: grid;
  gap: 18px;
}

.netlify-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.contact-drawer-fieldset {
  display: grid;
  gap: 10px;
}

.contact-drawer-label,
.contact-drawer-field > span {
  color: rgba(var(--paper-rgb), 0.56);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-drawer-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-chip {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(var(--paper-rgb), 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--paper);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.contact-chip:hover,
.contact-chip:focus-visible,
.contact-chip.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.contact-chip:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.contact-drawer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-drawer-field {
  display: grid;
  gap: 8px;
}

.contact-drawer-field input,
.contact-drawer-field textarea {
  width: 100%;
  border: 1px solid rgba(var(--paper-rgb), 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--paper);
  padding: 14px 16px;
  font: inherit;
  resize: vertical;
}

.contact-drawer-field textarea {
  min-height: 132px;
}

.contact-drawer-field input:focus,
.contact-drawer-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: -1px;
}

.contact-drawer-link {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid var(--paper);
  border-radius: 10px;
  color: var(--paper);
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  font-size: clamp(20px, 1.6vw, 28px);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-drawer-link:hover,
.contact-drawer-link:focus-visible {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
  transform: translateY(-1px);
}

.contact-drawer-link:disabled {
  cursor: wait;
  opacity: 0.56;
}

.contact-drawer-status {
  min-height: 1.35em;
  margin: -4px 0 0;
  color: rgba(var(--paper-rgb), 0.58);
  font-size: 15px;
  line-height: 1.35;
}

.contact-drawer-status[data-state="success"] {
  color: #1f7a3b;
}

.contact-drawer-status[data-state="error"] {
  color: #b43324;
}

.contact-drawer-meta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(var(--paper-rgb), 0.12);
  display: grid;
  gap: 8px;
  color: rgba(var(--paper-rgb), 0.64);
  font-size: 17px;
  line-height: 1.4;
}

.contact-drawer-meta p {
  margin: 0;
}

@media (max-height: 1100px) and (min-width: 901px) {
  .contact-drawer-panel {
    padding-top: 72px;
    gap: 18px;
  }

  .contact-drawer-title {
    font-size: clamp(34px, 4.2vw, 60px);
  }

  .contact-drawer-text {
    font-size: clamp(16px, 1.6vw, 21px);
  }

  .contact-drawer-form {
    gap: 14px;
  }

  .contact-drawer-fieldset {
    gap: 8px;
  }

  .contact-drawer-grid {
    gap: 12px;
  }

  .contact-chip {
    min-height: 38px;
    padding: 0 14px;
  }

  .contact-drawer-field input,
  .contact-drawer-field textarea {
    padding: 12px 14px;
  }

  .contact-drawer-field textarea {
    min-height: 104px;
  }

  .contact-drawer-link {
    min-height: 52px;
    padding: 0 24px;
    font-size: clamp(19px, 1.8vw, 24px);
  }

  .contact-drawer-meta {
    margin-top: 20px;
    padding-top: 18px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (pointer: coarse) {
  .cursor-label {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 0;
    padding-top: 18px;
  }

  .nav {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .brand-link {
    display: inline-flex;
  }

  .nav-links {
    display: none;
  }

  .contact-link {
    grid-column: 3;
    justify-self: end;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 96px;
  }

  .hero h1 {
    font-size: clamp(58px, 16vw, 105px);
  }

  .side-badge {
    display: none;
  }

  .client-grid {
    grid-template-columns: 1fr;
  }

  .work {
    padding-block: 96px 120px;
  }

  .portfolio-bands {
    gap: 72px;
  }

  .portfolio-row-two,
  .portfolio-row-bottom {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .portfolio-case-offset {
    margin-top: 0;
  }

  .portfolio-case-offset .portfolio-media,
  .portfolio-case-featured .portfolio-media {
    aspect-ratio: 16 / 10;
  }

  .portfolio-copy {
    max-width: 34rem;
  }

  .portfolio-copy h3 {
    font-size: clamp(30px, 7vw, 54px);
  }

  .valuation-heading {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "eyebrow"
      "title"
      "summary"
      "stickers";
    margin-bottom: 42px;
    gap: 18px;
  }

  .valuation-intro {
    max-width: 680px;
  }

  .valuation-heading h2 {
    font-size: clamp(86px, 24vw, 160px);
    gap: 0.01em;
    max-width: none;
    flex-wrap: nowrap;
  }

  .valuation-summary {
    margin-top: 22px;
    max-width: 520px;
  }

  .conversion-sticker-stack {
    width: min(100%, 360px);
    height: 230px;
    justify-self: start;
    align-self: start;
    margin-top: 8px;
  }

  .conversion-sticker {
    width: clamp(128px, 34vw, 190px);
  }

  .conversion-sticker-vykon {
    width: clamp(132px, 33vw, 189px);
  }

  .conversion-sticker-prehlednost {
    width: clamp(187px, 46vw, 259px);
  }

  .client-grid-showcase {
    gap: 28px;
    padding-top: 30px;
  }

  .valuation-conversion {
    padding-top: 156px;
    padding-bottom: 156px;
    row-gap: 18px;
  }

  .client-grid-showcase .client-card-text h3 {
    max-width: none;
  }

  .conversion-copy {
    max-width: 34rem;
  }

  .conversion-highlights {
    font-size: 15px;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .contact-drawer {
    width: 100%;
  }

  .contact-drawer-panel {
    width: calc(100vw - 12px);
    padding: 84px 22px 28px;
  }

  .contact-drawer-title {
    font-size: clamp(34px, 9vw, 52px);
  }

  .contact-drawer-text {
    font-size: 18px;
  }

  .contact-drawer-grid {
    grid-template-columns: 1fr;
  }

  .path-steps {
    grid-template-columns: 1fr;
  }

  .cta-copy {
    max-width: min(68vw, 820px);
  }

  .cta-media {
    width: min(51vw, 420px);
    right: -70px;
    bottom: -50px;
  }

  .cta-address {
    margin-top: 22px;  
    font-size: 17px;
  }

  .founders-stage {
    margin: 22px auto 34px;
  }

  .team-server-frame {
    width: min(100%, 450px);
    margin: 0 0 0 auto;
    transform: none;
  }

  .scroll-cue {
    display: none;
  }
}

@media (min-width: 561px) and (max-width: 900px) and (orientation: portrait) {
  .valuation-heading {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    grid-template-areas:
      "intro intro"
      "eyebrow stickers"
      "title stickers"
      "summary stickers";
    column-gap: 22px;
    row-gap: 16px;
    align-items: start;
  }

  .valuation-heading h2 {
    font-size: clamp(76px, 16vw, 126px);
  }

  .valuation-summary {
    max-width: 100%;
    margin-top: 0;
  }

  .conversion-sticker-stack {
    width: min(100%, 280px);
    height: 280px;
    justify-self: end;
    align-self: center;
    margin-top: 0;
  }

  .conversion-sticker {
    width: clamp(110px, 22vw, 164px);
  }

  .conversion-sticker-vykon {
    width: clamp(122px, 24vw, 176px);
  }

  .conversion-sticker-prehlednost {
    width: clamp(150px, 28vw, 214px);
  }
}

@media (max-width: 560px) {
  :root {
    --pad: 16px;
  }

  .preloader {
    display: none;
  }

  .site-header {
    top: 0;
    padding-top: 18px;
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .brand-link {
    display: none;
  }

  .contact-link {
    grid-column: 2;
  }

  .hero {
    padding-top: 122px;
  }

  .hero-stage {
    display: grid;
    grid-template-rows: auto auto auto;
    align-content: start;
    gap: 16px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 56px);
    padding-left: 0;
  }

  .hero-line,
  .hero-rotator {
    white-space: normal;
  }

  .hero-line-secondary {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .hero-rotator {
    flex-basis: 100%;
    width: auto;
    height: 1em;
    top: 0;
  }

  .hero-copy {
    overflow: hidden;
    margin-top: 4px;
    transform: translate3d(0, 40px, 0);
  }

  .hero-mark {
    display: block;
    width: 42px;
    margin-bottom: 14px;
  }

  .case-details-gallery {
    grid-template-columns: 1fr;
  }

  .case-gallery-row {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1.15 / 1;
    margin-top: -14px;
    justify-self: start;
  }

  .hero-inline-media-shell {
    width: 38px;
    height: 38px;
  }

  .hero-scroll {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: end;
    margin-top: 6px;
    font-size: 12px;
    gap: 8px;
  }

  .hero-scroll span:last-child {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .valuation,
  .work,
  .services,
  .team,
  .cta {
    padding-block: 80px;
  }

  .client-card {
    min-height: 320px;
  }

  .client-card h3 {
    min-height: 0;
  }

  .client-card h3 {
    min-height: 0;
  }

  .valuation-conversion .client-card {
    min-height: 0;
  }

  .client-grid-showcase {
    grid-template-columns: 1fr;
  }

  .client-card-text {
    padding-top: 0;
  }

  .conversion-copy {
    max-width: none;
  }

  .case-visual {
    min-height: 320px;
  }

  .team-intro {
    margin-bottom: 28px;
  }

  .founders-stage {
    margin: 18px auto 34px;
  }

  .team-server-frame {
    width: min(100%, 320px);
    margin: 0 0 0 auto;
    transform: none;
  }

  .team-feature {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
  }

  .team-feature-index {
    width: 34px;
    height: 34px;
  }

  .team-feature strong {
    font-size: clamp(22px, 5.6vw, 32px);
  }

  .team-feature p {
    font-size: 17px;
    line-height: 1.38;
  }

  .team-features {
    gap: 32px;
    margin-top: 34px;
  }

  .team-marquee {
    margin-bottom: 56px;
  }

  .team-marquee-shell {
    margin-bottom: 10px;
    padding: 0 0 10px;
  }

  .team-strip {
    gap: 10px;
    padding-right: 10px;
  }

  .path-steps {
    margin-top: 58px;
  }

  .portrait-card {
    width: clamp(198px, 56vw, 282px);
    gap: 0;
  }

  .portrait-card strong {
    font-size: 18px;
  }

  .portrait-card span {
    font-size: 15px;
  }

  .team-showcase-title-row {
    flex-wrap: wrap;
    align-items: center;
  }

  .team-showcase-actions {
    transform: none;
  }

  .team-showcase-heading h2 {
    white-space: normal;
  }
}

@keyframes availability-pulse {
  0% {
    transform: scale(0.88);
    box-shadow: 0 0 0 0 rgba(30, 203, 85, 0.56);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(30, 203, 85, 0);
  }
  100% {
    transform: scale(0.88);
    box-shadow: 0 0 0 0 rgba(30, 203, 85, 0);
  }
}

@keyframes conversion-sticker-land-prehlednost {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) translate3d(-8px, -150px, 0) rotate(-20deg) scale(1.24);
  }
  74% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) translate3d(-60px, -36px, 0) rotate(-6deg) scale(1.035);
  }
  88% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) translate3d(-60px, -36px, 0) rotate(-6deg) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) translate3d(-60px, -36px, 0) rotate(-6deg) scale(1);
  }
}

@keyframes conversion-sticker-land-vykon {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) translate3d(-6px, -150px, 0) rotate(18deg) scale(1.22);
  }
  74% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) translate3d(-8px, 2px, 0) rotate(8deg) scale(1.035);
  }
  88% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) translate3d(-8px, 2px, 0) rotate(8deg) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) translate3d(-8px, 2px, 0) rotate(8deg) scale(1);
  }
}

@keyframes conversion-sticker-land-udrzitelnost {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) translate3d(10px, -150px, 0) rotate(-12deg) scale(1.2);
  }
  74% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) translate3d(42px, 38px, 0) rotate(3deg) scale(1.035);
  }
  88% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) translate3d(42px, 38px, 0) rotate(3deg) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) translate3d(42px, 38px, 0) rotate(3deg) scale(1);
  }
}

@media (max-width: 560px) and (orientation: portrait) {
  .hero-stage {
    grid-template-rows: minmax(0, 44%) minmax(0, 56%);
    gap: 0;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-copy {
    align-self: end;
    padding-bottom: 0;
    transform: translate3d(0, 0, 0);
    overflow: visible;
  }

  .hero h1 {
    font-size: clamp(60px, 16vw, 104px);
    line-height: 1.06;
  }

  .hero-mark {
    display: block;
    width: 42px;
    margin-bottom: 14px;
  }

  .hero-visual {
    width: min(82vw, 340px);
    height: auto;
    aspect-ratio: 0.95 / 1;
    margin: 0 auto;
    justify-self: center;
    align-self: end;
  }

  .hero-image {
    height: 100%;
    object-position: center bottom;
  }

  .hero-line {
    white-space: normal;
  }

  .hero-line-secondary {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .hero-line-desktop {
    display: none;
  }

  .hero-line-mobile {
    display: block;
  }

  .hero-line-secondary {
    display: block;
  }

  .hero-line-secondary > span:first-child {
    display: none;
  }

  .hero-rotator {
    display: block;
    width: auto;
    height: 1em;
    top: 0;
    font-size: 0.92em;
    overflow: visible;
    margin-top: 2px;
  }

  .hero-inline-media-shell {
    display: none;
  }

  .case-details-gallery {
    grid-template-columns: 1fr;
  }

  .hero-scroll {
    position: relative;
    right: auto;
    bottom: auto;
    display: none;
  }

  .hero-scroll span:first-child {
    display: none;
  }

  .hero-scroll span:last-child {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .cta {
    padding-top: 80px;
    padding-bottom: 0;
    min-height: 0;
    overflow: hidden;
  }

  .cta-media {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 520px;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .hero h1 {
    font-size: clamp(36px, 5.8vw, 60px);
  }

  .founders-stage {
    margin: 8px auto 24px;
  }

  .team-server-frame {
    width: min(46vw, 310px);
    transform: none;
    margin: 0 auto;
  }

  .cta {
    padding-top: 72px;
    min-height: clamp(300px, 68vh, 440px);
  }

  .cta-copy {
    max-width: min(62vw, 620px);
  }

  .cta-media {
    position: absolute;
    right: var(--pad);
    bottom: 0;
    width: min(42vw, 371px);
    max-width: none;
    margin: 0;
  }
}

@keyframes scroll-cue-arrow-bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(var(--scroll-cue-arrow-bob));
  }
}

@media (max-width: 1366px) and (orientation: landscape) {
  .hero-copy {
    padding-top: clamp(22px, 2.8vh, 48px);
  }

  .founders-stage {
    margin: 12px auto 28px;
  }

  .team-server-frame {
    width: min(38vw, 285px);
    transform: none;
    margin: 0 0 0 auto;
  }
}

@media (max-width: 560px) {
  .cta h2 {
    font-size: clamp(34px, 12vw, 58px);
    max-width: 12ch;
  }

  .cta-copy {
    max-width: none;
  }

  .cta-media {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 520px;    
  }
}
