@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;
}


: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-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.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: var(--black);
  border-bottom: 1px solid var(--gray);
}

.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: var(--black);
  border: 1px solid var(--gray);
}

.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(52px, 8vw, 96px);
  line-height: 0.9;
  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;
}

.section-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);
}

.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 {
  min-height: 330vh;
  padding: 42px 0 10vh;
}

.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-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(500px, calc(100vh - 128px), 620px);
}

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

.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 620ms cubic-bezier(0.22, 1, 0.36, 1),
    stroke-dashoffset 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

.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.3 + (var(--node-progress, 0) * 0.7));
  transform: translate(-50%, calc(18px - (var(--node-progress, 0) * 18px))) scale(calc(0.96 + (var(--node-progress, 0) * 0.04)));
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 620ms cubic-bezier(0.22, 1, 0.36, 1),
    background 620ms cubic-bezier(0.22, 1, 0.36, 1),
    color 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-node::before,
.workflow-node::after {
  content: '';
  position: absolute;
  top: 66px;
  width: 10px;
  height: 10px;
  border: 2px solid #4d4d4d;
  border-radius: 999px;
  background: var(--black);
}

.workflow-node::before {
  left: -7px;
}

.workflow-node::after {
  right: -7px;
}

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

.workflow-node.is-active::before,
.workflow-node.is-active::after {
  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) {
    grid-column: 1;
  }

  .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;
  }

  .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 {
    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;
  }

  .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%;
  }
}

