:root {
  --paper: #fffdfb;
  --surface: #ffffff;
  --soft: #f4f1ee;
  --ink: #181716;
  --muted: #6e6a67;
  --line: rgba(24, 23, 22, 0.12);
  --coral: #5b8def;
  --coral-soft: #dce8ff;
  --coral-deep: #1f5bd5;
  --purple: #a889dc;
  --mint: #9ce2bc;
  --blue: #93d9ff;
  --yellow: #ffd36a;
  --display: "Bricolage Grotesque", Arial, sans-serif;
  --body: "Public Sans", Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--coral);
  color: var(--ink);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  border-color: var(--line);
  background: rgba(255, 253, 251, 0.9);
  box-shadow: 0 12px 36px rgba(24, 23, 22, 0.04);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  min-width: max-content;
}

.brand strong {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.09em;
}

.brand span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-presence {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-presence time {
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: #4e4a47;
  font-size: 0.82rem;
  font-weight: 600;
}

.main-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.nav-contact:hover {
  border-color: var(--coral);
  background: var(--coral);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.menu-toggle i {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.25s ease;
}

.menu-toggle i:first-of-type {
  transform: translateY(-3px);
}

.menu-toggle i:last-of-type {
  transform: translateY(3px);
}

.menu-toggle[aria-expanded="true"] i:first-of-type {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:last-of-type {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero-grid {
  position: absolute;
  inset: var(--header-h) 0 0;
  pointer-events: none;
  background-image: linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: calc(100% / 7) 100%;
  opacity: 0.45;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 85%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: multiply;
}

.glow-one {
  top: 6%;
  left: -8%;
  width: 43vw;
  height: 43vw;
  background: rgba(91, 141, 239, 0.3);
  animation: floatGlowOne 18s var(--ease) infinite alternate;
}

.glow-two {
  right: -7%;
  bottom: -14%;
  width: 35vw;
  height: 35vw;
  background: rgba(168, 137, 220, 0.2);
  animation: floatGlowTwo 22s var(--ease) infinite alternate;
}

@keyframes floatGlowOne {
  to { transform: translate(13vw, 8vh) scale(1.1); }
}

@keyframes floatGlowTwo {
  to { transform: translate(-10vw, -8vh) scale(1.2); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(55px, 7vw, 110px);
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 52px;
}

.hero-copy {
  max-width: 800px;
  padding-block: 30px;
}

.hero-kicker {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding-bottom: 0;
  font-family: var(--display);
  font-size: clamp(4.7rem, 7.2vw, 7.7rem);
  font-weight: 720;
  line-height: 0.84;
  letter-spacing: -0.075em;
  white-space: normal;
}

.hero-visual {
  display: flex;
  position: relative;
  z-index: 4;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.portrait-card {
  position: relative;
  width: clamp(340px, 29vw, 460px);
  height: auto;
  aspect-ratio: 0.8;
  overflow: visible;
  border-radius: 24px;
  background: linear-gradient(145deg, #f1efed 0%, #dfdddb 100%);
  box-shadow: 0 35px 70px rgba(24, 23, 22, 0.14);
  isolation: isolate;
  transition: transform 0.18s ease-out;
}

.portrait-aura {
  position: absolute;
  inset: 10% 12%;
  z-index: -1;
  border-radius: 50%;
  background: var(--coral);
  filter: blur(45px);
  opacity: 0.34;
}

.portrait-card > img {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) contrast(1.04);
}

.metric-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  min-width: 148px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 40px rgba(24, 23, 22, 0.12);
  backdrop-filter: blur(12px);
}

.metric-chip span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-chip strong {
  margin-top: 3px;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
}

.metric-chip-top {
  top: 14%;
  right: -18%;
}

.metric-chip-bottom {
  bottom: 14%;
  left: -18%;
}

.hero-copy .micro-label {
  display: block;
  margin-bottom: 13px;
}

.hero-positioning {
  display: block;
  margin-top: 28px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.1;
}

.hero-lead {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.65;
}

.hero-copy .availability {
  justify-content: flex-start;
  width: max-content;
  margin-top: 30px;
}

.availability {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 600;
}

.availability i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(91, 141, 239, 0.45);
  animation: availablePulse 2s infinite;
}

@keyframes availablePulse {
  70% { box-shadow: 0 0 0 8px rgba(91, 141, 239, 0); }
  100% { box-shadow: 0 0 0 0 rgba(91, 141, 239, 0); }
}

.discipline-marquee {
  overflow: hidden;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #fff 0%, #f5f8ff 48%, #fff 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  min-width: 100vw;
}

.marquee-track span,
.marquee-track b {
  display: inline-block;
  padding-inline: 24px;
  background-image: linear-gradient(90deg, #1f5bd5 0%, #7659d9 24%, #17a36b 48%, #d79508 72%, #5b8def 100%);
  background-position: 0% 50%;
  background-size: 320% 100%;
  color: transparent;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 520;
  white-space: nowrap;
  -webkit-background-clip: text;
  background-clip: text;
  animation: marqueeGradient 8s linear infinite;
}

.marquee-track b {
  font-weight: 800;
}

.marquee-group > :nth-child(4n + 2) { animation-delay: -1.5s; }
.marquee-group > :nth-child(4n + 3) { animation-delay: -3s; }
.marquee-group > :nth-child(4n + 4) { animation-delay: -4.5s; }

@keyframes marqueeGradient {
  to { background-position: 100% 50%; }
}

@keyframes marquee {
  to { transform: translateX(-25%); }
}

.section-space {
  padding-block: clamp(96px, 10vw, 160px);
}

.section-index {
  display: inline-block;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-index.light {
  color: rgba(255, 255, 255, 0.56);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(270px, 0.8fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 64px;
}

.section-head h2,
.services-head h2,
.method h2,
.contact h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.section-head p {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.case-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.case-card:hover,
.case-card:focus-visible {
  z-index: 2;
  outline: none;
  box-shadow: 0 28px 70px rgba(24, 23, 22, 0.16);
  transform: translateY(-7px);
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.18), transparent 38%);
  pointer-events: none;
}

.case-commerce {
  grid-column: 1 / -1;
  min-height: 610px;
  background: linear-gradient(135deg, #c7aaf0 0%, #a789db 55%, #8566bd 100%);
}

.case-growth {
  background: #1b1918;
  color: #fff;
}

.case-automation {
  background: linear-gradient(145deg, #9ce2bc, #65be91);
}

.case-copy {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 3;
  color: #fff;
}

.case-automation .case-copy {
  bottom: 24px;
  color: var(--ink);
}

.case-automation .case-copy h3 {
  max-width: 520px;
  font-size: clamp(2.05rem, 3vw, 3rem);
}

.case-copy > span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.case-copy h3 {
  max-width: 650px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 670;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 15px;
}

.case-tags em {
  padding: 5px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.case-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 5;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 1.25rem;
  pointer-events: none;
  user-select: none;
  transition: transform 0.4s var(--ease), background 0.25s ease;
}

.case-card:hover .case-arrow {
  transform: rotate(45deg);
}

.commerce-visual {
  position: absolute;
  top: 54px;
  left: 50%;
  width: min(70%, 760px);
  height: 430px;
  transform: translateX(-50%);
}

.browser-mockup {
  position: absolute;
  inset: 0 80px 28px;
  overflow: hidden;
  border: 8px solid #272324;
  border-radius: 20px;
  background: #f7f5f3;
  box-shadow: 0 32px 50px rgba(45, 28, 67, 0.32);
  transform: perspective(1100px) rotateX(4deg) rotateY(-8deg) rotateZ(-1deg);
  transition: transform 0.7s var(--ease);
}

.case-commerce:hover .browser-mockup {
  transform: perspective(1100px) rotateX(0) rotateY(-2deg) rotateZ(0) translateY(-6px);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 34px;
  padding-inline: 12px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.browser-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9c4c1;
}

.browser-body {
  position: relative;
  height: calc(100% - 34px);
  padding: 46px;
  color: var(--ink);
}

.browser-body > span,
.orders-card span,
.growth-visual span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.browser-body > strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.chart {
  position: absolute;
  right: 42px;
  bottom: 42px;
  left: 42px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 115px;
  border-bottom: 1px solid rgba(24, 23, 22, 0.18);
}

.chart i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: var(--coral);
  transform-origin: bottom;
  animation: bars 1.2s var(--ease) both;
}

.chart i:nth-child(1) { height: 24%; }
.chart i:nth-child(2) { height: 33%; }
.chart i:nth-child(3) { height: 48%; }
.chart i:nth-child(4) { height: 58%; }
.chart i:nth-child(5) { height: 78%; }
.chart i:nth-child(6) { height: 100%; }

@keyframes bars {
  from { transform: scaleY(0); }
}

.orders-card {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: 168px;
  padding: 22px;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 42px rgba(24, 23, 22, 0.24);
}

.orders-card span {
  color: rgba(255, 255, 255, 0.58);
}

.orders-card strong {
  font-family: var(--display);
  font-size: 2.3rem;
  letter-spacing: -0.06em;
}

.growth-visual {
  position: absolute;
  top: 65px;
  right: 45px;
  left: 45px;
  height: 245px;
}

.growth-visual span {
  color: rgba(255, 255, 255, 0.52);
}

.growth-visual strong {
  display: block;
  margin-top: 12px;
  font-family: var(--display);
  font-size: clamp(5rem, 8vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: -0.09em;
}

.growth-line {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 70px;
  overflow: hidden;
}

.growth-line::before,
.growth-line::after,
.growth-line i {
  content: "";
  position: absolute;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
  transform-origin: left;
}

.growth-line::before {
  bottom: 12px;
  left: 0;
  width: 44%;
  transform: rotate(-9deg);
}

.growth-line i {
  bottom: 31px;
  left: 42%;
  width: 35%;
  transform: rotate(-17deg);
}

.growth-line::after {
  right: 0;
  bottom: 56px;
  width: 27%;
  transform: rotate(-7deg);
}

.automation-visual {
  position: absolute;
  top: 34px;
  right: 25px;
  left: 25px;
  height: 220px;
}

.automation-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 750;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 38px rgba(24, 23, 22, 0.22);
}

.automation-visual::before,
.automation-visual::after {
  content: "";
  position: absolute;
  inset: 18px 21%;
  border: 1px dashed rgba(24, 23, 22, 0.3);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.automation-visual::after {
  inset: 46px 31%;
  animation-direction: reverse;
  animation-duration: 12s;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.node {
  position: absolute;
  z-index: 2;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(24, 23, 22, 0.1);
  font-size: 0.7rem;
  font-weight: 700;
}

.node-one { top: 8px; left: 10%; }
.node-two { top: 68px; right: 2%; }
.node-three { top: 150px; left: 7%; }

.clients {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(91, 141, 239, 0.2), transparent 25%),
    linear-gradient(180deg, #fff 0%, #edf3ff 100%);
}

.clients-summary {
  display: grid;
  grid-template-columns: 190px 230px minmax(260px, 1fr);
  align-items: center;
  gap: 26px;
  margin-bottom: 18px;
  padding: 28px 34px;
  border-radius: 26px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 26px 65px rgba(24, 23, 22, 0.16);
}

.clients-summary > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.clients-summary strong {
  color: var(--coral);
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.5vw, 4.7rem);
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.clients-summary span {
  max-width: 90px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.61rem;
  font-weight: 750;
  line-height: 1.3;
  text-transform: uppercase;
}

.clients-summary > p {
  max-width: 460px;
  justify-self: end;
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 580;
  line-height: 1.3;
  text-align: right;
}

.client-groups {
  display: grid;
  gap: 18px;
}

.client-group {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(45px, 7vw, 100px);
  padding: clamp(32px, 4vw, 56px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(32, 54, 104, 0.07);
  backdrop-filter: blur(10px);
}

.client-group:nth-child(2) {
  background: rgba(220, 232, 255, 0.72);
}

.client-group-head {
  align-self: start;
}

.client-group-number {
  display: grid;
  width: 39px;
  height: 39px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 800;
}

.client-group-kicker {
  margin-bottom: 8px;
  color: var(--coral-deep);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.client-group-head h3 {
  max-width: 330px;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.client-group-count {
  display: inline-block;
  margin-top: 15px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(91, 141, 239, 0.14);
  color: var(--coral-deep);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-group-head > p:last-child {
  max-width: 370px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.62;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: center;
  gap: 28px 22px;
}

.client-logo-card {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.client-logo-visual {
  display: grid;
  width: 100%;
  height: 156px;
  place-items: center;
}

.client-logo-visual img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 136px;
  border-radius: 4px;
  object-fit: contain;
}

.client-logo-wide .client-logo-visual img {
  width: 100%;
  max-height: 92px;
}

.client-logo-card figcaption {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
}

.client-group:nth-child(2) .client-logo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 16px;
}

.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.about-portrait {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 14px;
}

.about-image-wrap {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.68;
  margin-bottom: 15px;
  border-radius: var(--radius-sm);
  background: var(--coral);
}

.about-image-wrap::after {
  content: "VB";
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.1em;
  pointer-events: none;
}

.about-image-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  object-fit: cover;
  object-position: center;
}

.about-portrait > span {
  font-weight: 700;
}

.about-portrait > small {
  color: var(--muted);
  font-size: 0.68rem;
}

.about-copy h2 {
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.06em;
}

.about-copy p {
  max-width: 720px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.text-link span {
  transition: transform 0.3s var(--ease);
}

.text-link:hover span {
  transform: translateX(5px);
}

.stats {
  border-block: 1px solid var(--line);
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid > div {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 32px;
  border-right: 1px solid var(--line);
}

.stats-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stats-grid strong {
  margin-top: auto;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.stats-grid small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.68rem;
}

.experience-list {
  border-top: 1px solid var(--line);
}

.experience-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1.4fr) minmax(190px, 0.55fr);
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease), background 0.35s ease;
}

.experience-row:hover {
  padding-inline: 20px;
  background: rgba(91, 141, 239, 0.08);
}

.experience-year,
.experience-row > strong {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.experience-row h3 {
  margin-bottom: 7px;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.experience-row p {
  max-width: 690px;
  color: var(--muted);
  font-size: 0.85rem;
}

.career-combined {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: start;
  gap: clamp(45px, 7vw, 90px);
}

.career-combined .experience-row {
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 12px 28px;
  padding-block: 25px;
}

.career-combined .experience-row > strong {
  grid-column: 2;
}

.career-combined .experience-row h3 {
  font-size: clamp(1.18rem, 1.65vw, 1.55rem);
}

.career-combined .experience-row p {
  font-size: 0.78rem;
}

.career-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  padding: clamp(28px, 3.5vw, 45px);
  border-radius: 27px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 28px 70px rgba(24, 23, 22, 0.18);
}

.career-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.career-sidebar > h3 {
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.career-education {
  margin-bottom: 28px;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.career-education li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.career-education strong {
  font-size: 0.72rem;
}

.career-education span {
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.61rem;
  white-space: nowrap;
}

.career-sidebar .tool-cloud {
  gap: 6px;
}

.career-sidebar .tool-cloud span {
  padding: 8px 10px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.58rem;
}

.services {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.services-head {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 0.55fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 62px;
}

.services-head .section-index {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.services-head p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.services-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 70px minmax(230px, 0.8fr) minmax(300px, 1.2fr) 210px;
  align-items: center;
  gap: 35px;
  min-height: 126px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: color 0.35s ease, padding 0.4s var(--ease);
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--row-accent, var(--coral));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.42s var(--ease);
}

.service-row:hover,
.service-row:focus-within {
  padding-inline: 18px;
  color: var(--ink);
}

.service-row:hover::before,
.service-row:focus-within::before {
  transform: scaleY(1);
}

.service-row > span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.65rem;
}

.service-row:hover > span,
.service-row:hover p {
  color: rgba(24, 23, 22, 0.62);
}

.service-row h3 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  font-weight: 590;
  line-height: 1;
  letter-spacing: -0.045em;
}

.service-row p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  transition: color 0.35s ease;
}

.service-tags {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-row:hover .service-tags {
  color: rgba(24, 23, 22, 0.58);
}

.service-preview {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 230px;
  height: 160px;
  padding: 18px;
  overflow: hidden;
  border-radius: 13px;
  background: var(--coral);
  color: var(--ink);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) rotate(-3deg) scale(0.82);
  transition: opacity 0.2s ease, transform 0.38s var(--ease), background-color 0.28s ease;
}

.service-preview.visible {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) rotate(-3deg) scale(1);
}

.service-preview > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-preview::before {
  content: "";
  position: absolute;
  top: -36px;
  right: -34px;
  width: 130px;
  height: 130px;
  border: 22px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.service-preview span {
  position: relative;
  z-index: 1;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-preview strong {
  position: relative;
  z-index: 1;
  margin-top: 3px;
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
}

.service-preview i {
  position: absolute;
  top: 12px;
  left: 14px;
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.method {
  background: var(--coral);
}

.method-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(55px, 9vw, 130px);
  margin-bottom: 58px;
}

.method h2 {
  max-width: 850px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 6.3rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.method-intro p {
  max-width: 520px;
  font-size: 0.9rem;
  line-height: 1.65;
}

.method-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  border-block: 1px solid rgba(24, 23, 22, 0.28);
}

.method-flow li {
  min-height: 260px;
  padding: 28px 25px 30px;
  border-left: 1px solid rgba(24, 23, 22, 0.22);
}

.method-flow li:first-child {
  padding-left: 0;
  border-left: 0;
}

.method-flow li > span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.59rem;
  font-weight: 800;
}

.method-flow small {
  display: block;
  margin-bottom: 7px;
  color: rgba(24, 23, 22, 0.56);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.method-flow h3 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.25vw, 2.15rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.045em;
}

.method-flow p {
  color: rgba(24, 23, 22, 0.64);
  font-size: 0.76rem;
  line-height: 1.55;
}

.button-dark {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 220px;
  margin-top: 32px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.button-dark:hover {
  box-shadow: 0 15px 34px rgba(24, 23, 22, 0.2);
  transform: translateY(-3px);
}

.tool-cloud {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 7px;
}

.tool-cloud span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}

.contact {
  background: var(--ink);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  gap: clamp(70px, 11vw, 160px);
}

.contact h2 {
  color: var(--coral);
  font-size: clamp(4.5rem, 8.5vw, 8.5rem);
}

.contact-copy > p {
  max-width: 500px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.9rem;
}

.contact-direct {
  display: inline-flex;
  flex-direction: column;
  margin-top: 48px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct strong {
  color: #fff;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  text-transform: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label > span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 0.85rem;
  transition: border-color 0.25s ease;
}

.contact-form input,
.contact-form select {
  height: 44px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 105px;
  padding-top: 10px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.27);
}

.contact-form select option {
  background: var(--ink);
  color: #fff;
}

.contact-form .field-invalid {
  border-color: #ff6b6b;
}

.form-error {
  min-height: 20px;
  color: #ff9f9f;
  font-size: 0.7rem;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 0.25s ease, transform 0.3s var(--ease);
}

.form-submit:hover {
  background: #74a2ff;
  transform: translateY(-2px);
}

.site-footer {
  background: #0f0e0e;
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.5fr 1.3fr 1fr;
  align-items: start;
  gap: 55px;
  padding-block: 55px;
}

.footer-brand {
  color: var(--coral);
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.1em;
}

.footer-top p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

.footer-top nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: 0.72rem;
}

.footer-top nav a:hover {
  color: var(--coral);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
}

.assistant-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 185;
  display: flex;
  min-width: 158px;
  height: 58px;
  align-items: center;
  gap: 10px;
  padding: 7px 15px 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 15px 34px rgba(15, 122, 61, 0.3);
  transition: visibility 0.2s ease, opacity 0.2s ease, transform 0.35s var(--ease), background 0.25s ease, box-shadow 0.25s ease;
}

.assistant-launcher::after {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border: 1px solid rgba(37, 211, 102, 0.5);
  border-radius: inherit;
  animation: whatsappLauncherPulse 2.4s ease-out infinite;
}

.assistant-launcher:hover {
  background: #1fbe5b;
  box-shadow: 0 19px 42px rgba(15, 122, 61, 0.4);
  transform: translateY(-4px);
}

.assistant-launcher[aria-expanded="true"] {
  background: #189f4a;
  transform: translateY(-2px);
}

.assistant-launcher-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.2rem;
}

.assistant-launcher-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.assistant-launcher-copy strong {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
}

.assistant-launcher-copy small {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.56rem;
  font-weight: 700;
}

.assistant-launcher-copy i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d7ffe6;
  box-shadow: 0 0 0 3px rgba(215, 255, 230, 0.17);
}

@keyframes whatsappLauncherPulse {
  0% { opacity: 0.75; transform: scale(0.96); }
  70%, 100% { opacity: 0; transform: scale(1.12); }
}

.assistant-panel {
  position: fixed;
  right: 24px;
  bottom: 94px;
  z-index: 180;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(390px, calc(100vw - 32px));
  height: min(620px, calc(100svh - 125px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 28px 85px rgba(18, 31, 65, 0.24);
  visibility: hidden;
  opacity: 0;
  transform: translateY(24px) scale(0.94);
  transform-origin: right bottom;
  transition: visibility 0.32s ease, opacity 0.32s ease, transform 0.42s var(--ease);
}

.assistant-panel[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.assistant-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 17px;
  background: var(--ink);
  color: #fff;
}

.assistant-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: #25d366;
  color: #fff;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
}

.assistant-header strong {
  display: block;
  font-family: var(--display);
  font-size: 0.93rem;
  line-height: 1.15;
}

.assistant-header > div:nth-child(2) > span {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.6rem;
}

.assistant-header > div:nth-child(2) > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2fc77a;
}

.assistant-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.25rem;
  transition: background 0.2s ease, transform 0.25s var(--ease);
}

.assistant-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(5deg);
}

.assistant-body {
  display: flex;
  min-height: 0;
  flex-direction: column;
  background:
    linear-gradient(90deg, rgba(24, 23, 22, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 100%;
}

.assistant-messages {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 18px 17px 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(24, 23, 22, 0.2) transparent;
}

.assistant-message {
  max-width: 86%;
  padding: 11px 13px;
  border-radius: 15px 15px 15px 4px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(24, 23, 22, 0.07);
  font-size: 0.76rem;
  line-height: 1.5;
  white-space: pre-line;
  animation: assistantMessageIn 0.35s var(--ease) both;
}

.assistant-message.user {
  align-self: flex-end;
  border-radius: 15px 15px 4px 15px;
  background: var(--coral);
  color: var(--ink);
  font-weight: 600;
}

.assistant-message.typing {
  display: flex;
  width: 54px;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.assistant-message.typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--muted);
  animation: assistantTyping 0.8s ease-in-out infinite alternate;
}

.assistant-message.typing i:nth-child(2) { animation-delay: 0.15s; }
.assistant-message.typing i:nth-child(3) { animation-delay: 0.3s; }

@keyframes assistantMessageIn {
  from { opacity: 0; transform: translateY(8px); }
}

@keyframes assistantTyping {
  to { opacity: 0.25; transform: translateY(-3px); }
}

.assistant-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-height: 185px;
  overflow-y: auto;
  padding: 8px 17px 16px;
}

.assistant-reply {
  padding: 9px 12px;
  border: 1px solid rgba(31, 91, 213, 0.28);
  border-radius: 999px;
  background: #fff;
  color: var(--coral-deep);
  font-size: 0.66rem;
  font-weight: 750;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease, transform 0.25s var(--ease);
}

.assistant-reply:hover,
.assistant-reply:focus-visible {
  outline: none;
  background: var(--coral);
  color: var(--ink);
  transform: translateY(-2px);
}

.assistant-reply.primary {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--ink);
}

.assistant-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 16px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.assistant-footer button,
.assistant-footer a {
  background: transparent;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
}

.assistant-footer a {
  color: #15964a;
}

.assistant-footer button:hover,
.assistant-footer a:hover {
  color: var(--ink);
}

.case-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 25px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.35s ease, opacity 0.35s ease;
}

.case-modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

.case-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 14, 13, 0.68);
  backdrop-filter: blur(9px);
}

.case-modal-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100svh - 50px);
  overflow: auto;
  padding: clamp(35px, 6vw, 68px);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
  transform: translateY(35px) scale(0.95);
  transition: transform 0.45s var(--ease);
}

.case-modal[aria-hidden="false"] .case-modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 1.4rem;
}

.modal-eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--coral-deep);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-modal-card h2 {
  max-width: 580px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.case-modal-card > p {
  margin-top: 22px;
  color: var(--muted);
}

.modal-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.modal-metrics div {
  padding: 20px;
  border-radius: 12px;
  background: var(--soft);
}

.modal-metrics strong {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.modal-metrics span {
  color: var(--muted);
  font-size: 0.64rem;
}

.case-modal-card ul {
  margin: 28px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.case-modal-card li {
  padding: 13px 0 13px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.case-modal-card li::before {
  content: "+";
  float: left;
  margin-left: -22px;
  color: var(--coral-deep);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.hero .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 42px, 980px);
  }

  .header-presence {
    display: none;
  }

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

  .main-nav {
    gap: 20px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 8.6vw, 6.5rem);
  }

  .portrait-card {
    width: min(39vw, 410px);
  }

  .metric-chip-top {
    right: 8px;
  }

  .section-head,
  .services-head {
    gap: 45px;
  }

  .service-row {
    grid-template-columns: 58px minmax(210px, 0.85fr) minmax(270px, 1.15fr);
  }

  .service-tags {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 55px;
  }

  .tool-cloud {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 34px);
    --header-h: 68px;
  }

  .menu-toggle {
    position: relative;
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 17px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 251, 0.97);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 0.25s ease, transform 0.35s var(--ease), visibility 0s linear;
    backdrop-filter: blur(18px);
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 1.3rem;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-contact {
    margin-top: 12px;
    border: 0;
    border-radius: 0;
    color: var(--coral-deep) !important;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 52px;
    min-height: auto;
    padding-top: calc(var(--header-h) + 55px);
    padding-bottom: 58px;
  }

  .hero-copy {
    max-width: 680px;
    padding-block: 0;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(4rem, 12.5vw, 6.2rem);
  }

  .hero-visual {
    justify-content: center;
  }

  .portrait-card {
    width: min(420px, 68vw);
  }

  .metric-chip-top {
    right: auto;
    left: -6%;
  }

  .metric-chip-bottom {
    left: -10%;
  }

  .hero-copy .availability {
    font-size: 0.82rem;
  }

  .section-head,
  .services-head {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .method-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .method-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-flow li:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .method-flow li:nth-child(n + 3) {
    border-top: 1px solid rgba(24, 23, 22, 0.22);
  }

  .career-combined {
    grid-template-columns: 1fr;
  }

  .career-sidebar {
    position: static;
  }

  .section-head p,
  .services-head p {
    max-width: 560px;
  }

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

  .case-commerce {
    grid-column: auto;
    min-height: 520px;
  }

  .case-growth,
  .case-automation {
    min-height: 440px;
  }

  .commerce-visual {
    top: 65px;
    width: 92%;
    height: 330px;
  }

  .browser-mockup {
    inset: 0 45px 22px;
  }

  .browser-body {
    padding: 30px;
  }

  .chart {
    right: 28px;
    bottom: 28px;
    left: 28px;
    height: 80px;
  }

  .orders-card {
    width: 135px;
    padding: 16px;
  }

  .orders-card strong {
    font-size: 1.7rem;
  }

  .clients-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clients-summary > p {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    justify-self: start;
    text-align: left;
  }

  .client-group {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .client-group-head {
    position: static;
  }

  .client-group-head > p:last-child {
    max-width: 600px;
  }

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

  .about-portrait {
    width: min(450px, 100%);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .stats-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .experience-row {
    grid-template-columns: 120px 1fr;
  }

  .experience-row > strong {
    grid-column: 2;
  }

  .service-row {
    grid-template-columns: 48px 1fr;
    gap: 18px;
    min-height: 0;
    padding-block: 26px;
  }

  .service-row p {
    grid-column: 2;
  }

  .service-row:hover {
    padding-inline: 12px;
  }

  .service-row.is-scroll-active {
    padding-inline: 12px;
    color: var(--ink);
  }

  .service-row.is-scroll-active::before {
    transform: scaleY(1);
  }

  .service-row.is-scroll-active > span,
  .service-row.is-scroll-active p {
    color: rgba(24, 23, 22, 0.62);
  }

  .service-preview {
    top: calc(var(--header-h) + 10px);
    left: 50%;
    z-index: 95;
    display: grid;
    width: min(calc(100vw - 34px), 360px);
    height: 72px;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px 16px 10px 10px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
    transform: translate3d(-50%, -12px, 0) scale(0.96);
    backdrop-filter: blur(14px);
  }

  .service-preview.visible {
    transform: translate3d(-50%, 0, 0) scale(1);
  }

  .service-preview::before {
    top: -58px;
    right: -28px;
    width: 112px;
    height: 112px;
    border-width: 15px;
    opacity: 0.55;
  }

  .service-preview i {
    position: relative;
    top: auto;
    left: auto;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
  }

  .service-preview span {
    font-size: 0.52rem;
  }

  .service-preview strong {
    max-width: 100%;
    margin-top: 2px;
    overflow: hidden;
    font-size: 1.08rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .tool-cloud {
    grid-column: auto;
  }

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

  .footer-top nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .brand span {
    display: none;
  }

  .hero-inner {
    gap: 40px;
    min-height: auto;
    padding-top: calc(var(--header-h) + 38px);
    padding-bottom: 46px;
  }

  .hero-kicker {
    margin-bottom: 22px;
    font-size: 0.58rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.35rem, 15.4vw, 5.1rem);
    line-height: 0.84;
  }

  .hero-positioning {
    margin-top: 22px;
    font-size: 1.28rem;
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 0.9rem;
  }

  .portrait-card {
    width: min(82vw, 340px);
  }

  .metric-chip {
    min-width: 126px;
    padding: 10px 12px;
  }

  .metric-chip strong {
    font-size: 1.05rem;
  }

  .metric-chip-top {
    top: 10%;
    right: auto;
    left: -8px;
  }

  .metric-chip-bottom {
    bottom: 9%;
    left: 8px;
  }

  .hero-copy .availability {
    margin-top: 24px;
  }

  .section-space {
    padding-block: 82px;
  }

  .section-head {
    margin-bottom: 42px;
  }

  .section-head h2,
  .services-head h2,
  .method h2,
  .contact h2 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .method-head {
    margin-bottom: 38px;
  }

  .method-flow {
    grid-template-columns: 1fr;
  }

  .method-flow li,
  .method-flow li:nth-child(odd) {
    min-height: 0;
    padding: 24px 0;
    border-top: 1px solid rgba(24, 23, 22, 0.22);
    border-left: 0;
  }

  .method-flow li:first-child {
    border-top: 0;
  }

  .method-flow li > span {
    margin-bottom: 22px;
  }

  .career-combined .experience-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .career-combined .experience-row > strong {
    grid-column: auto;
  }

  .career-sidebar {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .case-card,
  .case-commerce,
  .case-growth,
  .case-automation {
    min-height: 430px;
  }

  .case-copy {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .case-copy h3 {
    font-size: 2.1rem;
  }

  .case-automation .case-copy h3 {
    max-width: 100%;
    font-size: clamp(1.35rem, 6.7vw, 1.65rem);
    line-height: 0.96;
    white-space: nowrap;
  }

  .case-automation .case-copy {
    bottom: 20px;
  }

  .automation-visual {
    top: 30px;
    height: 205px;
  }

  .automation-core {
    width: 76px;
    height: 76px;
    font-size: 1.55rem;
  }

  .node {
    padding: 8px 11px;
    font-size: 0.62rem;
  }

  .node-one { top: 6px; left: 7%; }
  .node-two { top: 60px; right: 0; }
  .node-three { top: 136px; left: 5%; }

  .commerce-visual {
    top: 78px;
    height: 270px;
  }

  .browser-mockup {
    inset: 0 20px 18px;
    border-width: 5px;
  }

  .browser-body > strong {
    font-size: 3.8rem;
  }

  .orders-card {
    display: none;
  }

  .growth-visual {
    right: 25px;
    left: 25px;
  }

  .growth-visual strong {
    font-size: 5rem;
  }

  .clients-summary {
    gap: 20px 12px;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .clients-summary > div {
    align-items: flex-end;
    gap: 7px;
  }

  .clients-summary strong {
    font-size: 2.8rem;
  }

  .clients-summary span {
    max-width: 82px;
    font-size: 0.53rem;
  }

  .clients-summary > p {
    margin-top: 2px;
    font-size: 0.95rem;
  }

  .client-group {
    gap: 28px;
    padding: 30px 18px;
    border-radius: 22px;
  }

  .client-logo-grid,
  .client-group:first-child .client-logo-grid,
  .client-group:nth-child(2) .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
  }

  .client-logo-wide {
    grid-column: 1 / -1;
  }

  .client-logo-visual {
    height: 126px;
  }

  .client-logo-wide .client-logo-visual {
    height: 110px;
  }

  .client-logo-visual img {
    max-height: 112px;
  }

  .client-logo-wide .client-logo-visual img {
    width: min(100%, 260px);
    max-height: 96px;
  }

  .client-logo-card figcaption {
    margin-top: 7px;
    font-size: 0.67rem;
  }

  .client-group:first-child .client-logo-card:last-child,
  .client-group:nth-child(3) .client-logo-card:last-child {
    grid-column: 1 / -1;
    width: calc((100% - 12px) / 2);
    justify-self: center;
  }

  .about-grid {
    gap: 55px;
  }

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

  .stats-grid > div,
  .stats-grid > div:first-child,
  .stats-grid > div:nth-child(3) {
    min-height: 145px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .stats-grid > div:last-child {
    border-bottom: 0;
  }

  .experience-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .experience-row > strong {
    grid-column: auto;
  }

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

  .service-row h3 {
    font-size: 1.6rem;
  }

  .contact-grid {
    gap: 60px;
  }

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

  .contact-form {
    padding: 24px 18px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top nav {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }

  .assistant-launcher {
    right: 15px;
    bottom: 15px;
  }

  .contact-in-view .assistant-launcher:not([aria-expanded="true"]) {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
  }

  .assistant-panel {
    right: 14px;
    bottom: 84px;
    width: calc(100vw - 28px);
    height: min(650px, calc(100svh - 104px));
    border-radius: 20px;
  }

  .assistant-replies {
    max-height: 205px;
  }

  .modal-metrics {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
