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

html {
  overflow-x: clip;
}

html.nav-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #111111;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.logo {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #111111;
  text-decoration: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: -8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: #111111;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.site-header.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  text-decoration: none;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  background: #2b2b2e;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.contact-btn:hover {
  background: #3a3a3d;
}

.contact-btn__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: #46464a;
  font-size: 11px;
}

.contact-btn--light {
  color: #111111;
  background: #ffffff;
  border: 1px solid #e2e2e2;
}

.contact-btn--light:hover {
  background: #f7f7f7;
}

.contact-btn__badge--light {
  background: #f0f0f0;
  color: #111111;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 88px;
  padding-bottom: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-content: safe center;
  gap: clamp(16px, 3vh, 28px);
}

.hero-slogan {
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  text-align: center;
  color: #111111;
  max-width: 640px;
  padding: 0 24px;
}

.tw-word {
  display: inline-block;
  white-space: nowrap;
}

.tw-letter {
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.45s ease, filter 0.45s ease;
}

.tw-letter.is-visible {
  opacity: 1;
  filter: blur(0);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.orbit-stage {
  position: relative;
  width: min(420px, 78vw, calc(100dvh - 300px));
  height: min(420px, 78vw, calc(100dvh - 300px));
}

.orbit-slot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96px;
  height: 96px;
  margin: -48px 0 0 -48px;
  will-change: transform;
}

.orbit-emerge {
  width: 100%;
  height: 100%;
}

.orbit-trail {
  width: 100%;
  height: 100%;
  opacity: 0.06;
  filter: blur(24px);
  will-change: opacity, filter;
}

.orbit-avatar {
  display: block;
  width: 100%;
  height: 100%;
  will-change: transform, filter;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
}

.partners {
  width: 100%;
  padding: 48px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.partners-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b0b0b0;
}

.partners-row {
  width: 100%;
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  justify-items: stretch;
  row-gap: 14px;
  column-gap: 14px;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 24px 20px;
  background: #f5f5f5;
  border-radius: 10px;
}

.partner-logo {
  height: 38px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.15) brightness(0.9);
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo--lg {
  height: 52px;
  max-width: 220px;
}

.partner-logo--solid {
  filter: grayscale(1) brightness(0) invert(0.45);
  opacity: 0.9;
}

.partner-logo--solid:hover {
  filter: grayscale(1) brightness(0) invert(0.3);
  opacity: 1;
}

.products {
  width: 100%;
  padding: 40px 48px 120px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.product-visual {
  min-width: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f5f5f5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.product-visual--fit {
  aspect-ratio: auto;
}

.lead-demo {
  position: relative;
  width: 100%;
  height: 340px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 6px 16px -10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.lead-demo-chat {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  overflow-y: hidden;
  scroll-behavior: smooth;
}

.lead-demo-user-msg {
  align-self: flex-end;
  max-width: 85%;
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.5;
  color: #111111;
  background: #f5f5f5;
  padding: 7px 10px;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.lead-demo-user-msg.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lead-demo-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 2px 0;
}

.lead-demo-steps-trigger {
  font-size: 10.5px;
  font-weight: 600;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #9a9a9a 30%, #e2e2e2 50%, #9a9a9a 70%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: lead-demo-shimmer 2s linear infinite;
}

@keyframes lead-demo-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lead-demo-steps-trigger {
    animation: none;
    background: none;
    -webkit-text-fill-color: currentColor;
    color: #9a9a9a;
  }
}

.lead-demo-steps-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 10px;
  margin-left: 2px;
}

.lead-demo-steps-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0%;
  background: #e6e6e6;
}

@media (prefers-reduced-motion: reduce) {
  .lead-demo-steps-line {
    transition: none !important;
    height: 100%;
  }
}

.lead-demo-step {
  font-size: 9.5px;
  font-weight: 400;
  color: #c7c7c7;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

.lead-demo-step.is-visible {
  opacity: 1;
  transform: translateY(0);
  color: #8a8a8a;
}

.lead-demo-ai-msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lead-demo-ai-line {
  position: relative;
  font-size: 10.5px;
  line-height: 1.55;
  color: #6b6b6b;
}

.lead-demo-word {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.lead-demo-word.is-visible {
  opacity: 1;
}

.lead-demo-table-mini {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
  font-size: 10.5px;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-demo-table-mini.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lead-demo-table-mini th,
.lead-demo-table-mini td {
  border: 1px solid #e2e2e2;
  padding: 5px 6px;
  text-align: center;
  font-weight: 400;
  color: #6b6b6b;
}

.lead-demo-table-mini th {
  font-weight: 700;
  color: #111111;
  background: #fafafa;
}

.lead-demo-table-mini td:first-child,
.lead-demo-table-mini th:first-child {
  font-weight: 500;
  color: #4a4a4a;
}

@media (prefers-reduced-motion: reduce) {
  .lead-demo-table-mini {
    transition: none;
  }
}

.lead-demo-ai-line strong {
  font-weight: 700;
  color: #111111;
}

.lead-demo-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.lead-demo-sources.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lead-demo-source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px 3px 3px;
  font-size: 9px;
  font-weight: 500;
  color: #7a7a7a;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 20px;
}

.lead-demo-source-avatar {
  display: block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  object-fit: cover;
}

.lead-demo-prompt-wrap {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding: 16px 14px 14px;
}

.lead-demo-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 50%;
  min-height: 34px;
  padding: 6px 6px 6px 16px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 400;
  text-align: left;
  color: #8a8a8a;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 999px;
  cursor: default;
  transition: background 0.15s ease, transform 0.15s ease;
}

.lead-demo-prompt-placeholder {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lead-demo-prompt-send {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #ffffff;
  background: radial-gradient(circle at 50% 28%, #4a4a4e 0%, #222224 55%, #101012 100%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.25),
    inset 0 -2px 3px rgba(0, 0, 0, 0.6),
    0 1px 2px rgba(0, 0, 0, 0.25);
}

.lead-demo-prompt.is-pressed {
  background: #ececec;
  transform: scale(0.98);
}

.lead-demo-screen {
  position: absolute;
  inset: 0;
  display: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.lead-demo-screen.is-shown {
  display: flex;
  flex-direction: column;
}

.lead-demo-screen.is-active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .lead-demo-user-msg,
  .lead-demo-step,
  .lead-demo-word,
  .lead-demo-sources,
  .lead-demo-prompt,
  .lead-demo-screen {
    transition: none;
  }
}

.lead-demo-table {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.lead-demo-table::after {
  content: "";
  position: absolute;
  left: calc(50% + 24px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: #ececec;
  pointer-events: none;
}

.lead-demo-table::before {
  content: "";
  position: absolute;
  left: 52px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #ececec;
  pointer-events: none;
  z-index: 1;
}

.lead-demo-col-avatar {
  flex: 0 0 28px;
}

.lead-demo-avatar-cell {
  flex: 0 0 28px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.lead-demo-row.is-visible .lead-demo-avatar-cell {
  opacity: 1;
  transform: translateY(0);
}

.lead-demo-avatar-img {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.lead-demo-row {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px;
  border-top: 1px solid #ececec;
}

.lead-demo-row:first-child {
  border-top: none;
}

.lead-demo-row--head {
  flex: 0 0 auto;
  align-items: center;
  padding: 14px;
  background: #fafafa;
}

.lead-demo-col-label,
.lead-demo-col-input {
  flex: 1;
  font-size: 9.5px;
  font-weight: 600;
  color: #9a9a9a;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.lead-demo-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.lead-demo-input {
  flex: 1;
  min-width: 0;
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1.5;
  color: #aeaeae;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.lead-demo-row.is-visible .lead-demo-main,
.lead-demo-row.is-visible .lead-demo-input {
  opacity: 1;
  transform: translateY(0);
}

.lead-demo-pill {
  display: inline-block;
  padding: 2px 7px;
  font-size: 9px;
  font-weight: 500;
  color: #9a9a9a;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
}

.lead-demo-pill--done {
  color: #ffffff;
  background: #1c1c1e;
  border-color: #1c1c1e;
}

.lead-demo-desc {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  color: #111111;
}

@media (prefers-reduced-motion: reduce) {
  .lead-demo-avatar-cell,
  .lead-demo-main,
  .lead-demo-input {
    transition: none;
  }
}

@media (max-width: 640px) {
  .lead-demo-row {
    flex-wrap: wrap;
  }

  /* Rows wrap on mobile, so the fixed vertical guide lines and the second
     header column no longer align with anything — hide them. */
  .lead-demo-table::before,
  .lead-demo-table::after {
    display: none;
  }

  .lead-demo-col-input {
    display: none;
  }

  .lead-demo-input {
    flex-basis: 100%;
    margin-left: 48px;
    -webkit-line-clamp: 3;
  }

  .lead-demo-prompt {
    width: 85%;
  }

  .case-approval-title {
    font-size: 11px;
  }

  .case-approval-body {
    font-size: 9.5px;
  }

  .case-approval-detail {
    font-size: 9px;
  }

  .case-approval-badge,
  .case-approval-btn {
    font-size: 9px;
  }
}

.case-dash {
  width: 100%;
  height: 340px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 6px 16px -10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.case-approval {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 11px 16px;
  border-top: 1px solid #f0f0f0;
  background: #ffffff;
  overflow: hidden;
  transition: flex 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-approval:first-child {
  border-top: none;
}

.case-approval[data-state="active"] {
  flex: 1.7;
}

.case-dash:has(.case-approval[data-state="active"]) .case-approval:not([data-state="active"]) .case-approval-body {
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.case-approval-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.case-approval-badge {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  height: 22px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #9a9a9a;
  border: 1px solid #d8d8d8;
  padding: 0 9px;
  border-radius: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.case-approval[data-status="approved"] .case-approval-badge {
  color: #1a9e5c;
  border-color: #1a9e5c;
}

.case-approval-actions {
  box-sizing: border-box;
  display: none;
  align-items: stretch;
  height: 22px;
  flex-shrink: 0;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  overflow: hidden;
}

.case-approval[data-state="active"] .case-approval-actions {
  display: flex;
}

.case-approval-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  font-family: inherit;
  font-size: 10px;
  font-weight: 500;
  color: #6b6b6b;
  background: #ffffff;
  border: none;
  border-left: 1px solid #d8d8d8;
  cursor: pointer;
}

.case-approval-btn:first-child {
  border-left: none;
}

.case-approval-btn.is-pressed {
  background: #f0f0f0;
}

.case-approval-title {
  font-size: 12.5px;
  font-weight: 600;
  color: #111111;
}

.case-approval-body {
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1.6;
  color: #8a8a8a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-approval-detail {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  color: #9a9a9a;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.15s ease, margin-top 0.5s ease;
}

.case-approval-detail .lead-demo-word {
  transition: opacity 0.25s ease;
}

.case-approval[data-state="active"] .case-approval-detail {
  max-height: 120px;
  opacity: 1;
  margin-top: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .case-approval,
  .case-approval-badge,
  .case-approval-detail {
    transition: none;
  }
}

.product-text {
  min-width: 0;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.product-icon {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  filter: hue-rotate(0deg) saturate(1.15);
  animation: product-icon-flow 8s ease-in-out infinite;
}

@keyframes product-icon-flow {
  0% {
    filter: hue-rotate(-12deg) saturate(1.1);
  }
  50% {
    filter: hue-rotate(14deg) saturate(1.3);
  }
  100% {
    filter: hue-rotate(-12deg) saturate(1.1);
  }
}

.product-text h3 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #111111;
  margin-bottom: 14px;
}

.product-text p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: #9a9a9a;
  max-width: 560px;
}

.product-text-desc--dense {
  font-size: 15px;
  max-width: 600px;
}

.product-text .contact-btn {
  margin-top: 28px;
}

.blog {
  width: 100%;
  padding: 40px 0 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-header {
  padding: 0 48px;
  text-align: center;
}

.blog-chip {
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9a9a9a;
  background: #f0f0f0;
  border-radius: 2.5px;
}

.blog-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #111111;
}

.blog-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 48px 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 60px,
    #000 calc(100% - 60px),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 60px,
    #000 calc(100% - 60px),
    transparent 100%
  );
}

.blog-scroll::-webkit-scrollbar {
  display: none;
}

.blog-scroll-empty {
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  color: #9a9a9a;
  padding: 24px 0;
}

.blog-card {
  flex: 0 0 auto;
  width: calc((100% - 24px) / 2);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  background: #f5f5f5;
  border-radius: 12px;
  margin-bottom: 16px;
}

.blog-card-date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b0b0b0;
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  line-height: 1.4;
  margin-bottom: 8px;
}

.blog-card-excerpt {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  color: #9a9a9a;
}

.site-footer {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  padding: 64px 0 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-top {
  padding: 0 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 72px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b0b0b0;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  font-weight: 400;
  color: #6a6a6a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #111111;
}

.footer-copyright {
  font-size: 12px;
  font-weight: 400;
  color: #b0b0b0;
}

.footer-glow-sentinel {
  width: 100%;
  height: 1px;
}

.footer-glow {
  width: 100%;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.footer-glow svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 640px) {
  .site-header {
    padding: 20px 24px;
    /* backdrop-filter makes the header the containing block for position:
       fixed children, which would clip the full-screen menu to the header
       box. Drop it on mobile so the overlay can fill the viewport. */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.9);
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 30;
  }

  .logo {
    position: relative;
    z-index: 30;
    transition: color 0.3s ease;
  }

  .site-header.is-open .logo {
    color: #ffffff;
  }

  .site-header.is-open .nav-toggle-bar {
    background: #ffffff;
  }

  .header-right {
    position: fixed;
    inset: 0;
    z-index: 20;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 96px 24px 44px;
    background: #14141a;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .site-header.is-open .header-right {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav-links a,
  .header-right .contact-btn {
    display: block;
    width: 100%;
    padding: 22px 4px;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-transform: none;
    text-align: left;
    color: #ffffff;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .header-right .contact-btn {
    gap: 0;
    border-radius: 0;
  }

  .header-right .contact-btn:hover {
    background: none;
  }

  .header-right .contact-btn__badge {
    display: none;
  }

  .partners-row {
    column-gap: 12px;
    row-gap: 12px;
  }

  .partner-card {
    min-height: 84px;
    padding: 14px 10px;
  }

  .partner-logo,
  .partner-logo--lg {
    height: 26px;
    max-width: 100%;
  }

  .products {
    gap: 56px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .product-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-meta {
    display: none;
  }

  .product-text h3 {
    font-size: 22px;
  }

  .product-text p {
    max-width: none;
    font-size: 11px;
  }

  .product-text-desc--dense {
    font-size: 10.5px;
  }

  .blog-header {
    padding: 0 24px;
  }

  .blog-scroll {
    padding: 0 24px 8px;
    gap: 16px;
    mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 32px,
      #000 calc(100% - 32px),
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 32px,
      #000 calc(100% - 32px),
      transparent 100%
    );
  }

  .blog-card {
    width: calc((100% - 16px) / 2);
  }

  .site-footer {
    padding: 48px 0 0;
    gap: 32px;
  }

  .footer-top {
    padding: 0 24px;
  }

  .footer-links {
    gap: 40px;
  }
}
