@font-face {
  font-family: "TWK Lausanne Pan";
  src: url("TWKLausannePan-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "TWK Lausanne Pan";
  src: url("TWKLausannePan-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --bg: #fafafa;
  --surface: #f2f2f2;
  --surface-strong: #ececec;
  --text: #171717;
  --muted: #5c5c5c;
  --muted-soft: #5c5c5c;
  --border: rgba(17, 17, 17, 0.06);
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.06);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --container: min(100% - 640px, 872px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "TWK Lausanne Pan", sans-serif;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  font-synthesis: none;
}

a,
button {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  background: none;
  padding: 0;
}

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

.site-shell {
  min-height: 100vh;
  padding-top: 72px;
  transition: transform 0.28s ease;
}

body.ask-ai-open .site-shell {
  transform: translateX(-180px);
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 36px 0 24px;
  background: rgba(250, 250, 250, 0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.topnav a,
.ask-ai-link {
  text-decoration: none;
  color: var(--text);
  transition: color 0.18s ease, opacity 0.18s ease, text-decoration-color 0.18s ease;
}

.topnav a {
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.nav-description {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 16px;
  margin-right: -6px;
  flex: 0 0 auto;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.18s ease, filter 0.18s ease;
}

.brand img {
  width: 22px;
  height: 16px;
}

.brand-name {
  display: none;
}

.mobile-menu-toggle {
  display: none;
}

.ask-ai-link {
  margin-left: auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.ask-ai-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.ask-ai-trigger-text {
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.ask-ai-trigger:hover .ask-ai-trigger-text,
.ask-ai-trigger:focus-visible .ask-ai-trigger-text {
  color: #141414;
  text-decoration-color: #2f80ff;
}

.ask-ai-mobile-trigger {
  display: none;
}

.ask-ai-trigger-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  transform-origin: center;
  transition: transform 0.18s ease;
}

.ask-ai-trigger-separator,
.ask-ai-trigger-avatar {
  display: none;
}

.ask-ai-trigger:hover .ask-ai-trigger-icon,
.ask-ai-trigger:focus-visible .ask-ai-trigger-icon {
  transform: rotate(15deg);
}

.hero {
  width: var(--container);
  margin: 0 auto;
  padding: 120px 0 120px;
}

.hero-copy {
  position: relative;
  width: min(100%, 514px);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero-text {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero-text:last-of-type {
  margin-bottom: 0;
}

.hero-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 38px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background-color 0.18s ease, color 0.18s ease;
  cursor: pointer;
}

.pill-dark {
  background: #171717;
  color: #fafafa;
}

.contact-trigger {
  position: relative;
  --contact-expanded-height: 208px;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 38px;
  padding: 0;
  border-radius: 19px;
  color: #fafafa;
  line-height: 1;
  flex: 0 0 auto;
  background: transparent;
  transition: color 0.18s ease;
}

.contact-trigger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 116px;
  height: 38px;
  border-radius: 19px;
  background: #171717;
  transition:
    width 0.38s cubic-bezier(0.34, 1.12, 0.64, 1),
    height 0.38s cubic-bezier(0.34, 1.12, 0.64, 1),
    border-radius 0.38s cubic-bezier(0.34, 1.12, 0.64, 1);
}

.contact-trigger.is-open {
  color: #fafafa;
}

.contact-trigger.is-open::before {
  width: 300px;
  height: var(--contact-expanded-height);
  border-radius: 31px;
}

.contact-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 1;
  filter: blur(0);
  transition:
    opacity 0.2s cubic-bezier(0, 0, 0.2, 1),
    filter 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.contact-label-icon {
  display: block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.contact-trigger.is-open .contact-label {
  opacity: 0;
  filter: blur(6px);
}

.contact-island {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  min-width: 300px;
  height: auto;
  padding: 24px;
  color: #fafafa;
  opacity: 0;
  filter: blur(6px);
  pointer-events: none;
  transition:
    opacity 0.2s cubic-bezier(0, 0, 0.2, 1),
    filter 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.contact-island.is-open {
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
  transition-delay: 0.1s;
}

.contact-island-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 10px;
  opacity: 0;
  transition: opacity 0.08s ease;
}

.contact-island.is-open .contact-island-header {
  opacity: 1;
  transition-delay: 0.12s;
}

.contact-island-header h2 {
  margin: 0;
  color: #8b8b8b;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}

.contact-island-close {
  width: 20px;
  height: 20px;
  color: #8b8b8b;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.contact-island-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.08s ease;
}

.contact-island.is-open .contact-island-list {
  opacity: 1;
  transition-delay: 0.14s;
}

.contact-island-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  margin: 0 -8px;
  padding: 7px 8px;
  border-radius: 4px;
  transition: background-color 0.16s ease;
}

.contact-island-item:hover,
.contact-island-item:focus-within {
  background: #2c2c2c;
}

.contact-island-item > span {
  color: #8b8b8b;
  font-size: 12px;
  line-height: 1.2;
}

.contact-island-value {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fafafa;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
}

.contact-island-value strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

.contact-item-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #a2a2a2;
  font-size: 16px;
  line-height: 1;
  flex: 0 0 16px;
}

.contact-item-icon img {
  display: block;
  width: 16px;
  height: 16px;
}

.contact-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 70;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: #171717;
  color: #fafafa;
  font-size: 14px;
  line-height: 1.2;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.16);
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.contact-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.pill-light {
  background: #f2f2f2;
  color: #171717;
}

.pill-dark:hover {
  background: #2f2f2f;
}

.pill-dark.contact-trigger,
.pill-dark.contact-trigger:hover,
.pill-dark.contact-trigger.is-open:hover {
  background: transparent;
}

.contact-trigger:hover::before {
  background: #2f2f2f;
}

.contact-trigger.is-open:hover::before {
  background: #171717;
}

.pill-light:hover {
  background: #e7e7e7;
  color: #171717;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: #141414;
  text-decoration-color: #2f80ff;
}

.ask-ai-link:hover {
  color: var(--muted);
}

.brand:hover {
  opacity: 0.62;
  filter: grayscale(1);
}

.ask-ai-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.01);
  z-index: 40;
}

.ask-ai-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: calc(100vw - 24px);
  height: 100vh;
  background: var(--bg);
  border-left: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: -18px 0 48px rgba(17, 17, 17, 0.08);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 50;
  display: flex;
  flex-direction: column;
}

body.ask-ai-open .ask-ai-panel {
  transform: translateX(0);
}

.ask-ai-panel-header {
  height: 74px;
  padding: 0 18px 0 22px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ask-ai-panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1f1f1f;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}

.ask-ai-panel-kicker-icon {
  color: #2f80ff;
  font-size: 15px;
}

.ask-ai-panel-info {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #bcbcbc;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  flex: 0 0 18px;
  cursor: help;
}

.ask-ai-panel-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  width: 248px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #171717;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
  text-align: left;
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 20;
}

.ask-ai-panel-info:hover .ask-ai-panel-tooltip,
.ask-ai-panel-info:focus-visible .ask-ai-panel-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.ask-ai-close {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #636363;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 20px;
}

.ask-ai-panel-body {
  flex: 1 1 auto;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.ask-ai-starter {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ask-ai-panel-body h2 {
  margin: 0;
  color: #161616;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.ask-ai-suggestions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ask-ai-suggestions[hidden],
.ask-ai-suggestion-drawer[hidden] {
  display: none !important;
}

.ask-ai-chat {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0 0 28px;
  flex: 0 0 auto;
}

.ask-ai-message {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ask-ai-message-bubble {
  max-width: 100%;
  border-radius: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.ask-ai-message-user {
  align-items: flex-end;
}

.ask-ai-message-user .ask-ai-message-bubble {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  max-width: min(100%, 220px);
  padding: 10px 20px;
  border-radius: 20px;
  background: #171717;
  color: #fafafa;
  font-size: 14px;
  line-height: 1.35;
}

.ask-ai-message-assistant .ask-ai-message-bubble {
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.ask-ai-message-assistant .ask-ai-answer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  white-space: normal;
}

.ask-ai-answer p,
.ask-ai-answer ul,
.ask-ai-answer ol {
  margin: 0;
}

.ask-ai-answer ul,
.ask-ai-answer ol {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.ask-ai-answer a {
  color: #006fd7;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.ask-ai-answer a:hover {
  color: #005cad;
}

.ask-ai-message-loading .ask-ai-message-bubble {
  color: #7a7a7a;
}

.ask-ai-loader {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
}

.ask-ai-loader-mark {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background:
    radial-gradient(circle at 3px 3px, #4c8cff 1.4px, transparent 1.5px),
    radial-gradient(circle at 8px 3px, #4c8cff 1.4px, transparent 1.5px),
    radial-gradient(circle at 13px 3px, #4c8cff 1.4px, transparent 1.5px),
    radial-gradient(circle at 3px 8px, #4c8cff 1.4px, transparent 1.5px),
    radial-gradient(circle at 8px 8px, #4c8cff 1.4px, transparent 1.5px),
    radial-gradient(circle at 13px 8px, #4c8cff 1.4px, transparent 1.5px),
    radial-gradient(circle at 3px 13px, #4c8cff 1.4px, transparent 1.5px),
    radial-gradient(circle at 8px 13px, #4c8cff 1.4px, transparent 1.5px),
    radial-gradient(circle at 13px 13px, #4c8cff 1.4px, transparent 1.5px);
  animation: ask-ai-loader-pulse 1s ease-in-out infinite alternate;
}

@keyframes ask-ai-loader-pulse {
  0% {
    opacity: 0.55;
    transform: scale(0.96);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.ask-ai-suggestion {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #646464;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.ask-ai-suggestion span {
  text-decoration-color: transparent;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.ask-ai-suggestion:hover span,
.ask-ai-suggestion:focus-visible span {
  color: #242424;
  text-decoration-color: #2f80ff;
}

.ask-ai-suggestion::before {
  content: "↳";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #2f80ff;
  font-size: 16px;
  line-height: 1;
}

.ask-ai-panel-footer {
  padding: 20px 16px 16px;
}

.ask-ai-panel.is-drawer-open .ask-ai-panel-footer {
  padding-top: 0;
}

.ask-ai-suggestion-drawer {
  margin: 0 0 32px;
  padding: 22px 24px 26px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
}

.ask-ai-suggestion-drawer p {
  margin: 0 0 20px;
  color: #9a9a9a;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.ask-ai-drawer-suggestion {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  margin: 0 -12px;
  padding: 10px 12px;
  border-radius: 14px;
  color: #171717;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.18s ease;
}

.ask-ai-drawer-suggestion + .ask-ai-drawer-suggestion {
  margin-top: 4px;
}

.ask-ai-drawer-suggestion:hover,
.ask-ai-drawer-suggestion:focus-visible {
  background: #f1f1f1;
}

.ask-ai-drawer-suggestion:not(.ask-ai-drawer-case-study)::before {
  content: "↳";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #2f80ff;
  font-size: 16px;
  line-height: 1;
  flex: 0 0 16px;
}

.ask-ai-drawer-case-study {
  gap: 0;
}

.ask-ai-input-shell {
  min-height: 114px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
  border: 1px solid rgba(17, 17, 17, 0.06);
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.ask-ai-input-shell.is-active {
  border-color: #0071de;
  box-shadow:
    0 0 0 1px #0071de,
    0 12px 32px rgba(17, 17, 17, 0.08);
}

.ask-ai-input-shell input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0;
  background: transparent;
  color: #171717;
  font: 400 16px/1.4 "TWK Lausanne Pan", sans-serif;
}

.ask-ai-input-shell input::placeholder {
  color: #949494;
}

.ask-ai-input-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ask-ai-mini-button,
.ask-ai-send {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ask-ai-mini-button {
  background: #f2f2f2;
  color: #808080;
  font-size: 14px;
}

.ask-ai-suggestions-toggle.is-active {
  background: #eaf3ff;
}

.ask-ai-mini-button img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.ask-ai-send {
  margin-left: auto;
  background: #dcecff;
  color: #5d8fff;
  font-size: 18px;
  transition: background-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.ask-ai-send.is-active {
  background: #0071de;
  color: #ffffff;
}

.case-study-rail {
  position: fixed;
  left: max(24px, calc((100vw - 872px) / 2 - 252px));
  top: 50%;
  z-index: 40;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-24px, -50%);
  transition:
    opacity 0.5s ease-out,
    visibility 0.5s ease-out,
    transform 0.5s ease-out;
}

.case-study-rail.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

.case-study-rail-item {
  width: auto;
  height: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(73, 73, 73, 0.7);
  text-align: left;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  transition: color 0.3s ease-out;
}

.case-study-rail-item::before {
  content: "";
  position: absolute;
  inset: -8px 0;
}

.case-study-rail-label {
  min-width: 0;
  display: block;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.3s ease-out, text-decoration-color 0.3s ease-out;
}

.case-study-rail-mark {
  width: 16px;
  height: 1px;
  flex: 0 0 auto;
  background: rgba(0, 0, 0, 0.25);
  transition: width 0.3s ease-out, background-color 0.3s ease-out;
}

.case-study-rail-tick {
  width: 10px;
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
}

.case-study-rail-item.is-active {
  color: #141414;
}

.case-study-rail-item:hover {
  color: #494949;
}

.case-study-rail-item:hover .case-study-rail-label,
.case-study-rail-item:focus-visible .case-study-rail-label {
  color: #141414;
  text-decoration-color: #2f80ff;
}

.case-study-rail-item.is-active .case-study-rail-mark {
  width: 28px;
  background: #141414;
}

.case-study-rail-item:not(.is-active):hover .case-study-rail-mark {
  width: 24px;
  background: rgba(0, 0, 0, 0.4);
}

body.ask-ai-open .case-study-rail,
body.case-study-open .case-study-rail {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.feature-block {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 72px;
  scroll-margin-top: 90px;
}

.feature-block-clickable {
  cursor: pointer;
}

.feature-block + .feature-block {
  margin-top: 44px;
}

.feature-card {
  width: 872px;
  max-width: 100%;
}

.feature-media {
  width: 100%;
  aspect-ratio: 2616 / 1467;
  height: auto;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.12)),
    linear-gradient(135deg, #f5f5f5 0%, #ededed 60%, #f3f3f3 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-meta {
  width: 872px;
  max-width: 100%;
  padding-top: 18px;
}

.feature-meta h2 {
  margin: 0;
  font-family: "TWK Lausanne Pan", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.feature-block-clickable:hover .feature-meta h2,
.feature-block-clickable:focus-visible .feature-meta h2 {
  color: #141414;
  text-decoration-color: #2f80ff;
}

#feature-title,
#feature-title-2,
#feature-title-3,
#feature-title-4,
#feature-title-5 {
  font-family: "TWK Lausanne Pan", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  word-spacing: normal;
  letter-spacing: -0.01em;
}

.feature-meta p {
  margin: 4px 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.feature-meta span {
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.content-section {
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0 56px;
  border-top: 0;
}

.content-section-last {
  padding-bottom: 96px;
}

.site-footer {
  width: 100%;
  background: #f0f0f0;
}

.site-footer-inner {
  width: var(--container);
  min-height: 88px;
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-footer p a {
  color: #0071de;
}

.site-footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-footer-links a:hover,
.site-footer p a:hover {
  color: #777777;
}

.content-copy {
  width: min(100%, 560px);
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--muted-soft);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.content-copy h3 {
  margin: 0 0 12px;
  font-family: "TWK Lausanne Pan", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.content-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.about-section {
  padding-top: 136px;
  padding-bottom: 136px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 112px;
  align-items: start;
}

.about-main {
  min-width: 0;
}

.about-heading {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.about-copy {
  width: 100%;
}

.about-copy p {
  margin: 0 0 28px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.about-copy .about-contact {
  margin-top: 32px;
  margin-bottom: 0;
}

.about-contact a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.18s ease;
}

.about-contact a:hover {
  color: #777777;
}

.about-signature {
  margin: 44px 0 0;
  width: 168px;
}

.about-signature img {
  width: 100%;
  height: auto;
  display: block;
}

.about-expertise {
  min-width: 0;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expertise-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f0f0f0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.expertise-pill svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-study-overlay {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}

.case-study-overlay.is-open {
  display: block;
}

body.case-study-open {
  overflow-x: hidden;
  overflow-y: auto;
}

body.case-study-open .site-shell {
  display: none;
}

body.case-study-open .ask-ai-mobile-trigger {
  display: none;
}

.case-study-action-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 90;
  padding: 32px 0 24px;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.case-study-action-bar[hidden] {
  display: none;
}

.case-study-action-bar-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.case-study-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 35px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: #f0f0f0;
  color: var(--text);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.18s ease;
}

.case-study-return:hover {
  background: #e7e7e7;
}

.case-study-return img {
  display: block;
  width: 16px;
  height: 16px;
}

.case-study-contact-trigger {
  width: 102px;
  height: 35px;
  border-radius: 18px;
  font-size: 16px;
}

.case-study-contact-trigger::before {
  right: 0;
  left: auto;
  width: 102px;
  height: 35px;
  border-radius: 18px;
}

.case-study-contact-trigger .contact-island {
  right: 0;
  left: auto;
}

.case-study-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 136px 0 120px;
}

.case-study-intro {
  width: min(100%, 680px);
  margin-bottom: 72px;
}

.case-study-kicker {
  margin: 0 0 12px;
  color: var(--muted-soft);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-study-intro h1,
.case-study-section h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.065em;
}

.case-study-intro > p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.case-study-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 40px 0 0;
}

.case-study-meta div {
  padding-top: 14px;
  border-top: 1px solid #e8e8e8;
}

.case-study-meta dt {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.case-study-meta dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}

.case-study-hero-media {
  display: block;
  width: 100%;
  margin-bottom: 112px;
  border-radius: 22px;
  overflow: hidden;
  background: #f1f1f1;
}

.case-study-hero-media img {
  width: 100%;
  height: auto;
}

.case-study-section {
  padding: 0 0 112px;
}

.case-study-section h2 {
  width: min(100%, 760px);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

.case-study-card-grid,
.case-study-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.case-study-card,
.case-study-stat-grid div {
  min-height: 156px;
  padding: 24px;
  border-radius: 18px;
  background: #f4f4f4;
}

.case-study-card span {
  display: block;
  margin-bottom: 24px;
  color: #9a9a9a;
  font-size: 12px;
  line-height: 1;
}

.case-study-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.case-study-card p,
.case-study-reflection p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.case-study-stat-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 36px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.case-study-stat-grid span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.case-study-list {
  width: min(100%, 680px);
  margin: 32px 0 0;
  padding: 0;
  list-style-position: inside;
}

.case-study-list li {
  padding: 18px 0;
  border-bottom: 1px solid #ececec;
  color: #333333;
  font-size: 16px;
  line-height: 1.5;
}

.case-study-reflection {
  width: min(100%, 680px);
  padding-bottom: 0;
}

.case-study-reflection p {
  margin-top: 24px;
  font-size: 16px;
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 32px, 872px);
  }

  body.ask-ai-open {
    overflow: hidden;
  }

  .about-section {
    padding-top: 104px;
    padding-bottom: 112px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .about-main {
    width: min(100%, 640px);
  }

  .about-heading {
    margin-bottom: 36px;
  }

  .about-copy p {
    margin-bottom: 32px;
  }

  .about-copy .about-contact {
    margin-top: 40px;
  }

  .about-signature {
    margin-top: 52px;
  }

  .expertise-list {
    max-width: 620px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 8px;
  }

  body.ask-ai-open .site-shell {
    transform: none;
  }

  body.mobile-menu-open,
  body.mobile-menu-closing {
    overflow: hidden;
  }

  body.mobile-menu-open::before,
  body.mobile-menu-closing::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 64;
    background: rgba(17, 17, 17, 0.26);
    pointer-events: auto;
  }

  .topbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    padding: 28px 0 0;
  }

  .site-shell {
    padding-top: 63px;
  }

  .topbar-inner {
    position: relative;
    z-index: 96;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
  }

  .topnav {
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .topnav a {
    display: none;
  }

  .brand {
    position: relative;
    z-index: 96;
    width: auto;
    height: 24px;
    gap: 10px;
    margin-right: 0;
  }

  .brand-name {
    display: none;
    color: var(--text);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 96;
    display: inline-flex;
    width: 35px;
    height: 35px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border-radius: var(--radius-pill);
    color: var(--text);
    cursor: pointer;
  }

  body.mobile-menu-open .mobile-menu-toggle {
    position: relative;
    top: auto;
    right: auto;
    width: 35px;
    height: 35px;
    border: 0;
    background: transparent;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  body.mobile-menu-open .mobile-menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  body.mobile-menu-open .mobile-menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  body.mobile-menu-open .topnav a,
  body.mobile-menu-closing .topnav a {
    display: flex;
  }

  body.mobile-menu-open .topnav,
  body.mobile-menu-closing .topnav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 88;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 84px 16px 32px;
    border-radius: 0;
    background: var(--bg);
    box-shadow: none;
    transform: translateY(0);
  }

  body.mobile-menu-open .topnav {
    animation: mobile-menu-sheet-in 0.26s ease both;
  }

  body.mobile-menu-closing .topnav {
    animation: mobile-menu-sheet-out 0.26s ease both;
  }

  body.mobile-menu-open .topnav a,
  body.mobile-menu-closing .topnav a {
    align-items: center;
    justify-content: space-between;
    min-height: 32px;
    padding: 0;
    border-bottom: 0;
    border-radius: 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.02em;
  }

  body.mobile-menu-open .topnav a:hover,
  body.mobile-menu-closing .topnav a:hover {
    background: transparent;
    color: var(--text);
  }

  body.mobile-menu-open .nav-description,
  body.mobile-menu-closing .nav-description {
    display: inline;
    color: var(--muted);
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-align: right;
  }

  @keyframes mobile-menu-sheet-in {
    from {
      transform: translateY(-100%);
    }

    to {
      transform: translateY(0);
    }
  }

  @keyframes mobile-menu-sheet-out {
    from {
      transform: translateY(0);
    }

    to {
      transform: translateY(-100%);
    }
  }

  .ask-ai-desktop-trigger {
    display: none;
  }

  .ask-ai-mobile-trigger {
    display: inline-flex;
    position: fixed !important;
    right: auto;
    top: auto !important;
    bottom: calc(44px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    z-index: 120;
    width: auto;
    height: 35px;
    padding: 0 8px;
    border-radius: var(--radius-pill);
    background: #050505;
    color: #ffffff;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.02em;
    opacity: 1;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transform: translate(-50%, 0);
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.18s ease;
  }

  .ask-ai-trigger-separator {
    display: block;
    width: 1px;
    height: 18px;
    margin: 0 4px;
    background: rgba(255, 255, 255, 0.2);
    flex: 0 0 1px;
  }

  body.mobile-ask-ai-visible .ask-ai-mobile-trigger {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  body.ask-ai-open .ask-ai-mobile-trigger {
    opacity: 0;
    pointer-events: none;
  }

  body.ask-ai-open .ask-ai-backdrop {
    background: rgba(17, 17, 17, 0.22);
    backdrop-filter: blur(2px);
  }

  .ask-ai-trigger-icon {
    width: 15px;
    height: 15px;
    margin-right: 8px;
    filter: invert(1);
    flex: 0 0 15px;
  }

  .ask-ai-trigger > span:not(.ask-ai-trigger-avatar) {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .ask-ai-trigger-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #2d2d2d;
    color: #9d9d9d;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    flex: 0 0 25px;
  }

  .hero {
    padding: 140px 0 76px;
  }

  .hero-copy {
    width: min(100%, 640px);
  }

  .case-study-action-bar {
    padding: 20px 0 16px;
  }

  .case-study-contact-trigger .contact-label {
    inset: 0;
    width: 100%;
    height: 35px;
    display: grid;
    place-items: center;
    text-align: center;
    line-height: 1;
  }

  .case-study-shell {
    padding: 112px 0 88px;
  }

  .case-study-meta,
  .case-study-card-grid {
    grid-template-columns: 1fr;
  }

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

  .case-study-stat-grid div {
    min-height: 128px;
    padding: 18px;
    border-radius: 16px;
  }

  .case-study-stat-grid strong {
    margin-bottom: 10px;
    font-size: clamp(28px, 9vw, 40px);
    letter-spacing: -0.06em;
  }

  .case-study-stat-grid span {
    font-size: 13px;
    line-height: 1.35;
  }
}

@media (max-width: 1279px) {
  .case-study-rail {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 32px, 1040px);
  }

  .site-footer-inner {
    min-height: 0;
    padding: 28px 0 calc(104px + env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .site-footer-links {
    gap: 24px;
  }

  .about-section {
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .about-layout {
    gap: 72px;
  }

  .about-copy p {
    font-size: 16px;
    line-height: 1.5;
  }

  .about-signature {
    width: 148px;
  }

  .expertise-pill {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 14px;
  }

  .topnav,
  .ask-ai-link {
    font-size: 12px;
  }

  .ask-ai-panel {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    border: 0;
    border-radius: 0;
    box-shadow: -18px 0 54px rgba(17, 17, 17, 0.14);
    transform: translateX(100%);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 220;
    overflow: hidden;
  }

  .ask-ai-backdrop {
    z-index: 210;
  }

  .ask-ai-panel-header {
    padding-top: env(safe-area-inset-top, 0px);
    height: calc(74px + env(safe-area-inset-top, 0px));
  }

  .ask-ai-panel-footer {
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .ask-ai-panel-body h2 {
    font-size: 16px;
  }

  .ask-ai-suggestion {
    font-size: 14px;
  }

  .feature-media {
    aspect-ratio: auto;
  }

  .feature-media picture,
  .feature-media img {
    height: auto;
  }

  .feature-media img {
    display: block;
  }

  .case-study-stat-grid {
    gap: 10px;
  }

  .case-study-stat-grid div {
    min-height: 108px;
    padding: 14px;
    border-radius: 14px;
  }

  .case-study-stat-grid strong {
    margin-bottom: 8px;
    font-size: 30px;
  }

  .case-study-stat-grid span {
    font-size: 12px;
    line-height: 1.3;
  }

  .hero {
    padding: 88px 0 120px;
  }

  .eyebrow {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .hero-text {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
  }

  .pill {
    min-width: 0;
    height: 38px;
    padding: 8px 16px;
    font-size: 15px;
    line-height: 1;
  }

  .feature-meta h2 {
    font-size: 15px;
  }

  .feature-meta p,
  .feature-meta span {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: -0.01em;
  }

  .content-copy p:last-child {
    font-size: 15px;
  }
}
