@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800&family=IBM+Plex+Mono:wght@500;600;700&display=swap');:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #f6f7fb;
  background: #08090d;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html,
body,
#root {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  cursor: default;
}

button,
a {
  font: inherit;
}

img,
svg {
  display: block;
}


@font-face {
  font-family: 'Snaga Uni Display';
  src: url('../fonts/SnagaUniDisplay-Extrabold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --gray: #202020;
  color: var(--white);
  background: var(--black);
  font-family: Archivo, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--white);
  background: var(--black);
  overflow-x: clip;
}

a {
  color: inherit;
}

.site-root {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100dvh;
  opacity: 0.46;
  pointer-events: none;
}

.site-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, transparent 0, rgba(0, 0, 0, 0.06) 56%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12));
}

.site-content {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.86);
  border-bottom: 1px solid var(--gray);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.topbar > *,
.header-actions,
.topbar nav {
  min-width: 0;
}

.mark,
.topbar a {
  color: var(--white);
  text-decoration: none;
}

.mark {
  font-weight: 800;
  letter-spacing: -0.055em;
  font-size: 22px;
}

.nav-role {
  margin: 0;
  color: var(--white);
  opacity: 0.56;
  font: 700 11px/1 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.topbar nav,
.language-switch {
  display: flex;
  align-items: center;
  gap: 2px;
}

.topbar nav a,
.language-switch button {
  min-height: 34px;
  padding: 9px 10px;
  color: var(--white);
  border: 0;
  background: transparent;
  font: 700 12px/1 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  opacity: 0.66;
}

.language-switch button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.topbar nav a:hover,
.topbar nav a:focus-visible,
.language-switch button:hover,
.language-switch button:focus-visible,
.language-switch button.is-active {
  opacity: 1;
  background: var(--gray);
  outline: 1px solid var(--white);
  outline-offset: -1px;
}

.flag-icon {
  width: 22px;
  height: 16px;
  display: block;
  border: 1px solid var(--gray);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 16px;
  align-items: stretch;
  padding: 20px 0 60px;
}

.hero-main,
.workflow-card,
.case-file,
.capability,
.experience-list article,
.contact,
.work-row {
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--gray);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.hero-main {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4.5vw, 54px);
}

.status,
.label,
.case-topline,
.work-row small,
.experience-list small {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 11px;
}

.status,
.label {
  margin: 0;
  opacity: 0.68;
}

.hero h1 {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--white);
  font-size: clamp(48px, 6.4vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.hero h1 span {
  display: inline-block;
  margin: 0 0.04em;
  padding: 0 0.09em 0.05em;
  color: var(--black);
  background: var(--white);
}

.hero-line {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--white);
  opacity: 0.82;
  font-size: clamp(18px, 1.85vw, 23px);
  line-height: 1.3;
  letter-spacing: -0.026em;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  color: var(--white);
  border: 1px solid var(--gray);
  background: var(--black);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.025em;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--white);
  outline: 1px solid var(--white);
  outline-offset: 3px;
  transform: translateY(-1px);
}

.button-primary {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--white);
  background: var(--black);
}

.workflow-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.workflow-card h2 {
  margin: 14px 0 0;
  max-width: 285px;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.compact-note {
  margin: 18px 0 0;
  color: var(--white);
  opacity: 0.74;
  line-height: 1.42;
  font-size: 14px;
}

.focus-list {
  display: grid;
  gap: 1px;
  margin: auto 0 18px;
  border: 1px solid var(--gray);
  background: var(--gray);
}

.focus-list span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 12px 13px;
  background: var(--black);
  color: var(--white);
  font: 800 17px/1 Archivo, sans-serif;
  letter-spacing: -0.045em;
}

.focus-list span:nth-child(2) {
  color: var(--black);
  background: var(--white);
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 0;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gray);
  background: var(--black);
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--white);
  outline: 1px solid var(--white);
  outline-offset: 3px;
}

.page-flow {
  display: grid;
  gap: 72px;
  padding: 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 64px;
  border: 1px solid var(--gray);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.proof-strip > div {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 18px 22px;
}

.proof-strip > div + div {
  border-left: 1px solid var(--gray);
}

.proof-strip strong {
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.proof-strip span {
  max-width: 220px;
  font: 700 11px/1.3 'IBM Plex Mono', ui-monospace, monospace;
  text-transform: uppercase;
  opacity: 0.62;
}

.services-section {
  padding: 20px 0 82px;
}

.services-header {
  max-width: 760px;
  margin-bottom: 24px;
}

.services-header h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.services-header p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.4;
  opacity: 0.7;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr;
  gap: 1px;
  border: 1px solid var(--gray);
  background: var(--gray);
}

.service-offer {
  display: flex;
  flex-direction: column;
  padding: 24px;
  min-height: 350px;
  background: rgba(0, 0, 0, 0.94);
}

.service-offer.is-primary {
  grid-row: auto;
  min-height: 350px;
  padding: 24px;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: clamp(52px, 5vw, 72px);
  border: 1px solid var(--gray);
}

.service-offer h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(27px, 3.2vw, 43px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.service-offer.is-primary h3 {
  font-size: clamp(34px, 3.6vw, 48px);
}

.service-offer p {
  max-width: 530px;
  margin: 14px 0 0;
  line-height: 1.42;
  opacity: 0.7;
}

.service-offer ul,
.featured-role ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-offer li,
.featured-role li {
  padding: 7px 8px;
  border: 1px solid var(--gray);
  font: 700 10px/1 'IBM Plex Mono', ui-monospace, monospace;
  text-transform: uppercase;
  opacity: 0.78;
}

.featured-case {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 1px;
  margin-bottom: 8px;
  padding: 1px;
  border: 1px solid var(--gray);
  background: var(--gray);
}

.featured-media,
.featured-content {
  background: rgba(0, 0, 0, 0.94);
}

.featured-media {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  gap: 10px;
  padding: 14px;
  overflow: hidden;
}

.thedrops-editorial-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 10px;
}

.thedrops-editorial-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border: 1px solid #353535;
}

.featured-media-note {
  margin: 0;
  color: var(--white);
  font: 700 10px/1.35 'IBM Plex Mono', ui-monospace, monospace;
  text-transform: uppercase;
  opacity: 0.58;
}

.featured-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 3vw, 36px);
}

.featured-content h2 {
  max-width: 560px;
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.featured-summary {
  max-width: 570px;
  margin: 16px 0 0;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.42;
  opacity: 0.72;
}

.featured-stats {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 22px 0 0;
  border-block: 1px solid var(--gray);
}

.featured-stats > div {
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 82px;
  padding: 14px 12px;
}

.featured-stats > div + div {
  border-left: 1px solid var(--gray);
}

.featured-stats strong {
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.featured-stats span,
.featured-role > strong {
  font: 700 10px/1.25 'IBM Plex Mono', ui-monospace, monospace;
  text-transform: uppercase;
  opacity: 0.62;
}

.featured-role {
  margin: 20px 0 22px;
}

.featured-role ul {
  margin-top: 12px;
}

.featured-content .button {
  margin-top: auto;
}

.section-header {
  display: block;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray);
}

.section-header h2,
.contact h2 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(34px, 4.7vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.workflow-section {
  position: relative;
  min-height: 230vh;
  padding: 72px 0 220px;
}

.workflow-header {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray);
}

.workflow-header h2 {
  grid-column: 2;
  margin: 0;
  max-width: 780px;
  font-size: clamp(34px, 4.7vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.workflow-header p:not(.label) {
  grid-column: 2;
  max-width: 650px;
  margin: 0;
  color: var(--white);
  opacity: 0.72;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.workflow-progress-meta {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.workflow-progress-meta strong {
  padding: 7px 8px;
  color: var(--black);
  background: var(--white);
}

.workflow-progress-meta span {
  opacity: 0.64;
}

.workflow-closing {
  position: absolute;
  right: 0;
  bottom: 48px;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--gray);
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.workflow-closing h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(27px, 3.2vw, 42px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.workflow-closing .button {
  flex: 0 0 auto;
}

.workflow-board {
  position: sticky;
  top: 96px;
  overflow: hidden;
  margin-top: 18px;
  background:
    radial-gradient(circle at calc(var(--workflow-progress, 0) * 100%) 40%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(var(--gray) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray) 1px, transparent 1px),
    var(--black);
  background-size: auto, 42px 42px, 42px 42px, auto;
}

.workflow-board-inner {
  position: relative;
  width: 100%;
  height: clamp(480px, calc(100vh - 140px), 600px);
}

.node-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.connector-guide {
  fill: none;
  stroke: #2f2f2f;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 7 9;
  opacity: 0.74;
}

.connector {
  fill: none;
  stroke: #4f4f4f;
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--connector-progress, 0));
  opacity: calc(0.24 + (var(--connector-progress, 0) * 0.76));
  filter: drop-shadow(0 0 calc(var(--connector-progress, 0) * 10px) rgba(255, 255, 255, 0.24));
  transition:
    stroke 220ms ease,
    opacity 160ms linear,
    filter 220ms ease;
}

.connector.is-drawing {
  stroke: #adadad;
}

.connector.is-active {
  stroke: var(--white);
}

.connector-runner {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #050505;
  border: 1px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.24);
  opacity: calc(0.72 + (var(--runner-progress, 0) * 0.28));
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(var(--runner-angle));
  transform-origin: center;
  will-change: left, top, transform;
}

.connector-runner svg {
  display: block;
}

.workflow-node {
  position: absolute;
  left: var(--node-x);
  top: var(--node-y);
  width: clamp(148px, 15vw, 178px);
  min-height: 150px;
  padding: 13px;
  color: var(--white);
  background: #080808;
  border: 1px solid #343434;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36), 0 0 calc(var(--node-progress, 0) * 34px) rgba(255, 255, 255, 0.08);
  opacity: calc(0.46 + (var(--node-progress, 0) * 0.54));
  transform: translate(-50%, calc(18px - (var(--node-progress, 0) * 18px))) scale(calc(0.96 + (var(--node-progress, 0) * 0.04)));
  transition:
    opacity 180ms linear,
    border-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.node-port {
  position: absolute;
  top: 66px;
  z-index: 3;
  width: 10px;
  height: 10px;
  border: 2px solid #4d4d4d;
  border-radius: 999px;
  background: var(--black);
  pointer-events: none;
}

.node-port-in {
  left: -7px;
}

.node-port-out {
  right: -7px;
}

.workflow-node.is-active {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.workflow-node.is-active .node-port {
  border-color: var(--black);
  background: var(--white);
}

.workflow-node.is-current {
  box-shadow: 0 0 0 2px var(--white), 0 24px 70px rgba(255, 255, 255, 0.12);
}

.node-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.node-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border: 1px solid #4d4d4d;
  border-radius: 10px;
}

.workflow-node.is-active .node-icon {
  color: var(--black);
  background: var(--white);
  border-color: var(--black);
}

.node-topline small,
.node-meta {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 10px;
}

.node-topline small {
  opacity: 0.62;
}

.workflow-node h3 {
  margin: 0;
  font-size: 22px;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.workflow-node p {
  margin: 10px 0 16px;
  color: currentColor;
  opacity: 0.68;
  font-size: 13px;
  line-height: 1.28;
}

.node-meta {
  display: inline-flex;
  padding: 6px 7px;
  border: 1px solid currentColor;
  opacity: 0.72;
}

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

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

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--gray);
  border: 1px solid var(--gray);
}

.case-file {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  overflow: hidden;
  transition:
    background 260ms ease,
    color 260ms ease,
    transform 260ms ease;
}

.case-file::after {
  content: '';
  position: absolute;
  inset: auto 18px 18px auto;
  width: 28px;
  height: 28px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0;
  transform: translate(8px, 8px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.case-file:hover,
.case-file:focus-within {
  color: var(--black);
  background: var(--white);
  transform: translateY(-2px);
}

.case-file:hover::after,
.case-file:focus-within::after {
  opacity: 0.32;
  transform: translate(0, 0);
}

.case-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  opacity: 0.78;
}

.case-topline strong {
  display: inline-flex;
  align-items: center;
  padding: 5px 7px;
  color: currentColor;
  border: 1px solid currentColor;
  white-space: nowrap;
}

.case-file h3 {
  margin: auto 0 0;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.case-file p {
  max-width: 310px;
  margin: 12px 0 0;
  color: var(--white);
  opacity: 0.76;
  line-height: 1.35;
  font-size: 14px;
}

.case-file ul,
.capability ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.case-file li,
.capability li {
  padding: 7px 8px;
  border: 1px solid var(--gray);
  font: 700 10px/1 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  opacity: 0.82;
}

.work-list {
  display: grid;
  border-top: 1px solid var(--gray);
}

.work-row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(180px, 0.7fr) 34px;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 18px 14px;
  border-width: 0 0 1px;
  color: var(--white);
  text-decoration: none;
  transition:
    background 220ms ease,
    color 220ms ease,
    padding 220ms ease;
}

.work-row span {
  display: block;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.work-desc {
  max-width: 520px;
  margin: 6px 0 0;
  color: currentColor;
  opacity: 0.58;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.work-row small {
  justify-self: end;
  padding: 7px 8px;
  border: 1px solid var(--gray);
  opacity: 0.72;
}

.work-row svg {
  justify-self: end;
  opacity: 0.64;
  transition: transform 220ms ease, opacity 220ms ease;
}

.work-row:hover,
.work-row:focus-visible {
  padding-left: 20px;
  background: var(--white);
  color: var(--black);
  outline: none;
}

.work-row:hover .work-desc,
.work-row:focus-visible .work-desc {
  opacity: 0.76;
}

.work-row:hover small,
.work-row:focus-visible small {
  border-color: currentColor;
  opacity: 0.88;
}

.work-row:hover svg,
.work-row:focus-visible svg {
  opacity: 1;
  transform: translate(3px, -3px);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--gray);
  border: 1px solid var(--gray);
}

.capability {
  min-height: 210px;
  padding: 18px;
}

.capability h3 {
  margin: 0;
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.experience-list {
  display: grid;
  gap: 1px;
  background: var(--gray);
  border: 1px solid var(--gray);
}

.experience-list article {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 130px;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
}

.experience-list strong {
  font-size: 18px;
  letter-spacing: -0.04em;
}

.experience-list span {
  opacity: 0.76;
}

.experience-list small {
  text-align: right;
  opacity: 0.64;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin: 78px 0 32px;
  padding: clamp(24px, 4vw, 38px);
}

.contact-actions {
  justify-content: end;
  margin-top: 0;
}

@media (max-width: 980px) {
  .topbar,
  .hero,
  .contact,
  .section-header,
  .workflow-header {
    grid-template-columns: 1fr;
  }

  .workflow-header h2,
  .workflow-header p:not(.label),
  .workflow-progress-meta {
    grid-column: 1;
  }

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

  .service-offer,
  .service-offer.is-primary {
    grid-row: auto;
    min-height: 280px;
  }

  .service-icon {
    margin-bottom: 40px;
  }

  .featured-media {
    min-height: 320px;
  }

  .workflow-closing {
    align-items: start;
  }

  .workflow-board {
    top: 96px;
  }

  .topbar nav,
  .header-actions {
    justify-content: start;
  }

  .header-actions {
    flex-wrap: wrap;
  }

  .hero-main,
  .workflow-card {
    min-height: auto;
  }

  .workflow-card {
    gap: 18px;
  }

  .focus-list {
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
  }

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

  .work-row,
  .experience-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .work-row {
    padding: 16px 0;
  }

  .work-row:hover,
  .work-row:focus-visible {
    padding-left: 12px;
  }

  .work-row small,
  .work-row svg {
    justify-self: start;
  }

  .work-desc {
    max-width: none;
  }

  .experience-list small {
    text-align: left;
  }

  .contact-actions {
    justify-content: start;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(1120px, calc(100% - 24px));
  }

  .topbar {
    position: static;
    gap: 12px;
    padding: 14px 0 12px;
  }

  .mark {
    font-size: 21px;
  }

  .nav-role {
    display: none;
  }

  .header-actions {
    align-items: stretch;
    gap: 8px;
  }

  .language-switch {
    align-self: start;
  }

  .topbar nav,
  .header-actions {
    width: 100%;
  }

  .topbar nav {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 3px;
    scrollbar-width: none;
  }

  .topbar nav::-webkit-scrollbar {
    display: none;
  }

  .topbar nav a,
  .language-switch button {
    min-height: 36px;
    padding: 10px 11px;
    white-space: nowrap;
  }

  .hero {
    padding-top: 10px;
    padding-bottom: 34px;
    gap: 10px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    margin-bottom: 44px;
  }

  .proof-strip > div {
    min-height: 78px;
    padding: 15px 18px;
  }

  .proof-strip > div + div {
    border-top: 1px solid var(--gray);
    border-left: 0;
  }

  .services-section {
    padding: 8px 0 52px;
  }

  .services-header h2 {
    font-size: clamp(34px, 11.4vw, 48px);
    letter-spacing: -0.052em;
  }

  .services-grid {
    display: grid;
    grid-template-rows: auto;
    gap: 8px;
    border: 0;
    background: transparent;
  }

  .service-offer,
  .service-offer.is-primary {
    min-height: auto;
    padding: 20px 18px;
    border: 1px solid var(--gray);
  }

  .service-icon {
    margin-bottom: 24px;
  }

  .service-offer h3,
  .service-offer.is-primary h3 {
    margin-top: 0;
    font-size: clamp(29px, 9.4vw, 40px);
  }

  .featured-case {
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .featured-media,
  .featured-content {
    border: 1px solid var(--gray);
  }

  .featured-media {
    min-height: 260px;
    grid-template-rows: minmax(220px, 1fr) auto;
    padding: 10px;
  }

  .thedrops-editorial-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  }

  .featured-content {
    padding: 22px 18px;
  }

  .featured-content h2 {
    font-size: clamp(34px, 11vw, 47px);
    letter-spacing: -0.052em;
  }

  .featured-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-stats > div {
    min-height: 74px;
    padding: 10px 8px;
  }

  .featured-stats > div + div {
    border-top: 0;
    border-left: 1px solid var(--gray);
  }

  .hero-main {
    min-height: auto;
    padding: 24px 18px 22px;
  }

  .hero h1 {
    max-width: 100%;
    margin-top: 18px;
    font-size: clamp(42px, 13.5vw, 58px);
    line-height: 0.92;
    letter-spacing: -0.065em;
  }

  .hero h1 span {
    margin-left: 0;
    margin-right: 0.03em;
    padding-inline: 0.07em;
  }

  .hero-line {
    margin-top: 18px;
    font-size: clamp(17px, 5.3vw, 21px);
    line-height: 1.28;
    letter-spacing: -0.018em;
  }

  .hero-actions,
  .contact-actions {
    gap: 8px;
    margin-top: 22px;
  }

  .button {
    min-height: 44px;
    padding: 12px 14px;
  }

  .workflow-card {
    min-height: auto;
    gap: 18px;
    padding: 18px;
  }

  .workflow-card h2 {
    max-width: 100%;
    font-size: clamp(30px, 9vw, 36px);
    letter-spacing: -0.048em;
  }

  .compact-note {
    max-width: 34rem;
  }

  .workflow-section {
    min-height: auto;
    padding: 32px 0 48px;
  }

  .workflow-header {
    position: relative;
    top: auto;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 14px;
  }

  .workflow-header h2,
  .section-header h2,
  .contact h2 {
    font-size: clamp(34px, 11.4vw, 48px);
    line-height: 0.98;
    letter-spacing: -0.052em;
  }

  .workflow-header p:not(.label) {
    font-size: 15px;
    line-height: 1.36;
    letter-spacing: -0.01em;
  }

  .workflow-board {
    position: relative;
    top: auto;
    overflow: visible;
    margin-top: 12px;
    background:
      linear-gradient(var(--gray) 1px, transparent 1px),
      linear-gradient(90deg, var(--gray) 1px, transparent 1px),
      var(--black);
    background-size: 32px 32px, 32px 32px, auto;
  }

  .workflow-board-inner {
    height: auto;
    display: grid;
    gap: 10px;
    padding: 12px;
  }

  .node-connectors,
  .connector-runner {
    display: none;
  }

  .workflow-node {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: auto;
    transform: none !important;
    opacity: 1;
    border-radius: 0;
    box-shadow: none;
  }

  .node-port {
    display: none;
  }

  .workflow-closing {
    position: static;
    display: grid;
    gap: 18px;
    margin-top: 12px;
    padding: 18px;
  }

  .workflow-closing .button {
    justify-self: start;
  }

  .workflow-node::before,
  .workflow-node::after {
    display: none;
  }

  .node-topline {
    margin-bottom: 14px;
  }

  .workflow-node h3 {
    font-size: 24px;
    line-height: 1;
  }

  .workflow-node p {
    max-width: 24rem;
  }

  .section-header {
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 14px;
  }

  .hero-main,
  .workflow-card,
  .case-file,
  .capability,
  .contact {
    padding: 18px;
  }

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

  .case-grid,
  .capability-grid {
    gap: 8px;
    background: transparent;
    border: 0;
  }

  .case-file,
  .capability {
    min-height: auto;
  }

  .case-file {
    gap: 14px;
  }

  .case-file h3 {
    margin-top: 24px;
    font-size: clamp(28px, 8.8vw, 36px);
    line-height: 1;
  }

  .case-topline {
    align-items: start;
  }

  .case-topline strong {
    white-space: normal;
    text-align: right;
  }

  .work-row {
    min-height: auto;
    padding: 16px 0;
    border-left: 0;
    border-right: 0;
  }

  .work-row span {
    font-size: clamp(24px, 8vw, 32px);
    line-height: 1;
    letter-spacing: -0.042em;
  }

  .work-row small {
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
  }

  .capability {
    min-height: auto;
  }

  .capability h3 {
    letter-spacing: -0.045em;
  }

  .experience-list {
    gap: 8px;
    background: transparent;
    border: 0;
  }

  .experience-list article {
    gap: 5px;
    padding: 14px 16px;
  }

  .experience-list strong {
    font-size: 18px;
  }

  .experience-list span {
    line-height: 1.3;
  }

  .contact {
    margin-top: 58px;
    align-items: start;
  }

  .contact-actions {
    width: 100%;
  }

  .contact-actions .button {
    flex: 1 1 auto;
  }

  .page-flow {
    gap: 54px;
  }
}

@media (max-width: 430px) {
  .site-shell {
    width: min(1120px, calc(100% - 18px));
  }

  .topbar nav a,
  .language-switch button {
    font-size: 11px;
    padding-inline: 9px;
  }

  .hero-main,
  .workflow-card,
  .case-file,
  .capability,
  .contact {
    padding: 15px;
  }

  .hero h1 {
    font-size: clamp(39px, 14.1vw, 50px);
    letter-spacing: -0.058em;
  }

  .hero-line {
    font-size: 16px;
  }

  .workflow-header h2,
  .section-header h2,
  .contact h2 {
    font-size: clamp(32px, 12vw, 42px);
    letter-spacing: -0.048em;
  }

  .case-file h3,
  .work-row span,
  .capability h3 {
    letter-spacing: -0.035em;
  }

  .case-topline {
    display: grid;
    gap: 8px;
  }

  .case-topline strong {
    justify-self: start;
    text-align: left;
  }

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

  .contact-actions .button {
    width: 100%;
  }
}

